:root {
    --primary-color: #2E3192;
    --secondary-color: #00A859;
    --accent-color: #FF0000;
    --text-color: #333333;
    --light-bg: #F8F9FA;
}

.age-verification {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px 0;
    position: relative;
    z-index: 1000;
}

.age-verification-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.age-icon {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    background: rgba(255,255,255,0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.age-verification h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.age-verification p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-confirm, .btn-deny {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-confirm {
    background: white;
    color: var(--primary-color);
}

.btn-deny {
    background: rgba(255,255,255,0.1);
    color: white;
}

.btn-confirm:hover, .btn-deny:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .age-verification {
        padding: 250px 0;
    }

    .age-verification-content {
        padding: 15px;
    }

    .age-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
        line-height: 60px;
    }

    .age-verification h2 {
        font-size: 1.5rem;
    }

    .age-verification p {
        font-size: 1rem;
    }

    .age-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-confirm, .btn-deny {
        width: 100%;
        padding: 10px 20px;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.page-content {
    padding: 60px 0;
    min-height: 600px;
}

.page-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.content-section {
    margin-bottom: 40px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-section p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .page-content {
        padding: 40px 0;
    }

    .page-content h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .content-section {
        margin-bottom: 30px;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section p {
        font-size: 1rem;
    }
}

.topbar {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.age-disclaimer, .srij-disclaimer {
    font-weight: 500;
}

.navbar {
    padding: 20px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    height: 50px;
    width: auto;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    color: white;
    margin-bottom: 50px;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.update-date {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.casino-listings {
    padding: 50px 0;
    background-color: var(--light-bg);
}

.casino-offer {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.casino-offer:hover {
    transform: translateY(-5px);
}

.casino-logo {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.bonus-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.bonus-info p {
    color: var(--text-color);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.pros-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li {
    padding: 3px 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

.pros-list li:before {
    content: "✓";
    color: var(--secondary-color);
    margin-right: 8px;
    font-weight: bold;
}

.casino-rating {
    text-align: center;
}

.score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.btn-visit {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    width: 100%;
    transition: opacity 0.3s ease;
}

.btn-visit:hover {
    opacity: 0.9;
    color: white;
}

.disclaimer-row {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.disclaimer-row p {
    color: #666;
    font-size: 0.8rem;
    margin: 0;
    text-align: center;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .topbar {
        font-size: 12px;
    }

    .casino-offer {
        padding: 15px;
    }

    .casino-offer .row > div {
        margin-bottom: 15px;
        text-align: center;
    }

    .casino-logo {
        max-width: 150px;
        margin: 0 auto;
    }

    .pros-list {
        display: inline-block;
        text-align: left;
    }

    .btn-visit {
        width: 100%;
        max-width: 200px;
    }
}

.text-sections {
    padding: 60px 0;
    background: white;
}

.text-block {
    margin-bottom: 40px;
}

.text-block:last-child {
    margin-bottom: 0;
}

.text-block h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.text-block p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.site-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0 30px;
    margin-top: 50px;
}

.footer-disclaimer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.footer-disclaimer p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.7;
}

.footer-logos {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.footer-logo {
    width: 120px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: block;
    margin: 0 auto;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-pages {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-pages a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-pages a:hover {
    opacity: 1;
}

.footer-copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-pages {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-logos .col-4 {
        margin-bottom: 20px;
    }

    .footer-logo {
        width: 80px;
        height: 30px;
    }
}
