:root {
    --bg-base: #060a13;
    --bg-card: #0d1220;
    --bg-nav: #0a101d;
    --grid-line: rgba(255, 255, 255, 0.03);
    
    --text-primary: #ffffff;
    --text-secondary: #8a93a6;
    
    --accent-blue: #58a6ff;
    --accent-cyan: #48d1cc;
    
    --border-color: rgba(255, 255, 255, 0.06);
}

/* Page routing */
.page {
    display: none;
}

.page.active-page {
    display: block;
}

/* Active nav link */
.nav-links a.active {
    color: var(--text-primary) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Background Grid */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
    z-index: -1;
    pointer-events: none;
    animation: gridPulse 8s ease-in-out infinite alternate;
    mask-image: radial-gradient(ellipse at top, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at top, black 30%, transparent 80%);
}

/* Animated aurora orbs */
.aurora-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    z-index: -1;
    pointer-events: none;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.aurora-orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(72,209,204,0.8), transparent 70%);
    top: -150px;
    left: -100px;
    animation: orbDrift1 18s ease-in-out infinite alternate;
}
.aurora-orb--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(88,130,255,0.8), transparent 70%);
    bottom: -100px;
    right: -80px;
    animation: orbDrift2 22s ease-in-out infinite alternate;
}
.aurora-orb--3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139,92,246,0.6), transparent 70%);
    top: 40%;
    left: 55%;
    animation: orbDrift3 28s ease-in-out infinite alternate;
}

@keyframes orbDrift1 {
    0%   { transform: translate(0, 0) scale(1); opacity: 0.15; }
    33%  { transform: translate(120px, 80px) scale(1.15); opacity: 0.22; }
    66%  { transform: translate(60px, 160px) scale(0.95); opacity: 0.18; }
    100% { transform: translate(200px, 40px) scale(1.2); opacity: 0.12; }
}
@keyframes orbDrift2 {
    0%   { transform: translate(0, 0) scale(1); opacity: 0.15; }
    33%  { transform: translate(-100px, -60px) scale(1.1); opacity: 0.20; }
    66%  { transform: translate(-40px, -140px) scale(0.9); opacity: 0.16; }
    100% { transform: translate(-180px, -80px) scale(1.25); opacity: 0.10; }
}
@keyframes orbDrift3 {
    0%   { transform: translate(0, 0) scale(1); opacity: 0.10; }
    50%  { transform: translate(-80px, 120px) scale(1.3); opacity: 0.18; }
    100% { transform: translate(100px, -60px) scale(0.85); opacity: 0.08; }
}
@keyframes gridPulse {
    0%   { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 20px auto 60px;
    padding: 10px 20px;
    background-color: var(--bg-nav);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(99, 140, 255, 0.5));
}

.nav-brand {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-spacer {
    width: 32px; /* Roughly matches the logo width to ensure links are perfectly centered */
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.highlight {
    background: linear-gradient(90deg, #93C5FD, #67E8F9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    padding: 8px 16px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Advantages Section */
.advantages {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.section-label .dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(72, 209, 204, 0.6);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 48px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: left;
    transition: transform 0.2s, background-color 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    background-color: #111827;
}

.card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(72, 209, 204, 0.1);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.card-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.pricing-toggle {
    display: flex;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 6px;
    margin-bottom: 48px;
}

.toggle-option {
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.toggle-option.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.pricing-cards {
    display: flex;
    gap: 32px;
    width: 100%;
    justify-content: center;
}

.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: left;
    flex: 1;
    max-width: 400px;
    position: relative;
}

.premium-card {
    border-top: 2px solid var(--accent-cyan);
    background: linear-gradient(180deg, rgba(72, 209, 204, 0.05) 0%, var(--bg-card) 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 32px;
    background-color: var(--bg-nav);
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 0.05em;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.plan-price {
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.price-period {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.plan-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 32px;
    min-height: 44px;
}

.plan-btn {
    width: 100%;
    padding: 14px 0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 32px;
}

.outline-btn {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.outline-btn:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.05);
}

.solid-btn {
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    border: none;
    color: white;
    box-shadow: 0 4px 14px rgba(6, 182, 212, 0.3);
}

.solid-btn:hover {
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5);
    transform: translateY(-2px);
}

.plan-features {
    list-style: none;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.plan-features li i {
    color: var(--accent-cyan);
    font-size: 14px;
}
/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Products / Games Grid */
.products-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.game-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.2s;
}

.game-card:hover {
    transform: translateY(-4px);
}

.game-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.6);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Game count divider in products grid */
.games-count-row {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0 4px;
}
.games-count-row::before,
.games-count-row::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}
.games-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent-cyan);
    white-space: nowrap;
}

/* Status section label centering */
.status-section { display: flex; flex-direction: column; align-items: center; }
.status-section .status-table { width: 100%; align-self: stretch; }

/* Unique color accents per game to differentiate cards */
.gta5       { background: url('Images/gta5.png') center/cover no-repeat; }
.fortnite   { background: url('Images/fn-banner.png') center/cover no-repeat; }
.r6         { background: url('Images/r6-banner.png') top left/cover no-repeat; }
.tarkov     { background: url('Images/tarkov-banner.png') top left/cover no-repeat; }
.gzw        { background: linear-gradient(135deg, #0d1a0d, #1a3d1a); }
.finals     { background: linear-gradient(135deg, #2e0d0d, #8c2e0d); }
.valorant   { background: url('Images/val-banner.png') top left/cover no-repeat; }
.cod        { background: url('Images/cod-banner.png') top left/cover no-repeat; }
.apex       { background: url('Images/apex-banner.png') top left/cover no-repeat; }
.rust       { background: url('Images/rust-banner.png') top left/cover no-repeat; }
.dayz       { background: url('Images/dayz-banner.png') top left/cover no-repeat; }
.dune       { background: linear-gradient(135deg, #2e1a00, #7a5a00); }
.arc        { background: url('Images/arc-banner.png') top left/cover no-repeat; }
.arma       { background: linear-gradient(135deg, #001a0d, #004d2e); }
.rocket     { background: url('Images/rocket-banner.png') top left/cover no-repeat; }
.palworld   { background: linear-gradient(135deg, #001a1a, #005a5a); }
.marvel { background-image: url('Images/marvel-banner.png'); background-position: center; background-size: cover; background-repeat: no-repeat; }
.cs2 { background-image: url('Images/cs2-banner.png'); background-position: center; background-size: cover; background-repeat: no-repeat; }
.rdr2       { background: url('Images/rdr2.png') center/cover no-repeat; }
.genshin    { background: url('Images/genshin.png') center/cover no-repeat; }
.hll        { background: url('Images/hll.png') center/cover no-repeat; }
.pubg       { background: url('Images/pubg.png') center/cover no-repeat; }
.squad      { background: url('Images/squad.png') center/cover no-repeat; }
.among      { background: linear-gradient(135deg, #001a00, #006600); }
.sot        { background: url('Images/sot.png') center/cover no-repeat; }
.blood      { background: url('Images/blood.png') center/cover no-repeat; }
.bf         { background: url('Images/bf.png') center/cover no-repeat; }
.ins        { background: linear-gradient(135deg, #0a0d00, #2e3400); }

.game-thumb::after {
    content: attr(data-name);
}

.game-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: left;
}

.featured-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(15, 20, 35, 0.88);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
}

/* Tutorials Section */
.tutorials {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px;
    text-align: left;
    transition: transform 0.2s, background-color 0.2s;
}

.step-card:hover {
    transform: translateY(-3px);
    background-color: #111827;
}

.step-number {
    min-width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.25), rgba(72, 209, 204, 0.25));
    border: 1px solid rgba(88, 166, 255, 0.3);
    color: var(--accent-blue);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.review-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    transition: transform 0.2s, background-color 0.2s;
}

.review-card:hover {
    transform: translateY(-3px);
    background-color: #111827;
}

.review-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.2), rgba(72, 209, 204, 0.2));
    border: 1px solid rgba(88, 166, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 14px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.reviewer-game {
    font-size: 12px;
    color: var(--text-secondary);
}

.stars {
    display: flex;
    gap: 3px;
}

.stars i {
    color: #FBBF24;
    font-size: 12px;
}

@media (max-width: 768px) {
    .cards-grid, .pricing-cards {
        flex-direction: column;
        grid-template-columns: 1fr;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .nav-links {
        display: none;
    }
}

/* ===== GTA5 PRODUCT PAGE ===== */
.gta5-products-section {
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 40px 20px 0;
    text-align: center;
}

/* ===== STATUS PAGE ===== */
.status-section {
    max-width: 760px;
    margin: 0 auto 100px;
    padding: 40px 20px 0;
    text-align: center;
}

.status-table {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    text-align: left;
}

.status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.15s;
}
.status-row:last-child { border-bottom: none; }
.status-row:hover { background: rgba(255,255,255,0.03); }

.status-row--parent {
    background: rgba(255,255,255,0.04);
}

.status-row--child {
    background: transparent;
    padding-left: 20px;
}

.status-game-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.status-game-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.status-game-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.status-glow-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px 2px rgba(34,197,94,0.6);
    flex-shrink: 0;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 5px 2px rgba(34,197,94,0.5); }
    50%       { box-shadow: 0 0 10px 4px rgba(34,197,94,0.9); }
}

.status-child-info {
    display: flex;
    align-items: center;
    gap: 0;
}

.status-tree-line {
    display: inline-block;
    width: 28px;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}
.status-tree-line::before {
    content: '';
    position: absolute;
    left: 14px;
    top: -18px;
    bottom: -18px;
    width: 1px;
    background: var(--border-color);
}
.status-tree-line::after {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    width: 12px;
    height: 1px;
    background: var(--border-color);
}
.status-tree-line--last::before {
    bottom: 50%;
}

.status-child-name {
    font-size: 14px;
    color: var(--text-secondary);
    margin-left: 8px;
}

.status-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.status-badge--up {
    background: rgba(88,166,255,0.1);
    border: 1px solid rgba(88,166,255,0.25);
    color: #58a6ff;
}

.status-badge--green {
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.25);
    color: #22c55e;
}

.status-badge-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== SUPPORT PAGE ===== */
.support-section {
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 40px 20px 0;
    text-align: center;
}

.support-section .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    text-align: center;
}

.support-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: border-color 0.25s, transform 0.2s;
}
.support-card--purple { border-color: rgba(114,90,255,0.35); }
.support-card--cyan   { border-color: rgba(32,178,200,0.45); }
.support-card--green  { border-color: rgba(34,197,94,0.45); }

.support-card-icon {
    width: 62px;
    height: 62px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 4px;
}
.support-icon--purple { background: rgba(88,101,242,0.18); color: #5865F2; }
.support-icon--cyan   { background: rgba(32,178,200,0.15); color: #20b2c8; }
.support-icon--green  { background: rgba(34,197,94,0.15);  color: #22c55e; }

.support-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
}

.support-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 200px;
    margin: 0 auto;
}

.support-btn {
    margin-top: auto;
    padding: 10px 22px;
    border-radius: 9px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: not-allowed;
}

.support-btn--unavailable {
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.3);
    color: #f87171;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 24px 80px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    margin-top: 24px;
    align-items: start;
}

.product-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.2;
}

.product-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 20px;
}

.product-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.prod-badge {
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}
.prod-badge.green { color: #00e676; border-color: rgba(0,200,100,0.3); background: rgba(0,200,100,0.08); }
.prod-badge.green i { font-size: 8px; }

.product-download-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
}

.download-meta-row {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border-color);
}

.download-meta {
    flex: 1;
    padding: 16px 20px;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.download-meta:last-child { border-right: none; }

.dm-label { font-size: 11px; color: var(--text-secondary); font-weight: 500; }
.dm-value  { font-size: 14px; color: var(--text-primary); font-weight: 700; }

.download-btn { cursor: pointer;
    display: block;
    width: calc(100% - 40px);
    margin: 18px 20px;
    padding: 14px;
    background: linear-gradient(90deg, #3a7bd5, #2563eb);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.2s;
}
.download-btn:hover { opacity: 0.85; }

.archive-password-row {
    padding: 14px 20px 18px;
    border-top: 1px solid var(--border-color);
}

.ap-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.ap-value-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ap-value {
    font-size: 14px;
    font-weight: 700;
    color: #63b3ff;
}

.ap-copy {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: color 0.2s;
}
.ap-copy:hover { color: var(--text-primary); }

/* Right column */
.product-main-img {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    background: url('Images/cherax.png') center/cover no-repeat;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
}

.product-main-img--gif {
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fn-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.product-thumb-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.product-thumb {
    height: 70px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    overflow: hidden;
}
.cherax-t1 { background: url('Images/cherax-t1.png') center/cover no-repeat; }
.cherax-t2 { background: url('Images/cherax-t2.png') center/cover no-repeat; }
.cherax-t3 { background: url('Images/cherax-t3.png') center/cover no-repeat; }

.product-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.prod-stat {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ps-label { font-size: 10px; letter-spacing: 0.08em; color: var(--text-secondary); font-weight: 600; }
.ps-value  { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.ps-value.cyan { color: #63b3ff; }

/* System Requirements */
.sysreq-section {
    margin-top: 48px;
}

.sysreq-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.sysreq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.sysreq-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sysreq-label { font-size: 10px; letter-spacing: 0.1em; color: var(--text-secondary); font-weight: 700; }
.sysreq-value  { font-size: 20px; font-weight: 800; color: var(--text-primary); }

/* Cherax FAQ */
.cherax-faq {
    margin-top: 48px;
}
.cherax-faq .section-title {
    text-align: left;
    font-size: 26px;
    margin-bottom: 20px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    max-width: 820px;
    margin: 0 auto 100px;
    padding: 20px 20px 0;
    text-align: center;
}

.faq-section .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(255,255,255,0.12); }
.faq-item.open  { border-color: rgba(99,179,255,0.25); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 18px 22px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-icon {
    color: var(--text-secondary);
    font-size: 13px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-answer p {
    padding: 0 22px 18px;
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.gta5-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 32px;
    transition: color 0.2s;
    float: left;
}
.gta5-back:hover { color: var(--text-primary); }

.gta5-choose-title {
    font-size: 52px;
    font-weight: 900;
    font-style: italic;
    background: linear-gradient(90deg, #f500a0, #ff6ef7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    clear: both;
}

.gta5-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.gta5-desc {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 380px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.menu-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: left;
}

.menu-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.2s;
    cursor: pointer;
}
.menu-card:hover { transform: translateY(-4px); }

.menu-card-thumb {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 10px;
}

/* Per-menu thumbnail colors */
.cherax-thumb { background: url('Images/cherax.png') center/cover no-repeat; }
.stand-thumb  { background: url('Images/stand.png') center/cover no-repeat; }
.fivem-thumb  { background: url('Images/fivem.jpg') center/cover no-repeat; }
.lexis-thumb  { background: url('Images/lexis.png') center/cover no-repeat; }
.scooby-thumb { background: url('Images/scooby.png') center/cover no-repeat; }
.yim-thumb    { background: url('Images/yim.png') center/cover no-repeat; }

.menu-badge-top {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.95);
    background: rgba(15, 20, 35, 0.85);
    padding: 3px 6px;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.menu-status {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 5px;
    letter-spacing: 0.05em;
}
.menu-status.online {
    background-color: rgba(0, 200, 100, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #4ade80;
    border: 1px solid rgba(0, 200, 100, 0.6);
    text-shadow: 0 1px 3px rgba(0,0,0,0.9);
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.menu-logo {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.05em;
    opacity: 0.9;
}
.cherax-logo { color: #4da6ff; }
.stand-logo  { color: #cc88ff; }
.lexis-logo  { color: #00e5cc; }
.fivem-logo  { color: #ff4a6a; }
.scooby-logo { color: #48d1ff; }
.yim-logo    { color: #a8ff48; }

/* Yim tags */
.menu-tag-updated, .menu-tag-working, .menu-tag-support {
    position: absolute;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}
.menu-tag-updated { top: 28px; left: 8px; background: #e6a000; color: #000; }
.menu-tag-working { top: 50px; left: 8px; background: #00b300; color: #fff; }
.menu-tag-support { top: 30px; right: 8px; background: rgba(255,255,255,0.12); color: #fff; font-size: 9px; border-radius: 4px; padding: 2px 7px; }

.menu-card-body {
    padding: 14px 16px 18px;
}

.menu-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.menu-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .menu-cards-grid { grid-template-columns: 1fr; }
    .gta5-choose-title { font-size: 36px; }
}

.minecraft { background: url('Images/minecraft.jpg') center/cover no-repeat; }
.mc-thumb { background: url('Images/minecraft.jpg') center/cover no-repeat; }
.mc-logo { font-size:24px; font-weight:900; color:#fff; text-shadow:0 2px 10px rgba(0,0,0,0.8); }

.sakura-thumb { background: url('Images/sakura.jpg') center/cover no-repeat !important; }
.vape-thumb { background: url('Images/vape.jpg') center/cover no-repeat !important; }
.epitah-thumb { background: url('Images/epitah.png') center/cover no-repeat !important; }

.menu-version {
    position: absolute;
    top: 32px;
    right: 8px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 5px;
    letter-spacing: 0.05em;
    background-color: rgba(15, 20, 35, 0.85);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.support-card--orange { border-color: rgba(249,115,22,0.45); }
.support-icon--orange { background: rgba(249,115,22,0.15); color: #f97316; }

.support-btn--available {
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.3);
    color: #f97316;
    cursor: pointer;
    transition: 0.2s;
}
.support-btn--available:hover {
    background: rgba(249,115,22,0.2);
}

.silk-thumb { background: url('Images/silk.jpg') center/cover no-repeat !important; }
.doomsday-thumb { background: url('Images/doomsday.jpg') center/cover no-repeat !important; }
.breeze-thumb { background: url('Images/breeze.png') center/cover no-repeat !important; }
.volt-thumb { background: url('Images/volt.png') center/cover no-repeat !important; }

.status-parent-arrow {
    margin-left: auto;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: transform 0.3s;
}
.status-row--parent {
    cursor: pointer;
}

.amongus    { background: url('Images/amongus.png') center/cover no-repeat; }

/* Generated product image classes */
.fn-main { background: url('Images/fn-main.gif') center/cover no-repeat; }
.amongus-main { background: url('Images/amongus-main.png') center/cover no-repeat; }
.sot-main { background: url('Images/sot-main.png') center/cover no-repeat; }
.blood-main { background: url('Images/blood-main.png') center/cover no-repeat; }
.bf-main { background: url('Images/bf-main.jpg') center/cover no-repeat; }
.stand { background: url('Images/stand.png') center/cover no-repeat; }
.stand-t1 { background: url('Images/stand-t1.png') center/cover no-repeat; }
.stand-t2 { background: url('Images/stand-t2.png') center/cover no-repeat; }
.stand-t3 { background: url('Images/stand-t3.png') center/cover no-repeat; }
.fivem { background: url('Images/fivem.jpg') center/cover no-repeat; }
.fivem-t1 { background: url('Images/fivem-t1.png') center/cover no-repeat; }
.fivem-t2 { background: url('Images/fivem-t2.png') center/cover no-repeat; }
.lexis { background: url('Images/lexis.png') center/cover no-repeat; }
.lexis-t1 { background: url('Images/lexis-t1.png') center/cover no-repeat; }
.lexis-t2 { background: url('Images/lexis-t2.png') center/cover no-repeat; }
.lexis-t3 { background: url('Images/lexis-t3.png') center/cover no-repeat; }
.scooby { background: url('Images/scooby.png') center/cover no-repeat; }
.scooby-t1 { background: url('Images/scooby-t1.png') center/cover no-repeat; }
.scooby-t2 { background: url('Images/scooby-t2.png') center/cover no-repeat; }
.yim { background: url('Images/yim.png') center/cover no-repeat; }
.yim-t1 { background: url('Images/yim-t1.jpg') center/cover no-repeat; }
.yim-t2 { background: url('Images/yim-t2.png') center/cover no-repeat; }
.yim-t3 { background: url('Images/yim-t3.png') center/cover no-repeat; }
.vape { background: url('Images/vape.jpg') center/cover no-repeat; }
.silk { background: url('Images/silk.jpg') center/cover no-repeat; }
.sakura { background: url('Images/sakura.jpg') center/cover no-repeat; }
.breeze { background: url('Images/breeze.png') center/cover no-repeat; }
.epitah { background: url('Images/epitah.png') center/cover no-repeat; }
.doomsday { background: url('Images/doomsday.jpg') center/cover no-repeat; }
.volt { background: url('Images/volt.png') center/cover no-repeat; }
.fn-t1 { background: url('Images/fn-t1.png') center/cover no-repeat; }
.fn-t2 { background: url('Images/fn-t2.png') center/cover no-repeat; }
.fn-t3 { background: url('Images/fn-t3.png') center/cover no-repeat; }
.r6-main { background: url('Images/r6-main.jpg') center/cover no-repeat; }
.r6-t1 { background: url('Images/r6-t1.png') center/cover no-repeat; }
.r6-t2 { background: url('Images/r6-t2.png') center/cover no-repeat; }
.r6-t3 { background: url('Images/r6-t3.png') center/cover no-repeat; }
.cod-main { background: url('Images/cod-main.png') center/cover no-repeat; }
.cod-t1 { background: url('Images/cod-t1.png') center/cover no-repeat; }
.cod-t2 { background: url('Images/cod-t2.png') center/cover no-repeat; }
.cod-t3 { background: url('Images/cod-t3.png') center/cover no-repeat; }
.val-main { background: url('Images/val-main.png') center/cover no-repeat; }
.val-t1 { background: url('Images/val-t1.png') center/cover no-repeat; }
.val-t2 { background: url('Images/val-t2.png') center/cover no-repeat; }
.val-t3 { background: url('Images/val-t3.png') center/cover no-repeat; }
.tarkov-main { background: url('Images/tarkov-main.png') center/cover no-repeat; }
.tarkov-t1 { background: url('Images/tarkov-t1.png') center/cover no-repeat; }
.tarkov-t2 { background: url('Images/tarkov-t2.png') center/cover no-repeat; }
.tarkov-t3 { background: url('Images/tarkov-t3.png') center/cover no-repeat; }
.apex-main { background: url('Images/apex-main.jpg') center/cover no-repeat; }
.apex-t1 { background: url('Images/apex-t1.jpg') center/cover no-repeat; }
.apex-t2 { background: url('Images/apex-t2.png') center/cover no-repeat; }
.apex-t3 { background: url('Images/apex-t3.jpg') center/cover no-repeat; }
.rust-main { background: url('Images/rust-main.png') center/cover no-repeat; }
.rust-t1 { background: url('Images/rust-t1.png') center/cover no-repeat; }
.rust-t2 { background: url('Images/rust-t2.png') center/cover no-repeat; }
.rust-t3 { background: url('Images/rust-t3.png') center/cover no-repeat; }
.dayz-t1 { background: url('Images/dayz-t1.png') center/cover no-repeat; }
.dayz-t2 { background: url('Images/dayz-t2.png') center/cover no-repeat; }
.dayz-t3 { background: url('Images/dayz-t3.png') center/cover no-repeat; }
.arc-t1 { background: url('Images/arc-t1.png') center/cover no-repeat; }
.arc-t2 { background: url('Images/arc-t2.png') center/cover no-repeat; }
.arc-t3 { background: url('Images/arc-t3.png') center/cover no-repeat; }
.rocket-t1 { background: url('Images/rocket-t1.png') center/cover no-repeat; }
.rocket-t2 { background: url('Images/rocket-t2.png') center/cover no-repeat; }
.rocket-t3 { background: url('Images/rocket-t3.jpg') center/cover no-repeat; }
.marvel-t1 { background: url('Images/marvel-t1.png') center/cover no-repeat; }
.marvel-t2 { background: url('Images/marvel-t2.jpg') center/cover no-repeat; }
.marvel-t3 { background: url('Images/marvel-t3.png') center/cover no-repeat; }
.cs2-main { background: url('Images/cs2-main.png') center/cover no-repeat; }
.cs2-t1 { background: url('Images/cs2-t1.jpg') center/cover no-repeat; }
.cs2-t2 { background: url('Images/cs2-t2.png') center/cover no-repeat; }
.cs2-t3 { background: url('Images/cs2-t3.png') center/cover no-repeat; }
.rdr2-t1 { background: url('Images/rdr2-t1.png') center/cover no-repeat; }
.rdr2-t2 { background: url('Images/rdr2-t2.png') center/cover no-repeat; }
.rdr2-t3 { background: url('Images/rdr2-t3.png') center/cover no-repeat; }
.genshin-t1 { background: url('Images/genshin-t1.png') center/cover no-repeat; }
.genshin-t2 { background: url('Images/genshin-t2.png') center/cover no-repeat; }
.genshin-t3 { background: url('Images/genshin-t3.png') center/cover no-repeat; }
.hll-main { background: url('Images/hll-main.png') center/cover no-repeat; }
.hll-t1 { background: url('Images/hll-t1.png') center/cover no-repeat; }
.hll-t2 { background: url('Images/hll-t2.png') center/cover no-repeat; }
.hll-t3 { background: url('Images/hll-t3.png') center/cover no-repeat; }
.pubg-main { background: url('Images/pubg-main.png') center/cover no-repeat; }
.pubg-t1 { background: url('Images/pubg-t1.png') center/cover no-repeat; }
.pubg-t2 { background: url('Images/pubg-t2.png') center/cover no-repeat; }
.pubg-t3 { background: url('Images/pubg-t3.png') center/cover no-repeat; }
.squad-main { background: url('Images/squad-main.png') center/cover no-repeat; }
.squad-t1 { background: url('Images/squad-t1.png') center/cover no-repeat; }
.squad-t2 { background: url('Images/squad-t2.png') center/cover no-repeat; }
.squad-t3 { background: url('Images/squad-t3.png') center/cover no-repeat; }
.amongus-t1 { background: url('Images/amongus-t1.png') center/cover no-repeat; }
.amongus-t2 { background: url('Images/amongus-t2.png') center/cover no-repeat; }
.amongus-t3 { background: url('Images/amongus-t3.png') center/cover no-repeat; }
.sot-t1 { background: url('Images/sot-t1.png') center/cover no-repeat; }
.sot-t2 { background: url('Images/sot-t2.png') center/cover no-repeat; }
.sot-t3 { background: url('Images/sot-t3.png') center/cover no-repeat; }
.blood-t1 { background: url('Images/blood-t1.png') center/cover no-repeat; }
.blood-t2 { background: url('Images/blood-t2.png') center/cover no-repeat; }
.blood-t3 { background: url('Images/blood-t3.png') center/cover no-repeat; }
.bf-t1 { background: url('Images/bf-t1.png') center/cover no-repeat; }
.bf-t2 { background: url('Images/bf-t2.jpg') center/cover no-repeat; }
.bf-t3 { background: url('Images/bf-t3.png') center/cover no-repeat; }
.fn-banner { background: url('Images/fn-banner.png') center/cover no-repeat; }
.r6-banner { background: url('Images/r6-banner.png') center/cover no-repeat; }
.cod-banner { background: url('Images/cod-banner.png') center/cover no-repeat; }
.val-banner { background: url('Images/val-banner.png') center/cover no-repeat; }
.tarkov-banner { background: url('Images/tarkov-banner.png') center/cover no-repeat; }
.apex-banner { background: url('Images/apex-banner.png') center/cover no-repeat; }
.rust-banner { background: url('Images/rust-banner.png') center/cover no-repeat; }
.dayz-banner { background: url('Images/dayz-banner.png') center/cover no-repeat; }
.arc-banner { background: url('Images/arc-banner.png') center/cover no-repeat; }
.rocket-banner { background: url('Images/rocket-banner.png') center/cover no-repeat; }
.marvel-banner { background: url('Images/marvel-banner.png') center/cover no-repeat; }
.cs2-banner { background: url('Images/cs2-banner.png') center/cover no-repeat; }
