/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:       #0d0d0f;
    --bg2:      #111114;
    --bg3:      #16161a;
    --border:   rgba(255,255,255,0.07);
    --red:      #cc2a2a;
    --red-glow: rgba(204,42,42,0.25);
    --red-dim:  #a52020;
    --text:     #e8e8ec;
    --muted:    #888898;
    --card-bg:  #111114;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13,13,15,0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 32px;
}
.nav-inner {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.nav-logo {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.04em;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo .skull { width: 28px; height: 28px; fill: var(--red); }
.nav-logo span em { color: var(--red); font-style: normal; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 32px;
    list-style: none;
}
.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-actions a {
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 6px;
    color: var(--muted);
    border: 1px solid var(--border);
    transition: color .15s, border-color .15s, background .15s;
}
.nav-actions a:hover { color: var(--text); border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.05); }
.nav-actions .btn-primary {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}
.nav-actions .btn-primary:hover { background: var(--red-dim); border-color: var(--red-dim); }

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .2s;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .18s;
    font-family: 'Inter', sans-serif;
}
.btn-red {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    box-shadow: 0 0 24px var(--red-glow);
}
.btn-red:hover { background: var(--red-dim); box-shadow: 0 0 32px rgba(204,42,42,0.4); }
.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.18); }

/* ── HERO ── */
.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 32px 110px;
    text-align: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 50% -10%, rgba(204,42,42,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(204,42,42,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
    pointer-events: none;
    opacity: 0.5;
}
.hero-inner {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(204,42,42,0.12);
    border: 1px solid rgba(204,42,42,0.35);
    color: #e07070;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 6px var(--red);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: #fff;
    margin-bottom: 20px;
}
.hero h1 span { color: var(--red); }
.hero-sub {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto 36px;
}
.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── STATS STRIP ── */
.stats-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
    padding: 20px 32px;
}
.stats-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    text-align: center;
    padding: 10px 20px;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.stat-num em { color: var(--red); font-style: normal; }
.stat-label { color: var(--muted); font-size: 12.5px; margin-top: 4px; }

/* ── SECTIONS SHARED ── */
section { padding: 80px 32px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-label {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}
.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 14px;
}
.section-desc { color: var(--muted); font-size: 15px; max-width: 520px; line-height: 1.65; }
.section-head { margin-bottom: 48px; }

/* ── GAMES ── */
.games-section { background: var(--bg2); }
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.game-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color .18s, transform .18s, box-shadow .18s;
    cursor: pointer;
}
.game-card:hover {
    border-color: rgba(204,42,42,0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(204,42,42,0.12);
}
.game-icon {
    width: 44px; height: 44px;
    border-radius: 8px;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
}
.game-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}
.game-tag {
    font-size: 11px;
    color: var(--muted);
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 100px;
    width: fit-content;
}
.game-tag.hot {
    color: #e07070;
    background: rgba(204,42,42,0.1);
    border-color: rgba(204,42,42,0.3);
}
.games-custom-cta {
    margin-top: 28px;
    text-align: center;
    color: var(--muted);
    font-size: 15px;
}
.games-custom-cta strong { color: var(--text); }
.games-custom-cta a { color: var(--red); text-decoration: none; }
.games-custom-cta a:hover { text-decoration: underline; }

/* ── FEATURES ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    transition: border-color .18s;
}
.feature-card:hover { border-color: rgba(204,42,42,0.4); }
.feat-icon {
    width: 42px; height: 42px;
    background: rgba(204,42,42,0.12);
    border: 1px solid rgba(204,42,42,0.25);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.feat-icon svg {
    width: 20px; height: 20px;
    stroke: var(--red); fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.feat-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px; font-weight: 700;
    color: #fff; margin-bottom: 6px;
}
.feat-desc { color: var(--muted); font-size: 13.5px; line-height: 1.6; }

/* ── WHY SCOURGE ── */
.why-section { background: var(--bg2); }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-check {
    width: 28px; height: 28px; flex-shrink: 0;
    background: rgba(204,42,42,0.12);
    border: 1px solid rgba(204,42,42,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.why-check svg { stroke: var(--red); }
.why-item-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px; font-weight: 700; color: #fff;
    margin-bottom: 3px;
}
.why-item-desc { color: var(--muted); font-size: 13.5px; line-height: 1.55; }
.why-callout {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
}
.why-callout-quote {
    font-family: 'Rajdhani', sans-serif;
    font-size: 80px; line-height: 0.8;
    color: var(--red); opacity: 0.4;
    margin-bottom: 12px;
}
.why-callout-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 26px; font-weight: 700;
    color: #fff; line-height: 1.3;
    margin-bottom: 12px;
}
.why-callout-attr { color: var(--muted); font-size: 13px; }
.why-callout-attr em { color: var(--text); font-style: normal; }
.why-callout-contact {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.why-callout-contact-label { font-size: 13px; color: var(--muted); line-height: 1.6; }
.why-callout-email {
    display: inline-block;
    margin-top: 12px;
    color: var(--red);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
}
.why-callout-email:hover { text-decoration: underline; }

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, rgba(204,42,42,0.12) 0%, rgba(204,42,42,0.04) 100%);
    border-top: 1px solid rgba(204,42,42,0.2);
    border-bottom: 1px solid rgba(204,42,42,0.2);
    padding: 64px 32px;
}
.cta-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-text h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.cta-text p { color: var(--muted); font-size: 15px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 64px 32px 32px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand img { height: 32px; width: auto; margin-bottom: 12px; }
.footer-brand-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px; font-weight: 700;
    color: #fff; letter-spacing: 0.04em;
    margin-bottom: 10px;
}
.footer-brand-desc { color: var(--muted); font-size: 13px; line-height: 1.65; margin-bottom: 16px; }
.footer-email a { color: var(--red); font-size: 13px; font-weight: 500; }
.footer-email a:hover { text-decoration: underline; }
.footer-col-title {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text); margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--muted); font-size: 13.5px; transition: color .15s; }
.footer-links a:hover { color: var(--text); }
.footer-links li { list-style: none; }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}
.footer-bottom em { color: var(--text); font-style: normal; }

/* ── INNER PAGE ── */
.page-main { padding: 64px 32px; min-height: 60vh; }
.page-inner { max-width: 1160px; margin: 0 auto; }
.page-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.1;
}
.page-content { color: var(--text); line-height: 1.7; }
.page-content h1, .page-content h2, .page-content h3,
.page-content h4, .page-content h5, .page-content h6 {
    font-family: 'Rajdhani', sans-serif;
    color: #fff;
    margin: 1.5em 0 0.5em;
}
.page-content p { margin-bottom: 1em; color: var(--muted); }
.page-content a { color: var(--red); }
.page-content a:hover { text-decoration: underline; }
.page-content ul, .page-content ol { padding-left: 1.5em; margin-bottom: 1em; color: var(--muted); }
.page-content strong { color: var(--text); }

/* ── FAQ SECTION ── */
.faq-section { padding: 80px 24px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.faq-question {
    display: block; padding: 18px 20px; font-weight: 600; font-size: 16px;
    cursor: pointer; list-style: none; color: var(--text);
    transition: background 0.15s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; float: right; font-size: 20px; color: var(--red); line-height: 1; }
.faq-item[open] .faq-question::after { content: '−'; }
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-answer { padding: 0 20px 18px; color: var(--muted); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
}
@media (max-width: 640px) {
    nav { padding: 0 16px; }
    .nav-links, .nav-actions { display: none; }
    .nav-mobile-toggle { display: flex; }
    .hero { padding: 60px 16px 70px; }
    .hero h1 { font-size: 36px; }
    section { padding: 56px 16px; }
    .stats-strip { padding: 16px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
