:root {
    --primary-red: #FF0000;
    --primary-green: #006600;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --gradient-bg: linear-gradient(135deg, var(--primary-red) 0%, #990000 100%);
}

.age-gate {
    background: var(--gradient-bg);
    padding: 2rem 0;
    color: var(--text-light);
}

.age-gate-content {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.age-gate-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.age-gate h2 {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.age-gate p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.warning-text {
    color: var(--text-light) !important;
    font-weight: 600;
    font-size: 1.1rem !important;
    border-left: 3px solid var(--text-light);
    padding-left: 1rem;
    margin: 1rem 0;
}

.age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.btn-confirm {
    background: var(--primary-green);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s;
    width: 100%;
}

.btn-confirm:hover {
    transform: translateY(-2px);
    background: var(--primary-green);
    color: var(--text-light);
}

.btn-leave {
    background: rgba(0,0,0,0.3);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s;
    text-decoration: none;
    width: 100%;
    text-align: center;
}

.btn-leave:hover {
    transform: translateY(-2px);
    background: rgba(0,0,0,0.4);
    color: var(--text-light);
}

.age-gate-disclaimer {
    text-align: center;
}

.age-gate-disclaimer p {
    color: var(--text-light);
    font-size: 0.8rem !important;
    margin: 0;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .age-gate {
        padding: 13rem 0;
    }

    .age-gate-content {
        padding: 1.5rem;
    }

    .age-gate h2 {
        font-size: 1.4rem;
    }

    .age-gate-text {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .age-gate-icon {
        font-size: 2.5rem;
    }
}

.page-content {
    padding: 4rem 0;
    background: #f8f9fa;
    min-height: 70vh;
}

.content-card {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.content-card h1 {
    color: var(--primary-red);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.content-card section {
    margin-bottom: 2.5rem;
}

.content-card section:last-child {
    margin-bottom: 0;
}

.content-card h2 {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.content-card p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-card ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-card ul li {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .page-content {
        padding: 2rem 0;
    }

    .content-card {
        padding: 1.5rem;
    }

    .content-card h1 {
        font-size: 2rem;
    }

    .content-card h2 {
        font-size: 1.3rem;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.topbar {
    background: var(--gradient-bg);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.navbar {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    margin: 0;
}

.hero-section {
    background: linear-gradient(135deg, #006600 0%, #004400 100%);
    color: var(--text-light);
    padding: 5rem 0;
    position: relative;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.last-update {
    font-size: 0.9rem;
    opacity: 0.8;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    display: inline-block;
}

.listing-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.listing-row {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.casino-logo {
    max-height: 60px;
    object-fit: contain;
}

.bonus-box {
    text-align: center;
    background: rgba(0,102,0,0.05);
    padding: 1rem;
    border-radius: 8px;
}

.bonus-amount {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.bonus-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.pros-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.pros-list li:before {
    content: "✓";
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.rating-box {
    text-align: center;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.score {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 0.5rem;
}

.btn-visit {
    background: var(--gradient-bg);
    color: var(--text-light);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    width: 100%;
    transition: transform 0.2s;
}

.btn-visit:hover {
    transform: translateY(-2px);
    color: var(--text-light);
}

.disclaimer-box {
    background: rgba(0,0,0,0.03);
    padding: 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #666;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .topbar {
        font-size: 0.8rem;
    }

    .listing-row {
        padding: 1rem;
    }

    .bonus-box, .rating-box {
        margin: 1rem 0;
    }

    .pros-list {
        margin: 1rem 0;
    }

    .btn-visit {
        margin: 1rem 0;
    }
}

.text-sections {
    padding: 4rem 0;
    background: #fff;
}

.content-section {
    margin-bottom: 3rem;
    padding: 2rem;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    color: var(--primary-green);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.content-section p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-section p:last-child {
    margin-bottom: 0;
}

.selection-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.selection-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.8rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.selection-list li:before {
    content: "→";
    color: var(--primary-red);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.footer {
    background: #1A1A1A;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-images {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-images img {
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.5);
    transition: filter 0.3s;
}

.footer-images a:hover img {
    filter: grayscale(0) brightness(1);
}

.footer-disclaimer {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-disclaimer p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    text-align: center;
    margin: 0;
}

.footer-links {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-nav li a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-nav li a:hover {
    color: var(--primary-red);
}

.footer-copyright {
    padding-top: 2rem;
}

.footer-copyright p {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-nav {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .footer-images img {
        max-height: 30px;
    }
}
