/* ROOT VARIABLES - Minimal Luxury Theme */
:root {
    --bg-dark: #0f0518; /* Deep Midnight Purple */
    --bg-darker: #0a0310;
    --gold: #d4af37;
    --gold-light: #fbe69b;
    --crimson: #8b0021;
    --text-main: #e2dbea;
    --text-muted: #9c8dae;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--white); line-height: 1.2; margin-bottom: 1rem; font-weight: 600; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-style: italic; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.6rem; color: var(--gold); }
p { margin-bottom: 1.2rem; }
strong { color: var(--gold-light); }

.dropcap {
    float: left; font-size: 4rem; line-height: 0.8;
    padding-top: 4px; padding-right: 12px;
    font-family: var(--font-heading); color: var(--gold);
}

/* BUTTONS */
.btn-gold {
    display: inline-block; padding: 14px 32px;
    background: transparent; border: 1px solid var(--gold);
    color: var(--gold); font-family: var(--font-heading);
    font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px;
    position: relative; overflow: hidden; z-index: 1;
}
.btn-gold::before {
    content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%;
    background: var(--gold); transition: var(--transition-smooth); z-index: -1;
}
.btn-gold:hover { color: var(--bg-dark); }
.btn-gold:hover::before { width: 100%; }

/* HEADER */
.luxury-header {
    position: fixed; width: 100%; top: 0; z-index: 1000;
    padding: 20px 0; border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth); background: linear-gradient(to bottom, rgba(15,5,24,0.95), transparent);
}
.luxury-header.sticky {
    padding: 10px 0; background: rgba(10, 3, 16, 0.98);
    backdrop-filter: blur(10px); border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; transition: var(--transition-smooth); }
.desktop-nav ul { list-style: none; display: flex; gap: 2rem; }
.desktop-nav a { font-family: var(--font-heading); font-size: 1.1rem; color: var(--text-main); position: relative; }
.desktop-nav a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px;
    background: var(--gold); transition: var(--transition-smooth);
}
.desktop-nav a:hover::after { width: 100%; }

/* HERO EDITORIAL */
.hero-editorial { padding: 160px 0 80px; position: relative; overflow: hidden; }
.hero-editorial::before {
    content: ''; position: absolute; top: -20%; right: -20%; width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(139,0,33,0.15) 0%, transparent 60%); z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.eyebrow { display: block; color: var(--gold); font-size: 0.9rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.5rem; }
.lead-text p { font-size: 1.1rem; color: var(--text-muted); }
.gold-frame {
    padding: 10px; border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
}
.gold-frame::before, .gold-frame::after {
    content: ''; position: absolute; width: 20px; height: 20px; border: 1px solid var(--gold);
}
.gold-frame::before { top: -5px; left: -5px; border-right: none; border-bottom: none; }
.gold-frame::after { bottom: -5px; right: -5px; border-left: none; border-top: none; }
.image-caption { font-size: 0.85rem; color: var(--text-muted); margin-top: 15px; font-style: italic; text-align: center; }

/* STATS */
.stats-container {
    display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05); padding: 40px 0; margin-top: 60px;
}
.stat-item { text-align: center; flex: 1; border-right: 1px solid rgba(255,255,255,0.05); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-heading); font-size: 3.5rem; color: var(--gold); font-weight: bold; }
.stat-suffix { font-family: var(--font-heading); font-size: 2rem; color: var(--gold); }
.stat-label { display: block; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }

/* INTRO SUITE */
.intro-suite { max-width: 800px; margin: 0 auto; text-align: center; padding: 60px 24px; font-size: 1.1rem; color: var(--text-muted); }

/* OVERVIEW DATA LIST */
.bg-darker { background-color: var(--bg-darker); }
.overview-section { padding: 80px 0; }
.data-list { max-width: 900px; margin: 40px auto 0; border-top: 1px solid rgba(212, 175, 55, 0.2); }
.data-row {
    display: flex; padding: 20px 0; border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}
.data-row:hover { background: rgba(255,255,255,0.02); padding-left: 15px; }
.data-key { flex: 0 0 35%; font-family: var(--font-heading); color: var(--gold); font-size: 1.1rem; }
.data-val { flex: 1; color: var(--text-main); }
.highlight-row { background: rgba(139,0,33,0.1); border-left: 3px solid var(--crimson); padding-left: 15px; }

/* SECURITY & KYC */
.security-section { padding: 100px 0; }
.grid-2-cols { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.kyc-box { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 40px; }
.gold-list { padding-left: 20px; color: var(--text-muted); margin-bottom: 1.5rem; }
.gold-list li { margin-bottom: 10px; padding-left: 10px; }
.gold-list li::marker { color: var(--gold); font-weight: bold; }
.alert-box { border-left: 3px solid var(--crimson); padding: 15px 20px; background: rgba(139,0,33,0.1); font-size: 0.95rem; }

/* BONUS SPLIT */
.bonus-section { padding: 100px 0; position: relative; }
.split-image-text { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.shadow-img { filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8)); }
.diamond-list { list-style: none; }
.diamond-list li { position: relative; padding-left: 25px; margin-bottom: 10px; }
.diamond-list li::before {
    content: '♦'; position: absolute; left: 0; color: var(--gold); font-size: 1.2rem; top: -2px;
}

/* GAMES & MOBILE */
.games-mobile-section { padding: 100px 0; }
.games-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.full-col { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 3rem;}
.payments-box { background: rgba(212,175,55,0.03); padding: 30px; border: 1px solid rgba(212,175,55,0.2); }

/* EVALUATION TABS (JS) */
.evaluation-section { padding: 100px 0; }
.custom-tabs { max-width: 900px; margin: 0 auto; }
.tab-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.tab-btn {
    background: transparent; border: 1px solid rgba(255,255,255,0.1); color: var(--text-muted);
    padding: 12px 24px; font-family: var(--font-heading); font-size: 1.1rem; cursor: pointer; transition: var(--transition-smooth);
}
.tab-btn.active, .tab-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.05); }
.tab-content-container { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 50px; min-height: 250px; position: relative;}
.tab-pane { display: none; opacity: 0; transition: opacity 0.4s ease; text-align: center; }
.tab-pane.active { display: block; opacity: 1; }
.score-display { font-size: 4rem; font-family: var(--font-heading); color: var(--gold); line-height: 1; margin-bottom: 20px; }
.score-display span { font-size: 2rem; color: var(--text-muted); }

/* PROS/CONS & VERDICT */
.pros-cons { padding: 80px 0; }
.split-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.custom-check-list { list-style: none; }
.custom-check-list li { padding: 15px 20px; margin-bottom: 10px; background: rgba(255,255,255,0.02); border-left: 3px solid; }
.success li { border-color: #4caf50; }
.warning li { border-color: var(--crimson); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.box { border: 1px solid rgba(255,255,255,0.05); padding: 30px; }
.border-crimson { border-color: rgba(139,0,33,0.3); }

.verdict-section { padding: 100px 0; background: radial-gradient(circle at center, rgba(212,175,55,0.05) 0%, transparent 70%); }
.responsible-quote {
    font-family: var(--font-heading); font-style: italic; font-size: 1.2rem;
    text-align: center; color: var(--text-muted); max-width: 800px; margin: 0 auto;
    position: relative; padding: 40px 0;
}
.responsible-quote::before, .responsible-quote::after {
    content: '—'; display: block; color: var(--gold); font-size: 2rem; margin: 10px 0; text-align: center;
}

/* FAQ GRID */
.faq-section { padding: 100px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.faq-card { background: rgba(255,255,255,0.02); padding: 30px; border: 1px solid rgba(255,255,255,0.05); }
.faq-card.full-width { grid-column: 1 / -1; }
.faq-card h4 { color: var(--gold-light); font-family: var(--font-body); font-size: 1.1rem; }

/* FOOTER */
.luxury-footer { padding: 60px 0 30px; border-top: 1px solid rgba(212,175,55,0.1); background: #07020b; }
.footer-logo { height: 50px; margin: 0 auto; opacity: 0.5; filter: grayscale(100%); transition: var(--transition-smooth); }
.footer-logo:hover { opacity: 1; filter: grayscale(0); }
.disclaimer { font-size: 0.85rem; color: rgba(255,255,255,0.3); max-width: 600px; margin: 0 auto 20px; }
.copyright { font-size: 0.8rem; color: rgba(255,255,255,0.2); }

/* FLOATING CTA */
.floating-cta {
    position: fixed; bottom: -100px; right: 30px; z-index: 999;
    background: var(--gold); color: var(--bg-dark); font-family: var(--font-heading);
    padding: 15px 30px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5); transition: var(--transition-smooth);
    opacity: 0;
}
.floating-cta.visible { bottom: 30px; opacity: 1; }
.floating-cta:hover { background: var(--gold-light); transform: translateY(-5px); }

/* JS ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-grid, .grid-2-cols, .split-image-text, .games-grid, .split-cols, .audience-grid, .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
    .stats-container { flex-direction: column; gap: 2rem; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 1rem; }
    .stat-item:last-child { border-bottom: none; }
    .data-row { flex-direction: column; }
    .data-key { margin-bottom: 5px; }
    .full-col { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .desktop-nav { display: none; } /* Simplified for this specific minimal editorial layout */
    .hero-editorial { padding-top: 120px; }
    h1 { font-size: 2.2rem; }
    .tab-buttons { flex-direction: column; width: 100%; }
    .tab-content-container { padding: 30px 20px; }
    .floating-cta { right: 10px; left: 10px; text-align: center; }
}