@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
    --bg-core: #050000;
    --bg-panel: rgba(20, 0, 0, 0.85);
    --red-primary: #ff003c;
    --red-dark: #8a0020;
    --red-dim: rgba(255, 0, 60, 0.1);
    --text-main: #e0e0e0;
    --text-muted: #8a8a8a;
    --border-tech: 1px solid #330d0d;
}

* { box-sizing: border-box; }

body {
    margin: 0; padding: 0;
    background-color: var(--bg-core);
    color: var(--text-main);
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    font-size: 18px;
    overflow-x: hidden;
    background-image: 
        linear-gradient(rgba(255, 0, 60, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 60, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* SCANLINES */
body::before {
    content: " ";
    display: block;
    position: fixed; top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 9999;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    opacity: 0.6;
}

h1, h2, h3, h4 { font-family: 'Space Mono', monospace; text-transform: uppercase; color: #fff; margin: 0 0 20px 0; }
h1 { font-size: 3.5rem; text-shadow: 2px 2px 0px var(--red-primary); letter-spacing: -2px; line-height: 1.1; }
h2 { font-size: 2rem; border-left: 4px solid var(--red-primary); padding-left: 20px; margin-top: 40px; background: linear-gradient(90deg, rgba(255,0,60,0.1), transparent); }

a { color: var(--red-primary); text-decoration: none; transition: 0.3s; font-weight: 700; }
a:hover { color: #fff; text-shadow: 0 0 20px var(--red-primary); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 10; }

/* HEADER */
header {
    border-bottom: 1px solid var(--red-primary); background: rgba(5, 0, 0, 0.95);
    padding: 20px 0; position: sticky; top: 0; z-index: 1000;
    backdrop-filter: blur(5px); box-shadow: 0 5px 20px rgba(255, 0, 60, 0.1);
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Space Mono'; font-size: 1.8rem; font-weight: 700; letter-spacing: 2px; color: #fff; }
.logo span { color: var(--red-primary); }
.nav-links a { margin-left: 25px; font-size: 1rem; text-transform: uppercase; position: relative; color: #bbb; }
.nav-links a:hover, .nav-links a.active { color: var(--red-primary); text-shadow: 0 0 10px var(--red-primary); }

/* HERO */
.hero { padding: 100px 0; text-align: center; background: radial-gradient(circle at center, rgba(138, 0, 32, 0.2) 0%, transparent 70%); }
.terminal-status {
    font-family: 'Space Mono', monospace; color: var(--red-primary); background: rgba(20, 0, 0, 0.8);
    border: 1px solid var(--red-primary); display: inline-block; padding: 10px 20px;
    margin-bottom: 30px; font-size: 0.9rem; box-shadow: 0 0 15px var(--red-dim);
}
.blink { animation: blinker 1s linear infinite; }
@keyframes blinker { 50% { opacity: 0; } }

.cta-btn {
    display: inline-block; background: var(--red-primary); color: #000;
    font-family: 'Space Mono'; font-weight: 700; font-size: 1.4rem; padding: 20px 60px;
    margin-top: 30px; border: none;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    transition: 0.3s; box-shadow: 0 0 30px rgba(255, 0, 60, 0.4);
}
.cta-btn:hover { background: #fff; transform: scale(1.05); box-shadow: 0 0 50px var(--red-primary); color: #000; }

/* CARDS */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin: 60px 0; }
.card {
    background: var(--bg-panel); border: 1px solid #333; padding: 30px;
    transition: 0.4s; position: relative; overflow: hidden;
}
.card:hover { border-color: var(--red-primary); transform: translateY(-5px); box-shadow: 0 10px 40px rgba(255, 0, 60, 0.15); }
.card h3 { color: var(--red-primary); border-bottom: 1px solid #333; padding-bottom: 15px; margin-bottom: 15px; }

/* CONTENT */
.content-wrapper { background: rgba(10, 5, 5, 0.9); border-left: 4px solid var(--red-primary); padding: 50px; margin: 60px 0; box-shadow: 0 0 50px rgba(0,0,0,0.8); }
.content-wrapper p { color: #ccc; margin-bottom: 20px; text-align: justify; font-size: 1.1rem; }

/* TABLES */
table { width: 100%; border-collapse: collapse; margin: 30px 0; font-family: 'Space Mono'; }
th { text-align: left; padding: 15px; border-bottom: 2px solid var(--red-primary); color: #fff; background: rgba(255,0,60,0.1); }
td { padding: 15px; border-bottom: 1px solid #333; color: #aaa; }
tr:hover td { background: rgba(255,0,60,0.05); color: #fff; }

/* FAQ */
details { background: #0f0505; margin-bottom: 15px; border: 1px solid #333; transition: 0.3s; }
details:hover { border-color: var(--red-primary); }
summary { padding: 20px; cursor: pointer; font-weight: 700; color: #fff; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; float: right; color: var(--red-primary); font-weight: bold; }
details[open] summary::after { content: '-'; }
.ans { padding: 20px; border-top: 1px solid #333; color: #aaa; background: #050000; }

footer { border-top: 1px solid #333; padding: 60px 0; margin-top: 80px; text-align: center; color: #555; font-size: 0.9rem; }
@media(max-width: 768px) { .nav-flex { flex-direction: column; gap: 20px; } .content-wrapper { padding: 25px; } h1 { font-size: 2.5rem; } }
