:root {
    --primary: #006600;
    --secondary: #FF0000;
    --accent: #FFD700;
    --dark: #1A1A1A;
    --light: #FFFFFF;
}

.age-verify {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

.age-verify::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
}

.age-verify .container {
    position: relative;
}

.age-verify-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.age-verify-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.age-verify-icon {
    font-size: 1.5rem;
}

.age-verify-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-verify-btn {
    padding: 0.5rem 2rem;
    border: 2px solid var(--light);
    border-radius: 25px;
    background: transparent;
    color: var(--light);
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 120px;
    cursor: pointer;
}

.age-verify-btn.yes {
    background: var(--light);
    color: var(--primary);
}

.age-verify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.age-verify-btn.yes:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

.age-verify-btn.no:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .age-verify {
        padding: 25rem 0;
    }
    
    .age-verify-content {
        gap: 1rem;
    }
    
    .age-verify-text {
        font-size: 0.9rem;
    }
    
    .age-verify-icon {
        font-size: 1.2rem;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: var(--light);
}

.topbar {
    background-color: #000;
    color: var(--light);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.topbar span {
    display: inline-block;
}

.navbar {
    background-color: var(--dark);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar-brand {
    padding: 0;
}

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--light);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.hero h1 {
    margin-bottom: 2rem;
    position: relative;
}

.hero .lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.update-date {
    font-size: 0.9rem;
    color: var(--accent);
    margin-top: 2rem;
    position: relative;
}

.listings {
    background-color: var(--dark);
}

.offer-card {
    background-color: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255,255,255,0.08);
}

.bonus-box {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    padding: 1.5rem;
    border-radius: 8px;
    color: var(--light);
}

.bonus-box h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.pros-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li {
    margin-bottom: 0.5rem;
    color: var(--light);
}

.score-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.score-circle span {
    color: var(--light);
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-visit {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-visit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.disclaimer-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    .topbar span {
        margin: 0.25rem 0;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .lead {
        font-size: 1.1rem;
    }

    .offer-card {
        padding: 1.5rem;
    }

    .bonus-box {
        padding: 1rem;
    }

    .score-circle {
        width: 50px;
        height: 50px;
        margin: 1rem auto;
    }

    .btn-visit {
        width: 100%;
        margin-top: 1rem;
    }
}

.content-sections {
    background-color: var(--dark);
}

.content-block {
    background-color: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.content-block:hover {
    background-color: rgba(255,255,255,0.08);
}

.section-title {
    color: var(--light);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-block p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.tips-list ul, .responsible-gaming ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.tips-list li, .responsible-gaming li {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.tips-list li:before, .responsible-gaming li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

@media (max-width: 768px) {
    .content-block {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .content-block p {
        font-size: 1rem;
    }
}

.footer {
    background-color: #000;
    color: var(--light);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer img {
    max-height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer a:hover img {
    opacity: 1;
}

.footer .disclaimer-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.footer-links {
    margin: 2rem 0;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--light);
}

.footer-links a:after {
    content: '|';
    color: rgba(255,255,255,0.3);
    margin: 0 10px;
}

.footer-links a:last-child:after {
    display: none;
}

.copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer img {
        max-height: 30px;
    }

    .footer-links a {
        display: block;
        margin: 10px 0;
    }

    .footer-links a:after {
        display: none;
    }
}
