/* =========================================
   APOSTAR EL DORADO - Premium Dark Theme
   Aesthetic: El Dorado Gold / Dark Luxury
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
    /* Primary Colors */
    --primary-gold: #D4AF37;
    --primary-gold-light: #F4E4A6;
    --primary-gold-dark: #B8860B;
    --primary-amber: #F59E0B;

    /* Background Colors */
    --bg-dark: #080810;
    --bg-card: #10101C;
    --bg-card-hover: #181828;
    --bg-elevated: #1C1C2E;
    --bg-gradient: linear-gradient(135deg, #080810 0%, #12122A 50%, #080810 100%);

    /* Text Colors */
    --text-primary: #F0EAD6;
    --text-secondary: #B0A89A;
    --text-muted: #6A6478;

    /* Accent Colors */
    --accent-green: #10B981;
    --accent-red: #EF4444;
    --accent-blue: #6366F1;
    --accent-purple: #8B5CF6;

    /* Borders */
    --border-subtle: rgba(212, 175, 55, 0.12);
    --border-gold: rgba(212, 175, 55, 0.45);

    /* Shadows */
    --shadow-gold: 0 0 50px rgba(212, 175, 55, 0.12);
    --shadow-card: 0 12px 50px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 80px rgba(212, 175, 55, 0.08);

    /* Typography */
    --font-display: 'Cinzel', Georgia, serif;
    --font-body: 'Raleway', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: clamp(60px, 8vw, 120px);
    --container-max: 1280px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & BASE
   ========================================= */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 15% 15%, rgba(212, 175, 55, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 85%, rgba(139, 92, 246, 0.025) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 70%),
        var(--bg-gradient);
    pointer-events: none;
    z-index: -1;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
}

/* =========================================
   18+ AGE BADGE (Fixed Corner)
   ========================================= */

.age-badge {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-red) 0%, #B91C1C 100%);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    font-family: var(--font-body);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
    animation: pulse-badge 2.5s ease-in-out infinite;
    color: white;
}

.age-badge svg {
    width: 18px;
    height: 18px;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 6px 28px rgba(239, 68, 68, 0.55); }
}

/* =========================================
   AGE VERIFICATION MODAL
   ========================================= */

.age-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(24px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.age-modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.age-modal {
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 28px;
    padding: 60px 50px;
    max-width: 540px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-gold), var(--shadow-card);
    animation: modal-appear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.age-modal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold-dark), var(--primary-gold-light), var(--primary-gold-dark));
}

@keyframes modal-appear {
    from { opacity: 0; transform: scale(0.88) translateY(24px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.age-modal-icon {
    width: 108px;
    height: 108px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, var(--accent-red) 0%, #991B1B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: 700;
    font-family: var(--font-display);
    box-shadow: 0 0 60px rgba(239, 68, 68, 0.3);
    color: white;
}

.age-modal h2 {
    font-size: 34px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.03em;
}

.age-modal p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.age-modal-site {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-family: var(--font-display);
    letter-spacing: 0.1em;
}

.age-modal-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-modal-btn {
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-family: var(--font-body);
}

.age-modal-btn.confirm {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 28px rgba(212, 175, 55, 0.4);
}

.age-modal-btn.confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 38px rgba(212, 175, 55, 0.5);
}

.age-modal-btn.decline {
    background: transparent;
    border: 2px solid var(--border-gold);
    color: var(--text-secondary);
}

.age-modal-btn.decline:hover {
    background: rgba(212, 175, 55, 0.08);
    color: var(--primary-gold);
}

/* =========================================
   COOKIE CONSENT BAR
   ========================================= */

.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border-top: 1px solid var(--border-gold);
    padding: 22px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -12px 50px rgba(0, 0, 0, 0.5);
}

.cookie-bar.visible {
    transform: translateY(0);
}

.cookie-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.cookie-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    border: 1px solid var(--border-subtle);
}

.cookie-text h4 {
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.cookie-text p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary-gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    font-family: var(--font-body);
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--bg-dark);
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 22px rgba(212, 175, 55, 0.4);
}

.cookie-btn.settings {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.cookie-btn.settings:hover {
    border-color: var(--border-gold);
    color: var(--primary-gold);
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 8, 16, 0.88);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(8, 8, 16, 0.98);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
    border-bottom-color: var(--border-gold);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.logo-text span {
    color: var(--primary-gold);
}

.logo-text small {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-body);
    letter-spacing: 0.12em;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    padding: 10px 16px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition-fast);
    letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 8px;
    min-width: 210px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-card);
}

.nav-links .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* 18+ Under Menu Notice */
.adult-only-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-red);
    white-space: nowrap;
    font-family: var(--font-body);
}

.adult-only-notice svg {
    width: 16px;
    height: 16px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Mobile Nav */
@media (max-width: 900px) {
    .nav-main {
        display: none;
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        background: var(--bg-elevated);
        border-bottom: 1px solid var(--border-subtle);
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .nav-main.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 4px;
    }

    .nav-links a {
        display: block;
        padding: 14px 16px;
    }

    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: var(--bg-card);
        margin-top: 4px;
        margin-left: 16px;
    }

    .adult-only-notice {
        width: 100%;
        justify-content: center;
    }

    .mobile-toggle {
        display: flex;
    }
}

/* =========================================
   HERO SECTION
   ========================================= */

.hero {
    padding: 165px 0 110px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, transparent 68%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.hero .container { position: relative; z-index: 1; }

.hero-content {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 32px;
    animation: float 3.5s ease-in-out infinite;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: var(--font-body);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.hero h1 {
    font-size: clamp(38px, 5.5vw, 70px);
    font-weight: 700;
    margin-bottom: 26px;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 60%, var(--primary-amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 19px;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 44px;
    line-height: 1.75;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 28px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 45px rgba(212, 175, 55, 0.45);
    color: var(--bg-dark);
}

.btn-secondary {
    background: var(--bg-card);
    border: 2px solid var(--border-gold);
    color: var(--primary-gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
    color: var(--primary-gold-light);
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* =========================================
   SECTION SHARED STYLES
   ========================================= */

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 22px;
    font-family: var(--font-body);
}

.section-header h2 {
    font-size: clamp(30px, 3.8vw, 46px);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.75;
}

/* =========================================
   OPERATOR CARDS SECTION
   ========================================= */

.operators-section {
    padding: var(--section-padding) 0;
}

.operators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    gap: 32px;
}

.operator-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 28px;
    padding: 34px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.operator-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    opacity: 0;
    transition: var(--transition-fast);
}

.operator-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.operator-card:hover::before { opacity: 1; }

.operator-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.operator-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.operator-logo img {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid var(--border-subtle);
}

.operator-logo-info h3 {
    font-size: 22px;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 6px;
}

.operator-license {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--accent-green);
    font-weight: 600;
    font-family: var(--font-body);
}

.operator-license svg { width: 14px; height: 14px; }

.operator-rating { text-align: right; }

.rating-score {
    font-size: 38px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--primary-gold);
    line-height: 1;
}

.rating-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-body);
}

.operator-bonus {
    background: rgba(212, 175, 55, 0.07);
    border: 1px solid var(--border-gold);
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 26px;
    text-align: center;
}

.bonus-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.bonus-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: var(--font-display);
}

.operator-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 26px;
}

.feature-item {
    text-align: center;
    padding: 16px 8px;
    background: var(--bg-elevated);
    border-radius: 14px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-fast);
}

.feature-item:hover {
    border-color: var(--border-gold);
}

.feature-item svg {
    width: 26px;
    height: 26px;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.feature-item span {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
    font-weight: 500;
}

.operator-cta { display: flex; gap: 12px; }

.operator-cta .btn {
    flex: 1;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
}

/* =========================================
   COMPARISON TABLE
   ========================================= */

.comparison-section {
    padding: var(--section-padding) 0;
    background: var(--bg-card);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 18px;
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
}

.comparison-table th,
.comparison-table td {
    padding: 20px 26px;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
    background: var(--bg-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.comparison-table tbody tr { transition: var(--transition-fast); }

.comparison-table tbody tr:hover { background: var(--bg-card-hover); }

.comparison-table tbody tr:last-child td { border-bottom: none; }

.table-operator {
    display: flex;
    align-items: center;
    gap: 14px;
}

.table-operator img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
}

.table-operator span { font-weight: 700; font-size: 16px; }

.table-rating { display: flex; align-items: center; gap: 10px; }

.table-rating .score {
    font-weight: 700;
    color: var(--primary-gold);
    font-size: 19px;
}

.table-rating .stars { color: var(--primary-gold); font-size: 14px; }

.table-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.table-badge.verified {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
}

.table-action .btn { padding: 10px 20px; font-size: 13px; }

/* =========================================
   SECURITY SECTION
   ========================================= */

.security-section { padding: var(--section-padding) 0; }

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.security-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 22px;
    padding: 36px;
    text-align: center;
    transition: var(--transition-smooth);
}

.security-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

.security-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
}

.security-icon svg {
    width: 38px;
    height: 38px;
    color: var(--primary-gold);
}

.security-card h3 {
    font-size: 20px;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 14px;
}

.security-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.65;
}

/* =========================================
   AVISO IMPORTANTE
   ========================================= */

.aviso-section { padding: 70px 0; }

.aviso-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 22px;
    padding: 44px;
    display: flex;
    align-items: flex-start;
    gap: 26px;
}

.aviso-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.aviso-icon svg {
    width: 30px;
    height: 30px;
    color: var(--accent-blue);
}

.aviso-content h3 {
    font-size: 22px;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--accent-blue);
}

.aviso-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.aviso-content p:last-child { margin-bottom: 0; }

.aviso-content strong { color: var(--text-primary); }

.helpline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(99, 102, 241, 0.15);
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 700;
    color: var(--accent-blue);
    font-family: var(--font-body);
    border: 1px solid rgba(99, 102, 241, 0.25);
}

/* =========================================
   SLOT MACHINE SECTION (Simulador)
   ========================================= */

.slot-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.slot-machine-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.slot-machine {
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border: 2px solid var(--border-gold);
    border-radius: 32px;
    padding: 40px;
    box-shadow: var(--shadow-gold), var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.slot-machine::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold-dark), var(--primary-gold-light), var(--primary-gold-dark));
}

.slot-display {
    background: var(--bg-dark);
    border: 2px solid var(--border-gold);
    border-radius: 20px;
    padding: 30px 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    min-height: 140px;
}

.slot-display::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.slot-display::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(0deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.slot-reel {
    flex: 1;
    height: 100px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    transition: all 0.1s linear;
    position: relative;
    overflow: hidden;
}

.slot-reel.spinning {
    animation: reel-spin 0.1s linear infinite;
}

@keyframes reel-spin {
    0% { transform: translateY(0); }
    25% { transform: translateY(-4px); }
    75% { transform: translateY(4px); }
    100% { transform: translateY(0); }
}

.slot-reel-divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--border-gold), transparent);
    flex-shrink: 0;
}

.slot-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 16px;
}

.slot-stat {
    flex: 1;
    text-align: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 16px 12px;
}

.slot-stat-value {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 6px;
}

.slot-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.slot-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.slot-btn {
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    letter-spacing: 0.04em;
}

.slot-btn.spin {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 28px rgba(212, 175, 55, 0.35);
    min-width: 180px;
}

.slot-btn.spin:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.5);
}

.slot-btn.spin:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.slot-btn.reset {
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    color: var(--text-secondary);
}

.slot-btn.reset:hover {
    border-color: var(--border-gold);
    color: var(--primary-gold);
}

.slot-message {
    text-align: center;
    min-height: 40px;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: var(--font-display);
    opacity: 0;
    transition: opacity 0.3s ease;
    letter-spacing: 0.05em;
}

.slot-message.visible { opacity: 1; }

.slot-message.win { color: var(--accent-green); }
.slot-message.jackpot {
    color: var(--primary-gold-light);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    animation: jackpot-flash 0.4s ease infinite alternate;
}

@keyframes jackpot-flash {
    from { text-shadow: 0 0 20px rgba(212, 175, 55, 0.6); }
    to { text-shadow: 0 0 40px rgba(212, 175, 55, 1), 0 0 60px rgba(212, 175, 55, 0.5); }
}

.slot-disclaimer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Paytable */
.slot-paytable {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 28px;
    margin-top: 28px;
}

.slot-paytable h4 {
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.paytable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.paytable-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
}

.paytable-symbols { font-size: 22px; letter-spacing: 4px; }

.paytable-prize {
    font-weight: 700;
    color: var(--primary-gold);
    font-family: var(--font-body);
    font-size: 13px;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    padding-top: 80px;
}

/* Responsible Gaming Block */
.responsible-gaming {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.07) 0%, rgba(212, 175, 55, 0.04) 100%);
    border: 1px solid rgba(239, 68, 68, 0.22);
    border-radius: 22px;
    padding: 44px;
    margin-bottom: 60px;
}

.responsible-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.responsible-header svg {
    width: 34px;
    height: 34px;
    color: var(--accent-red);
    flex-shrink: 0;
}

.responsible-header h3 {
    font-size: 24px;
    font-family: var(--font-body);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.responsible-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 32px;
}

.responsible-text a {
    color: var(--primary-gold);
    text-decoration: underline;
}

.responsible-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.responsible-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-dark);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-fast);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.responsible-logo:hover {
    border-color: var(--border-gold);
    color: var(--primary-gold);
}

.responsible-logo img {
    height: 30px;
    width: auto;
}

/* Footer Main */
.footer-main {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.75;
    margin-top: 22px;
    max-width: 320px;
}

.footer-column h4 {
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links {
    list-style: none;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: var(--text-secondary);
    font-size: 15px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 8px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 14px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--primary-gold);
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }

.footer-legal a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-legal a:hover { color: var(--primary-gold); }

/* =========================================
   REVIEW PAGE STYLES
   ========================================= */

.review-hero {
    padding: 165px 0 90px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    position: relative;
}

.review-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 55%);
    pointer-events: none;
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
}

.review-logo {
    width: 130px;
    height: 130px;
    border-radius: 28px;
    overflow: hidden;
    border: 2px solid var(--border-gold);
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.review-logo img { width: 100%; height: 100%; object-fit: cover; }

.review-info {
    flex: 1;
    min-width: 300px;
}

.review-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-body);
}

.badge-verified {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
}

.badge-license {
    background: rgba(99, 102, 241, 0.15);
    color: var(--accent-blue);
}

.review-info h1 {
    font-size: clamp(36px, 5vw, 58px);
    margin-bottom: 14px;
}

.review-tagline {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-family: var(--font-body);
}

.review-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.stat-item { text-align: center; }

.stat-value {
    font-size: 34px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--primary-gold);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 5px;
    font-family: var(--font-body);
}

.review-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.review-content { padding: var(--section-padding) 0; }

.review-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 44px;
}

.review-main { min-width: 0; }

.review-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 22px;
    padding: 30px;
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-size: 18px;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-subtle);
}

.sidebar-rating {
    text-align: center;
    padding: 24px;
}

.sidebar-rating .score {
    font-size: 68px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--primary-gold);
    line-height: 1;
}

.sidebar-rating .label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 10px;
    font-family: var(--font-body);
}

/* Content Blocks */
.content-block {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 22px;
    padding: 36px;
    margin-bottom: 30px;
}

.content-block h2 {
    font-size: 24px;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-block h2 svg {
    width: 26px;
    height: 26px;
    color: var(--primary-gold);
}

.content-block p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.content-block ul { list-style: none; padding: 0; }

.content-block li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 16px;
}

.content-block li:last-child { border-bottom: none; }

.content-block li svg {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 3px;
}

.content-block li.con svg { color: var(--accent-red); }

/* Pros/Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pros-list, .cons-list {
    background: var(--bg-elevated);
    border-radius: 18px;
    padding: 26px;
}

.pros-list h4, .cons-list h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    font-family: var(--font-body);
}

.pros-list h4 { color: var(--accent-green); }
.cons-list h4 { color: var(--accent-red); }

/* Payment Methods */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-elevated);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    font-size: 14px;
    color: var(--text-secondary);
}

/* =========================================
   INNER PAGES (Guía, Comparador, etc.)
   ========================================= */

.inner-hero {
    padding: 165px 0 80px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    position: relative;
    text-align: center;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.inner-hero .container { position: relative; }

.inner-hero h1 {
    font-size: clamp(36px, 5vw, 60px);
    margin-bottom: 22px;
}

.inner-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.75;
}

.inner-content {
    padding: var(--section-padding) 0;
}

.inner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 22px;
    padding: 34px;
    transition: var(--transition-smooth);
}

.info-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
}

.info-card-icon {
    width: 68px;
    height: 68px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border: 1px solid var(--border-subtle);
}

.info-card-icon svg {
    width: 34px;
    height: 34px;
    color: var(--primary-gold);
}

.info-card h3 {
    font-size: 20px;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 14px;
}

.info-card p, .info-card ul {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.info-card ul { list-style: disc; padding-left: 20px; }

.info-card ul li { margin-bottom: 8px; }

/* Full width card */
.info-card.full-width {
    grid-column: 1 / -1;
}

/* FAQ / Accordion */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover { border-color: var(--border-gold); }

.faq-question {
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    font-size: 17px;
    gap: 16px;
    user-select: none;
}

.faq-question svg {
    width: 22px;
    height: 22px;
    color: var(--primary-gold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 30px 28px;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--section-padding) 0;
}

.legal-content h2 {
    font-size: 26px;
    font-family: var(--font-body);
    font-weight: 700;
    margin: 40px 0 18px;
    color: var(--primary-gold);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-content ul li { margin-bottom: 10px; }

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 40px;
}

.form-group { margin-bottom: 22px; }

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 14px 18px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: var(--font-body);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--border-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.contact-info-block { display: flex; flex-direction: column; gap: 24px; }

.contact-info-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-fast);
}

.contact-info-item:hover { border-color: var(--border-gold); }

.contact-info-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-gold);
}

.contact-info-text h4 {
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-info-text p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Sobre Nosotros */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    margin-bottom: 22px;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.value-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
}

.value-icon { font-size: 40px; margin-bottom: 16px; }

.value-card h4 {
    font-size: 17px;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
    .review-grid { grid-template-columns: 1fr; }
    .review-sidebar { position: static; }
    .inner-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .operators-grid { grid-template-columns: 1fr; }
    .comparison-table { display: block; overflow-x: auto; }
    .footer-main { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .aviso-box { flex-direction: column; }
    .pros-cons { grid-template-columns: 1fr; }
    .review-header { flex-direction: column; align-items: center; text-align: center; }
    .review-stats { justify-content: center; }
    .review-cta { justify-content: center; }
    .age-badge { top: auto; bottom: 80px; right: 12px; }
    .cookie-bar .container { flex-direction: column; text-align: center; }
    .cookie-content { flex-direction: column; }
    .slot-controls { flex-direction: column; align-items: center; }
    .paytable-grid { grid-template-columns: 1fr; }
}

/* =========================================
   UTILITIES
   ========================================= */

.text-gold { color: var(--primary-gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.page-pad { padding-top: 82px; }
