/* ===========================
   BG GAMING — MAIN STYLES
   Dark & Gaming Theme
=========================== */

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

:root {
    --bg-dark: #0c0a08;
    --bg-card: #151210;
    --bg-card-hover: #1e1a16;
    --accent: #d4911e;
    --accent-glow: rgba(212, 145, 30, 0.3);
    --accent-dim: #b87a15;
    --accent-light: #f4a01e;
    --green: #00ff88;
    --green-glow: rgba(0, 255, 136, 0.3);
    --red: #ff4444;
    --red-glow: rgba(255, 68, 68, 0.3);
    --yellow: #ffaa00;
    --text: #f0e8d8;
    --text-dim: #a09080;
    --text-muted: #605040;
    --border: #2a2218;
    --border-glow: rgba(212, 145, 30, 0.15);
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-dark);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #ff8833;
}

/* ===========================
   NAVIGATION
=========================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(212, 145, 30, 0.4));
}

.nav-logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--accent-dim) !important;
    transform: translateY(-1px);
}

.nav-cta::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===========================
   HERO SECTION
=========================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
    background:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 900"><defs><radialGradient id="a" cx="50%25" cy="0%25" r="80%25"><stop offset="0%25" stop-color="%23d4911e" stop-opacity="0.15"/><stop offset="100%25" stop-color="transparent" stop-opacity="0"/></radialGradient></defs><rect fill="url(%23a)" width="1440" height="900"/></svg>') center top / cover no-repeat,
        linear-gradient(180deg, #0d0800 0%, #0a0a0a 40%, #0a0a0a 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center top, rgba(212, 145, 30, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 100, 0, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 160, 0, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(212, 145, 30, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 65%, rgba(255, 180, 60, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 10%, rgba(255, 200, 100, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 40%, rgba(212, 145, 30, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 70%, rgba(255, 160, 0, 0.3) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 15% 85%, rgba(255, 220, 130, 0.25) 0%, transparent 100%),
        radial-gradient(1px 1px at 45% 45%, rgba(212, 145, 30, 0.35) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 65% 80%, rgba(255, 180, 60, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 15%, rgba(255, 200, 100, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 25% 35%, rgba(255, 140, 0, 0.25) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 55% 90%, rgba(212, 145, 30, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 75% 55%, rgba(255, 180, 60, 0.3) 0%, transparent 100%);
    animation: sparkle 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes sparkle {
    0% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; }
    100% { opacity: 0.5; transform: scale(1.02); }
}

.hero-content {
    position: relative;
    max-width: 800px;
    z-index: 1;
}

.hero-logo {
    width: 220px;
    height: 220px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 40px rgba(212, 145, 30, 0.4));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: var(--accent);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #ccccdd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent) 0%, #ff8833 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-dim);
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--accent-glow);
    color: #fff;
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    transform: translateY(-2px);
    color: var(--text);
}

/* ===========================
   LIVE STATUS BAR
=========================== */

.status-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
}

.status-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow-x: auto;
}

.status-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.status-servers {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.server-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.server-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.server-pill .dot.online {
    background: var(--green);
    box-shadow: 0 0 6px var(--green-glow);
}

.server-pill .dot.offline {
    background: var(--red);
    box-shadow: 0 0 6px var(--red-glow);
}

.server-pill .name {
    color: var(--text);
    font-weight: 500;
}

.server-pill .players {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===========================
   SECTION STYLES
=========================== */

.section {
    padding: 5rem 2rem;
}

.section-dark {
    background: var(--bg-card);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.section-header h2 span {
    color: var(--accent);
}

.section-header p {
    color: var(--text-dim);
    font-size: 1.05rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===========================
   RATES CARDS
=========================== */

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.rate-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.rate-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px var(--border-glow);
}

.rate-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.rate-card .multiplier {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rate-card .label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.rate-card .desc {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ===========================
   FEATURES GRID
=========================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
}

.feature-card .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 10px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ===========================
   MAP CARDS
=========================== */

.maps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.map-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.map-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.map-card .map-emoji {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    flex-shrink: 0;
}

.map-card .map-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.map-card .map-info p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.map-card .map-status {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
}

.map-card .map-status .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* ===========================
   HOW TO JOIN
=========================== */

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    counter-reset: step;
}

.step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    counter-increment: step;
}

.step::before {
    content: counter(step);
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 107, 0, 0.15);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.step h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.step p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ===========================
   SUBSCRIPTIONS
=========================== */

.sub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.sub-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.sub-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--border-glow);
}

.sub-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.3rem 1rem;
    border-radius: 50px;
}

.sub-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.sub-card .sub-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.sub-card .sub-features li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sub-card .sub-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: bold;
}

/* ===========================
   CTA SECTION
=========================== */

.cta-section {
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.cta-section p {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
}

/* ===========================
   FOOTER
=========================== */

.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===========================
   HARDWARE SPECS
=========================== */

.specs-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.spec {
    text-align: center;
}

.spec .spec-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.spec .spec-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================
   FAQ
=========================== */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item[open] {
    border-color: var(--accent);
}

.faq-item summary {
    padding: 1.2rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text);
    transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item summary:hover {
    color: var(--accent);
}

.faq-item p {
    padding: 0 1.5rem 1.2rem;
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ===========================
   PROMO BANNER
=========================== */

.promo-banner-section {
    padding: 3rem 2rem;
}

.promo-banner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5), 0 0 30px var(--border-glow);
    transition: transform 0.3s;
}

.promo-banner:hover {
    transform: scale(1.01);
}

.server-list-caption {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.95rem;
    margin: 2rem 0 1rem;
}

.server-list-caption strong {
    color: var(--accent);
}

.server-list-img {
    max-width: 700px;
    border: 1px solid rgba(212, 145, 30, 0.3);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 1rem 2rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-logo {
        width: 160px;
        height: 160px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .status-container {
        flex-wrap: nowrap;
    }

    .specs-row {
        gap: 1.5rem;
    }
}
