/* ROOT VARIABLES - Retro-Modern Neon Glamour Theme */
:root {
    --bg-dark: #111111;
    --bg-dark-alt: #181818;
    --bg-card: rgba(30, 30, 30, 0.6);
    
    --color-neon-red: #ff2a4b;
    --color-gold: #d4af37;
    --color-cyan: #00e5ff;
    
    --text-main: #d1d5db;
    --text-white: #ffffff;
    --text-muted: #9ca3af;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --border-color: rgba(212, 175, 55, 0.2);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --glow-red: 0 0 15px rgba(255, 42, 75, 0.4);
    --glow-cyan: 0 0 15px rgba(0, 229, 255, 0.4);
}

/* Reset & Basic Setup */
* { 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.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--text-white); line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-style: italic; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
p { margin-bottom: 1.2rem; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 90px 0; }
.bg-dark-alt { background-color: var(--bg-dark-alt); }
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.text-cyan { color: var(--color-cyan); }
.text-red { color: var(--color-neon-red); }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.9rem; }
.text-xs { font-size: 0.8rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
.mt-5 { margin-top: 4rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-800 { max-width: 800px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.align-center { align-items: center; }

/* Typography specifics */
.vintage-title { position: relative; padding-bottom: 15px; margin-bottom: 20px; }
.vintage-title::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 60px; height: 2px; background-color: var(--color-gold);
}
.text-center .vintage-title::after { left: 50%; transform: translateX(-50%); }
.neon-text { color: var(--color-neon-red); text-shadow: var(--glow-red); }

/* Buttons & Badges */
.btn {
    display: inline-block; padding: 15px 35px; border-radius: 4px;
    font-family: var(--font-body); font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; cursor: pointer; transition: var(--transition);
}
.btn-primary {
    background-color: transparent; color: var(--color-cyan);
    border: 2px solid var(--color-cyan); box-shadow: inset 0 0 10px rgba(0, 229, 255, 0.2), 0 0 10px rgba(0, 229, 255, 0.2);
}
.btn-primary:hover { background-color: var(--color-cyan); color: var(--bg-dark); box-shadow: 0 0 20px rgba(0, 229, 255, 0.6); }

.retro-badge {
    display: inline-block; padding: 6px 16px; border: 1px dashed var(--color-gold);
    color: var(--color-gold); font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 1.5rem;
}

/* Lists */
.styled-list { list-style: none; padding-left: 0; }
.styled-list li { position: relative; padding-left: 35px; margin-bottom: 15px; }
.styled-list li::before {
    content: '★'; position: absolute; left: 0; top: 0; color: var(--color-gold); font-size: 1.2rem; line-height: 1.2;
}
.custom-bullets { list-style: none; padding-left: 0; }
.custom-bullets li { position: relative; padding-left: 25px; margin-bottom: 12px; }
.custom-bullets li::before {
    content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px;
    background-color: var(--color-neon-red); border-radius: 50%; box-shadow: var(--glow-red);
}

/* Image Frames */
.image-frame-gold { padding: 10px; border: 2px solid var(--color-gold); border-radius: 8px; position: relative; background: var(--bg-dark); }
.image-frame-gold::before {
    content: ''; position: absolute; top: -6px; left: -6px; right: -6px; bottom: -6px;
    border: 1px dashed var(--color-gold); opacity: 0.5; border-radius: 12px; pointer-events: none;
}
.image-frame-gold img { border-radius: 4px; }

.image-frame-neon { padding: 5px; background: linear-gradient(45deg, var(--color-neon-red), transparent, var(--color-cyan)); border-radius: 12px; }
.image-frame-neon img { border-radius: 8px; }

/* Boxes */
.box-bordered-gold { border: 1px solid var(--color-gold); padding: 30px; border-radius: 8px; background: rgba(212, 175, 55, 0.03); }
.box-bordered-cyan { border: 1px solid var(--color-cyan); padding: 30px; border-radius: 8px; background: rgba(0, 229, 255, 0.03); }
.box-bordered-red { border: 1px solid var(--color-neon-red); padding: 30px; border-radius: 8px; background: rgba(255, 42, 75, 0.03); }
.warning-box { border-left: 4px solid var(--color-neon-red); padding: 15px; background: rgba(255, 42, 75, 0.1); font-size: 0.9rem; }
.payment-card { background: var(--bg-card); border: 1px solid var(--border-color); padding: 30px; border-radius: 8px; }
.border-bottom-cyan { border-bottom: 2px solid var(--color-cyan); }
.border-bottom-gold { border-bottom: 2px solid var(--color-gold); }

/* Header */
.site-header {
    position: fixed; top: 0; width: 100%; z-index: 1000; padding: 20px 0;
    background: linear-gradient(to bottom, rgba(17,17,17,1) 0%, rgba(17,17,17,0.8) 100%);
    backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}
.site-header.scrolled { padding: 12px 0; border-bottom-color: rgba(212, 175, 55, 0.2); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; }
.nav-list { list-style: none; display: flex; gap: 2rem; }
.nav-list a { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-white); }
.nav-list a:hover { color: var(--color-gold); }

/* Mobile Menu Toggle */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 1001; }
.mobile-toggle .bar { width: 30px; height: 2px; background-color: var(--color-gold); transition: var(--transition); }
.mobile-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active .bar:nth-child(2) { opacity: 0; }
.mobile-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero Section */
.hero-section {
    position: relative; padding: 160px 0 80px; min-height: 90vh; display: flex; align-items: center;
    background: radial-gradient(circle at top right, rgba(255, 42, 75, 0.15), transparent 50%),
                radial-gradient(circle at bottom left, rgba(0, 229, 255, 0.1), transparent 50%);
}
.editorial-text { font-size: 1.1rem; color: var(--text-muted); }
.caption { font-size: 0.85rem; font-style: italic; color: var(--text-muted); text-align: center; }

/* Data Grid (Overview) */
.data-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.data-card { background: var(--bg-card); padding: 20px; border: 1px solid var(--border-color); border-radius: 4px; border-left: 3px solid var(--color-neon-red); }
.data-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 5px; }
.data-value { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--text-white); }
.eval-banner { padding: 15px; border: 1px dashed var(--color-gold); color: var(--text-white); background: rgba(212, 175, 55, 0.05); }

/* Grid List (Bonus) */
.grid-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; list-style: none; padding-left: 0; }
.grid-list li { background: var(--bg-dark); padding: 15px; border: 1px solid #333; border-radius: 4px; font-size: 0.9rem; border-left: 2px solid var(--color-gold);}

/* Ratings */
.rating-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.rating-info { display: flex; justify-content: space-between; margin-bottom: 8px; font-family: var(--font-body); font-weight: 600; color: var(--text-white); }
.bar-bg { width: 100%; height: 6px; background: #333; border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--color-cyan), var(--color-neon-red)); border-radius: 3px; width: 0; transition: width 1.5s cubic-bezier(0.25, 0.8, 0.25, 1); }

/* Responsible Box */
.responsible-gambling-box { border-top: 1px solid #333; border-bottom: 1px solid #333; padding: 40px 0; }

/* Accordion FAQ */
.accordion { border-top: 1px solid #333; }
.acc-item { border-bottom: 1px solid #333; }
.acc-header {
    width: 100%; padding: 20px 0; background: transparent; border: none; text-align: left;
    color: var(--text-white); font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition);
}
.acc-header:hover { color: var(--color-gold); }
.acc-icon { font-family: monospace; font-size: 1.5rem; color: var(--color-cyan); transition: transform 0.3s; }
.acc-item.active .acc-icon { transform: rotate(45deg); color: var(--color-neon-red); }
.acc-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.acc-item.active .acc-content { padding-bottom: 20px; }

/* Footer */
.site-footer { padding: 60px 0 30px; border-top: 1px solid var(--border-color); background: #0a0a0a; }
.footer-logo { height: 45px; opacity: 0.3; filter: grayscale(100%); transition: var(--transition); }
.footer-logo:hover { opacity: 1; filter: none; }

/* JS Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }

/* Responsive */
@media (max-width: 992px) {
    .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
    .reverse-mobile .content-block { order: 2; }
    .reverse-mobile .visual-block { order: 1; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { margin-top: 2rem; }
    .grid-list { grid-template-columns: 1fr; }
    .vintage-title::after { left: 50%; transform: translateX(-50%); }
    .content-block { text-align: center; }
    .styled-list li, .custom-bullets li { text-align: left; }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed; top: 75px; left: -100%; width: 100%; height: calc(100vh - 75px);
        background: rgba(17,17,17,0.98); flex-direction: column; justify-content: center;
        align-items: center; transition: var(--transition); border-top: 1px solid #333;
    }
    .main-nav.active { left: 0; }
    .nav-list { flex-direction: column; text-align: center; gap: 2rem; }
    .nav-list a { font-size: 1.2rem; }
    .mobile-toggle { display: flex; }
    
    h1 { font-size: 2.2rem; }
    .section-padding { padding: 60px 0; }
}