/* Age Verification Styles */
.age-verify {
    background: rgba(0, 0, 0, 0.95);
    position: relative;
    z-index: 9999;
    color: white;
    padding: 40px 0;
}

.age-verify-content {
    max-width: 500px;
    margin: 0 auto;
}

.age-verify-content .age-icon {
    width: 80px;
    height: 80px;
}

.age-verify-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.age-verify-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.age-verify-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-verify-buttons .btn {
    min-width: 160px;
    padding: 12px 24px;
}

.age-verify-disclaimer {
    color: rgba(255, 255, 255, 0.7);
}

/* Age Verification Mobile Responsive */
@media (max-width: 767.98px) {
    .age-verify {
        padding: 250px 15px;
    }

    .age-verify-content .age-icon {
        width: 60px;
        height: 60px;
    }

    .age-verify-content h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .age-verify-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .age-verify-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .age-verify-buttons .btn {
        width: 100%;
        padding: 10px 20px;
    }

    .age-verify-disclaimer {
        font-size: 0.8rem;
        margin-top: 15px !important;
    }
}

:root {
    --primary: #1E3D59;
    --primary-dark: #152D42;
    --secondary: #F5B971;
    --secondary-dark: #E69B4C;
    --text-dark: #2C3E50;
    --text-light: #ECF0F1;
    --background-light: #F8F9FA;
    --background-dark: #1A1A1A;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--background-light);
}

/* Topbar Styles */
.topbar {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 8px 0;
    font-size: 14px;
}

.topbar img {
    height: 20px;
    margin-right: 8px;
}

.age-icon {
    width: 24px;
    height: 24px;
}

.srij-logo {
    height: 24px;
}

/* Navbar Styles */
.navbar {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-logo {
    height: 40px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 16px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 8px 24px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    padding: 8px 24px;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Hero Section Styles */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-light) 0%, #E8EDF2 100%);
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn {
    padding: 12px 32px;
    font-size: 1.1rem;
}

/* Badges Section */
.badges-section {
    padding: 60px 0 30px;
    background-color: white;
}

.badge-item {
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
}

.badge-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.badge-item:hover .badge-icon {
    transform: scale(1.1);
}

.badge-title {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.25rem;
    margin: 0;
}

/* Listing Section */
.listing-section {
    padding: 40px 0;
    background-color: var(--background-light);
}

.casino-offer {
    background: white;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.offer-main {
    padding: 25px;
    border-bottom: 1px solid #eee;
}

.offer-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.offer-logo {
    width: 180px;
    padding: 15px;
}

.offer-bonus {
    width: 200px;
}

.bonus-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.bonus-description {
    font-size: 0.9rem;
}

.offer-pros {
    flex: 1;
    min-width: 200px;
}

.pros-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li {
    padding: 3px 0;
    font-size: 0.9rem;
}

.pros-list li:before {
    content: "✓";
    color: #28a745;
    margin-right: 8px;
}

.offer-score {
    text-align: center;
    width: 120px;
}

.score-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.score-stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.offer-cta {
    width: 160px;
    text-align: center;
}

.min-deposit {
    font-size: 0.85rem;
    margin-top: 8px;
    color: var(--text-dark);
}

.offer-disclaimer {
    background: #f8f9fa;
    padding: 15px 25px;
    font-size: 0.8rem;
    color: #666;
}

/* Text Sections */
.text-sections {
    padding: 60px 0;
    background: white;
}

.content-block {
    margin-bottom: 50px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.content-block p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.features-list, .steps-list, .legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li, .legal-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
}

.steps-list {
    counter-reset: steps;
    list-style-type: none;
    padding: 0;
}

.steps-list li {
    counter-increment: steps;
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.steps-list li:before {
    content: counter(steps);
    position: absolute;
    left: 0;
    width: 25px;
    height: 25px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.legal-list li:before {
    content: "!";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.legal-notice {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

/* Footer Styles */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 30px;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.9;
}

.certification-images {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.certification-images img {
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.certification-images a:hover img {
    opacity: 1;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Policy Pages Styles */
.policy-content {
    padding: 60px 0;
    background: white;
}

.policy-content h1 {
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
}

.policy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.policy-section h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 20px 0 15px;
}

.policy-section p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.policy-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.policy-section ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .nav-buttons {
        margin-top: 20px;
    }
    
    .hero {
        padding: 40px 0;
        text-align: center;
    }
    
    .hero-image {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .topbar {
        font-size: 12px;
    }
    
    .hero-buttons .btn {
        padding: 10px 24px;
        font-size: 1rem;
    }
}