/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #C9A84C;
    --gold-light: #F0CC6B;
    --gold-dark: #9A7A2E;
    --dark: #0D0D0D;
    --dark-2: #1A1208;
    --dark-3: #231A0A;
    --dark-card: #1E1608;
    --red: #8B0000;
    --red-light: #C0392B;
    --text-light: #F5E6C8;
    --text-muted: #9A8A6A;
    --border-gold: rgba(201, 168, 76, 0.3);
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--dark);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--gold);
    text-decoration: none;
}

a:hover {
    color: var(--gold-light);
}

/* ===== AGE WARNING BAR ===== */
.age-warning-bar {
    background: var(--red);
    color: #fff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.age-warning-bar a {
    color: #FFD700;
    font-weight: 700;
    text-decoration: underline;
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(135deg, #0A0800 0%, #1C1200 50%, #0A0800 100%);
    border-bottom: 2px solid var(--gold-dark);
    padding: 16px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.logo-sub {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 2px;
}

.header-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.badge-ukgc {
    background: rgba(0, 80, 40, 0.6);
    border: 1px solid #2ECC71;
    color: #2ECC71;
}

.badge-ssl {
    background: rgba(0, 50, 80, 0.6);
    border: 1px solid #3498DB;
    color: #3498DB;
}

.badge-18 {
    background: var(--red);
    border: 1px solid #E74C3C;
    color: #fff;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: 
        linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(10,6,0,0.85) 100%),
        radial-gradient(ellipse at center, #2A1A00 0%, #0A0500 70%);
    padding: 80px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-gold);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 0, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge-top {
    display: inline-block;
    background: linear-gradient(135deg, var(--red) 0%, #6B0000 100%);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold-light);
    padding: 8px 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border-radius: 2px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(32px, 6vw, 60px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 36px;
    color: #fff;
}

.gold-text {
    color: var(--gold);
    text-shadow: 0 0 30px rgba(201, 168, 76, 0.5);
}

/* ===== BONUS BOX ===== */
.hero-bonus-box {
    background: linear-gradient(135deg, rgba(30, 20, 5, 0.95) 0%, rgba(20, 12, 0, 0.95) 100%);
    border: 2px solid var(--gold-dark);
    border-radius: 8px;
    padding: 32px 24px;
    margin: 0 auto 36px;
    max-width: 700px;
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.15), inset 0 0 40px rgba(0,0,0,0.3);
}

.bonus-amount {
    font-family: 'Cinzel', serif;
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.bonus-split {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.bonus-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonus-num {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-light);
}

.bonus-label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.bonus-divider {
    font-size: 24px;
    color: var(--gold-dark);
    font-weight: 300;
}

/* ===== CTA BUTTON ===== */
.cta-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #D4AF37 0%, #C9A84C 40%, #8B6914 100%);
    color: #1A0800;
    padding: 18px 48px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4), 0 2px 4px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 215, 0, 0.5);
    margin-bottom: 16px;
    cursor: pointer;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #F0CC6B 0%, #D4AF37 40%, #9A7A2E 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5), 0 4px 8px rgba(0,0,0,0.4);
    color: #0A0500;
}

.cta-btn-text {
    font-size: 18px;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
}

.cta-btn-sub {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 4px;
    font-weight: 400;
}

.cta-btn--dark {
    background: linear-gradient(135deg, #C9A84C 0%, #9A7A2E 100%);
}

.cta-btn--outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold-dark);
    box-shadow: none;
}

.cta-btn--outline:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold-light);
    transform: translateY(-2px);
    border-color: var(--gold);
}

.hero-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

.hero-disclaimer a {
    color: var(--text-muted);
    text-decoration: underline;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 16px auto 0;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0A0500 0%, #110A00 100%);
}

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

.trust-card {
    background: linear-gradient(135deg, rgba(30, 22, 8, 0.8) 0%, rgba(20, 14, 2, 0.9) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.trust-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-3px);
}

.trust-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.trust-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.trust-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== GAMES SECTION ===== */
.games-section {
    padding: 80px 0;
    background: var(--dark-2);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.game-card {
    background: linear-gradient(135deg, #1E1608 0%, #120E04 100%);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-dark);
}

.game-thumb {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.game-thumb.slots {
    background: linear-gradient(135deg, #1A0A3E 0%, #0D0520 100%);
}
.game-thumb.slots::before { content: '🎰'; }

.game-thumb.live {
    background: linear-gradient(135deg, #1A0808 0%, #0D0404 100%);
}
.game-thumb.live::before { content: '🃏'; }

.game-thumb.blackjack {
    background: linear-gradient(135deg, #081A0A 0%, #040D05 100%);
}
.game-thumb.blackjack::before { content: '♠'; font-size: 70px; }

.game-thumb.roulette {
    background: linear-gradient(135deg, #1A0808 0%, #0D0404 100%);
}
.game-thumb.roulette::before { content: '🎡'; }

.game-name {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 15px;
    padding: 12px 16px 4px;
    font-weight: 600;
}

.game-sub {
    color: var(--text-muted);
    font-size: 13px;
    padding: 0 16px 16px;
}

/* ===== STEPS SECTION ===== */
.steps-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #110A00 0%, #0A0500 100%);
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.step {
    text-align: center;
    max-width: 240px;
    flex: 1;
    min-width: 180px;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #0A0500;
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.step h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 10px;
}

.step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

.step-arrow {
    font-size: 28px;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.steps-cta {
    text-align: center;
}

/* ===== RESPONSIBLE GAMBLING ===== */
.responsible-section {
    padding: 60px 0;
    background: #0A0A0A;
    border-top: 1px solid rgba(139, 0, 0, 0.4);
    border-bottom: 1px solid rgba(139, 0, 0, 0.4);
}

.responsible-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.responsible-box h2 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: 16px;
}

.responsible-box p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.responsible-links a {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: #ccc;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}

.responsible-links a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.rg-helpline {
    font-size: 14px;
    color: #ccc;
}

.rg-helpline strong {
    color: #fff;
}

/* ===== FOOTER ===== */
.footer {
    background: #070501;
    border-top: 2px solid var(--gold-dark);
    padding: 48px 0 32px;
}

.footer-logos {
    text-align: center;
    margin-bottom: 24px;
}

.footer-logo-text {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--gold-dark);
    letter-spacing: 2px;
}

.footer-compliance {
    max-width: 800px;
    margin: 0 auto 32px;
}

.footer-compliance p {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-terms {
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    padding: 20px 24px;
    max-width: 800px;
    margin: 0 auto 32px;
}

.footer-terms h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold-dark);
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.footer-terms p {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-age {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.age-badge {
    background: var(--red);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #E74C3C;
}

.begamble-badge {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 4px;
}

.begamble-badge a {
    color: #ccc;
    font-size: 14px;
    font-weight: 700;
}

.begamble-badge a:hover {
    color: #fff;
}

.footer-copyright {
    text-align: center;
    font-size: 11px;
    color: #4A3A2A;
    margin-top: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        padding: 48px 0;
    }

    .bonus-split {
        gap: 10px;
    }

    .bonus-num {
        font-size: 22px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .header-inner {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cta-btn {
        padding: 16px 28px;
    }

    .cta-btn-text {
        font-size: 16px;
    }

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

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