/* Age Verification Popup Styles */
.age-verify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-verify-modal {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.age-verify-content i {
    font-size: 3rem;
    color: #FFA500;
}

.age-verify-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 1rem;
}

.age-verify-content p {
    color: #4B5563;
    font-size: 1rem;
    line-height: 1.6;
}

.age-verify-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-verify-buttons button {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-confirm {
    background-color: #2563EB;
    color: white;
}

.btn-confirm:hover {
    background-color: #1E40AF;
    transform: translateY(-2px);
}

.btn-leave {
    background-color: #EF4444;
    color: white;
}

.btn-leave:hover {
    background-color: #DC2626;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .age-verify-modal {
        padding: 1.5rem;
    }

    .age-verify-content h2 {
        font-size: 1.5rem;
    }

    .age-verify-content p {
        font-size: 0.9rem;
    }

    .age-verify-buttons button {
        width: 100%;
    }
}

:root {
    --primary: #2563EB;
    --secondary: #1E40AF;
    --dark: #1E293B;
    --light: #F8FAFC;
    --accent: #3B82F6;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background-color: var(--light);
}

/* Topbar Styles */
.topbar {
    background-color: var(--dark);
    color: white;
    font-size: 0.9rem;
}

.topbar i {
    color: var(--accent);
}

/* Navbar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.logo {
    height: 50px;
    width: auto;
}

/* Hero Section Styles */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    overflow: hidden;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: #64748B;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}



/* Listings Section Styles */
.listings {
    background-color: #F8FAFC;
}

.offer-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.offer-logo {
    text-align: center;
    padding: 1rem;
}

.offer-logo img {
    max-width: 120px;
    height: auto;
}

.welcome-bonus {
    text-align: center;
}

.welcome-bonus h4 {
    font-size: 0.9rem;
    color: #64748B;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.score-wrapper {
    text-align: center;
}

.score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.stars {
    color: #FFA500;
}

.pros-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #4B5563;
}

.pros-list i {
    color: #10B981;
    margin-right: 0.5rem;
}

.btn-visit {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-visit:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

.offer-disclaimer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
}

.offer-disclaimer p {
    margin: 0;
    font-size: 0.8rem;
    color: #6B7280;
    text-align: center;
}

.offer-disclaimer i {
    color: #9CA3AF;
    margin-right: 0.5rem;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Text Sections Styles */
.text-sections {
    background-color: #F8FAFC;
}

.text-section {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.text-section h2 {
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.text-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.text-section .content {
    color: #4B5563;
    line-height: 1.8;
}

.text-section .content p {
    margin-bottom: 1.2rem;
}

.text-section .content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2rem;
}

.text-section .content ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
}

.text-section .content ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Recommended Practices Styles */
.practices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.practice-item {
    background: #F8FAFC;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.practice-item:hover {
    transform: translateY(-5px);
}

.practice-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.practice-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.practice-item p {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* Policy Pages Styles */
.policy-content {
    background-color: #F8FAFC;
    min-height: calc(100vh - 300px);
}

.policy-header h1 {
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.policy-header .lead {
    color: #64748B;
    font-size: 1.2rem;
}

.policy-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.policy-section h2 {
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.policy-section h3 {
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.policy-section p {
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
}

.policy-section ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: #4B5563;
}

.policy-section ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

.help-resources {
    background: #F8FAFC;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Footer Styles */
.footer {
    background-color: var(--dark);
    color: #E5E7EB;
}

.certifications {
    background-color: #1a1f2b;
    border-bottom: 1px solid rgba(229, 231, 235, 0.1);
}

.cert-logo {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.cert-logo:hover {
    filter: grayscale(0%);
}

.footer-content {
    background-color: var(--dark);
}

.footer-box {
    height: 100%;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.footer-box:hover {
    transform: translateY(-5px);
}

.footer-box h4 {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #E5E7EB;
}

.footer-box a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-box a:hover {
    color: white;
}

.support-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(229, 231, 235, 0.1);
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-nav li a {
    color: #E5E7EB;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-nav li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.footer-nav li a:hover {
    color: var(--accent);
}

.footer-nav li a:hover::after {
    width: 100%;
}

.copyright {
    background-color: rgba(0, 0, 0, 0.3);
    color: #9CA3AF;
    font-size: 0.9rem;
}

.copyright .small {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .cert-logo {
        max-height: 50px;
    }

    .footer-box {
        padding: 1.25rem;
    }

    .footer-box h4 {
        font-size: 1rem;
    }
    .text-section {
        padding: 2rem;
    }

    .text-section h2 {
        font-size: 1.6rem;
    }

    .practices-grid {
        gap: 1.5rem;
    }

    .practice-item {
        padding: 1.25rem;
    }

    .practice-item i {
        font-size: 1.75rem;
    }

    .practice-item h3 {
        font-size: 1.1rem;
    }
    .navbar-brand {
        position: relative;
        left: 0;
        transform: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-image {
        margin-top: 2rem;
    }

    .offer-item {
        padding: 1.5rem;
    }

    .welcome-bonus,
    .score-wrapper,
    .pros-list {
        margin: 1rem 0;
    }

    .pros-list ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .pros-list li {
        margin-bottom: 0;
        margin-right: 1rem;
    }
}

@media (max-width: 767.98px) {
    .cert-logo {
        max-height: 40px;
    }

    .footer-box {
        padding: 1rem;
    }

    .footer-box h4 {
        font-size: 0.95rem;
    }

    .footer-box p {
        font-size: 0.85rem;
    }

    .footer-nav {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .footer-nav li a {
        font-size: 0.85rem;
    }

    .copyright {
        font-size: 0.8rem;
    }

    .copyright .small {
        font-size: 0.75rem;
    }
    .text-section {
        padding: 1.5rem;
    }

    .text-section h2 {
        font-size: 1.4rem;
    }

    .text-section .content {
        font-size: 0.95rem;
    }

    .practices-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .practice-item {
        padding: 1rem;
    }

    .practice-item i {
        font-size: 1.5rem;
    }

    .practice-item h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .practice-item p {
        font-size: 0.9rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }

    .offer-item {
        padding: 1rem;
    }

    .offer-logo img {
        max-width: 100px;
    }

    .welcome-bonus h4 {
        font-size: 0.8rem;
    }

    .bonus-text {
        font-size: 1rem;
    }

    .score {
        font-size: 1.5rem;
    }

    .pros-list li {
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
        margin-right: 0;
    }

    .btn-visit {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .offer-disclaimer p {
        font-size: 0.7rem;
    }
}