/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-black: #0a0a0a;
    --bg-dark: #111111;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --bg-surface: #161616;
    --accent-gold: #d4a634;
    --accent-gold-light: #f0c850;
    --accent-gold-glow: rgba(212, 166, 52, 0.15);
    --accent-red: #c41e3a;
    --accent-red-light: #e63950;
    --accent-red-glow: rgba(196, 30, 58, 0.2);
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-gray: #8a8a8a;
    --text-muted: #5a5a5a;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(212, 166, 52, 0.25);
    --border-red: rgba(196, 30, 58, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-black);
}

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

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.age-modal-content {
    background: linear-gradient(145deg, #1e1e1e, #141414);
    border: 2px solid var(--accent-gold);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 60px rgba(212, 166, 52, 0.25), 0 0 120px rgba(212, 166, 52, 0.1);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.age-modal.hidden .age-modal-content {
    transform: scale(0.9);
}

.age-modal-header h2 {
    color: var(--accent-gold);
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.age-modal-body p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.responsible-gaming-text {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 20px;
}

.responsible-gaming-text a {
    color: var(--accent-red-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.responsible-gaming-text a:hover {
    color: var(--accent-gold);
}

.age-modal-footer {
    margin-top: 30px;
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    color: var(--text-white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid var(--border-subtle);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--border-gold);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo h1 {
    color: var(--accent-gold);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 0 20px var(--accent-gold-glow);
}

.nav {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-gold));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--accent-gold);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--bg-black);
    z-index: 2000;
    transition: left 0.3s ease;
    padding: 20px;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-gold);
}

.mobile-nav-header h3 {
    color: var(--accent-gold);
    font-size: 20px;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--accent-red-light);
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-nav-close:hover {
    color: var(--accent-gold);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--accent-gold);
    padding-left: 10px;
}

/* Hero Section */
.hero {
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(20, 20, 20, 0.95) 100%),
        url("images/High-end casino scene featuring.webp") center/cover no-repeat;
    background-blend-mode: overlay;
    color: var(--text-white);
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.hero-info {
    background: rgba(212, 166, 52, 0.08);
    border: 1px solid var(--border-gold);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.responsible-link {
    color: var(--accent-red-light);
    text-decoration: none;
    font-weight: 600;
}

.responsible-link:hover {
    color: var(--accent-gold);
}

/* Sections */
.section {
    padding: 80px 0;
}

/* Section Backgrounds */
.top-casinos {
    padding-top: 120px;
    background:
        radial-gradient(ellipse at top left, rgba(212, 166, 52, 0.2), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(196, 30, 58, 0.25), transparent 50%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.85) 100%),
        url("images/black-gold-red-roulette-premium.webp") center/cover no-repeat;
    background-blend-mode: normal, normal, normal, normal;
}

.our-games {
    background:
        radial-gradient(ellipse at center, rgba(196, 30, 58, 0.12), transparent 60%),
        linear-gradient(135deg, rgba(17, 17, 17, 0.88) 0%, rgba(10, 10, 10, 0.9) 100%),
        url("images/golden-reels-red-glow.webp") center/cover no-repeat;
    background-blend-mode: normal, normal, normal;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.our-games .game-card {
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.our-games .game-card:hover {
    border-color: var(--accent-red);
    box-shadow: 0 15px 50px rgba(196, 30, 58, 0.15), 0 10px 40px rgba(0, 0, 0, 0.4);
}

.our-games .section-title {
    color: var(--text-white);
}

.our-games .game-card h3 {
    color: var(--accent-gold);
}

.our-games .game-card p {
    color: var(--text-gray);
}

.responsible-gaming {
    background:
        radial-gradient(ellipse at top right, rgba(212, 166, 52, 0.2), transparent 50%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.9) 100%),
        url("images/midnight-casino-red-highlight.webp") center/cover no-repeat;
    background-blend-mode: normal, normal, normal;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-gold));
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Casino Cards */
.casinos-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.casino-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-subtle);
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 166, 52, 0.1), 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--border-gold);
}

.casino-logo {
    position: relative;
    flex-shrink: 0;
}

.casino-logo-img {
    width: 180px;
    /* height: 100px; */
    object-fit: contain;
    display: block;
}

.casino-logo-img-betway-black {
    filter: grayscale(100%) brightness(0);
}

.rating-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, var(--accent-red), #8b1a2b);
    color: var(--text-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.4);
}

.casino-info {
    flex: 1;
}

.casino-name {
    font-size: 24px;
    color: var(--text-white);
    margin-bottom: 8px;
    font-weight: 700;
}

.casino-bonus {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.bonus-subtext {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 14px;
}

.bonus-terms {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.bonus-terms h4 {
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-terms p {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.6;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.rating-stars {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 18px;
}

.rating-text {
    color: var(--text-gray);
    font-size: 14px;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: #0a0a0a;
    box-shadow: 0 4px 15px rgba(212, 166, 52, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 166, 52, 0.4);
}

.btn-cta {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    color: var(--text-white);
    font-size: 16px;
    padding: 14px 40px;
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 14px;
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--accent-red-light), var(--accent-red));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.45);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-card p {
    color: var(--text-gray);
}

.disclaimer-text {
    background: rgba(212, 166, 52, 0.08);
    border: 1px solid var(--border-gold);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    color: var(--text-gray);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.game-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.game-card h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 22px;
}

.game-card p {
    color: var(--text-gray);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-gold);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-surface);
}

.faq-toggle {
    font-size: 24px;
    color: var(--accent-red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent-gold);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: var(--text-gray);
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    margin-bottom: 5px;
}

/* Showcase Banner */
.showcase-banner {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}

.showcase-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--accent-red-glow);
}

.showcase-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.showcase-image-wrapper:hover .showcase-image {
    transform: scale(1.03);
}

.showcase-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15) 0%, rgba(212, 166, 52, 0.1) 100%);
    pointer-events: none;
}

.showcase-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-red), #8b1a2b);
    color: var(--text-white);
    font-weight: 800;
    font-size: 16px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.5);
}

.showcase-text {
    padding: 10px 0;
}

.showcase-label {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 5px 14px;
    background: var(--accent-gold-glow);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
}

.showcase-text h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.showcase-text p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.showcase-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

.showcase-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* How It Works */
.how-it-works {
    background:
        radial-gradient(ellipse at bottom left, var(--accent-red-glow), transparent 50%),
        radial-gradient(ellipse at top right, var(--accent-gold-glow), transparent 50%),
        var(--bg-black);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-gold), var(--accent-red));
    opacity: 0.3;
    z-index: 0;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: 0 15px 40px rgba(212, 166, 52, 0.08);
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.step-card h3 {
    color: var(--text-white);
    font-size: 20px;
    margin-bottom: 15px;
}

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

/* Responsible Gaming */
.responsible-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.responsible-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.responsible-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-3px);
}

.responsible-card h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 18px;
}

.responsible-card p {
    color: var(--text-gray);
}

.help-resources {
    background: var(--bg-card);
    border: 1px solid var(--accent-red);
    color: var(--text-light);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.1);
}

.help-resources h3 {
    margin-bottom: 20px;
    color: var(--accent-red-light);
    font-size: 22px;
}

.help-resources p {
    color: var(--text-gray);
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.help-links a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 24px;
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.help-links a:hover {
    background: var(--accent-gold);
    color: #0a0a0a;
    box-shadow: 0 4px 20px rgba(212, 166, 52, 0.3);
}

/* Footer */
.footer {
    background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%),
        url("images/black-gold-casino-energy.webp") top center/cover no-repeat;
    background-blend-mode: normal, normal;
    color: var(--text-light);
    padding: 70px 0 30px;
    border-top: 1px solid var(--border-gold);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), var(--accent-red), var(--accent-gold), transparent);
}

/* Footer Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about {
    text-align: left;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.footer-logo span {
    color: var(--accent-gold);
}

.footer-about p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-contact a {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-contact a:hover {
    background: var(--accent-gold);
    color: #0a0a0a;
}

.footer-col {
    text-align: left;
}

.footer-col h4 {
    color: var(--accent-gold);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-red);
    border-radius: 2px;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-col a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-nav-col a:hover {
    color: var(--accent-gold);
    padding-left: 6px;
}

/* Footer Banners */
.footer-banners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 25px 0;
    margin-bottom: 30px;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    flex-wrap: wrap;
}

.banner-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 55px;
    background: transparent;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-light);
    border: none;
    padding: 8px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.6;
}

.banner-item:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.banner-icon {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.banner-icon-no-filter {
    filter: none;
}

/* Footer Disclaimer */
.footer-disclaimer {
    background: rgba(196, 30, 58, 0.06);
    border-left: 3px solid var(--accent-red);
    padding: 18px 25px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 30px;
    color: var(--text-gray);
    font-size: 13px;
    text-align: left;
}

.footer-disclaimer a {
    color: var(--accent-red-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-disclaimer a:hover {
    color: var(--accent-gold);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--accent-gold);
    text-decoration: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(20px);
    color: var(--text-light);
    padding: 20px;
    z-index: 1500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid var(--border-gold);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--text-gray);
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--accent-gold-light);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-red), #8b1a2b);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--accent-red-light), var(--accent-red));
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.45);
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
}

.legal-content h1 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.legal-content h2 {
    color: var(--text-white);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h3 {
    color: var(--accent-gold);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--accent-red-light);
    text-decoration: none;
}

.legal-content a:hover {
    color: var(--accent-gold);
}

.legal-content ul,
.legal-content ol {
    color: var(--text-gray);
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-content li {
    margin-bottom: 5px;
}

.last-updated {
    color: var(--text-muted);
}

.legal-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.back-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--accent-gold-light);
}

.help-organizations {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.help-org {
    background: var(--bg-surface);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
}

.help-org h3 {
    color: var(--accent-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .casino-card {
        flex-direction: column;
        text-align: center;
    }
    
    .casino-logo {
        margin: 0 auto 20px;
    }
    
    .features-grid,
    .games-grid,
    .responsible-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .showcase-image {
        height: 280px;
    }

    .showcase-text h2 {
        font-size: 28px;
    }

    .showcase-stats {
        justify-content: center;
    }

    .showcase-text {
        text-align: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps-grid::before {
        display: none;
    }

    .help-links {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-about {
        text-align: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-nav-col {
        align-items: center;
    }

    .footer-nav-col a:hover {
        padding-left: 0;
    }

    .footer-banners {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
        gap: 10px;
        padding: 20px 0;
    }

    .banner-item {
        width: 100px;
        height: 45px;
    }

    .footer-disclaimer {
        text-align: center;
        border-left: none;
        border-top: 3px solid var(--accent-red);
        border-radius: 0 0 8px 8px;
    }
    
    .age-modal-content {
        padding: 30px 20px;
    }
    
    .age-modal-header h2 {
        font-size: 24px;
    }

    .legal-content {
        margin: 20px auto;
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .casino-card {
        padding: 20px;
    }
    
    .feature-card,
    .game-card,
    .responsible-card {
        padding: 25px;
    }
    
    .help-resources {
        padding: 30px 20px;
    }

    .showcase-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .showcase-text h2 {
        font-size: 24px;
    }

    .showcase-image {
        height: 220px;
    }

    .step-card {
        padding: 30px 20px;
    }

    .step-number {
        font-size: 36px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--accent-gold);
}

.text-red {
    color: var(--accent-red);
}

.bg-black {
    background: var(--bg-black);
}

.bg-gold {
    background: var(--accent-gold);
}

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
