:root {
    --primary-color: #2C3E50;
    --secondary-color: #E74C3C;
    --accent-color: #3498DB;
    --text-color: #2C3E50;
    --light-bg: #F8F9FA;
    --dark-bg: #1A252F;
}

.age-verification-popup {
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 30px 0;
    position: relative;
    z-index: 1000;
}

.age-popup-content {
    max-width: 600px;
    margin: 0 auto;
}

.age-popup-icon {
    font-size: 3rem;
    color: var(--secondary-color);
}

.age-popup-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.age-popup-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.age-popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-popup-buttons .btn {
    padding: 12px 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.age-popup-buttons .btn:hover {
    transform: translateY(-2px);
}

.age-popup-buttons .btn i {
    font-size: 1.2rem;
}

@media (max-width: 576px) {
    .age-verification-popup {
        padding: 220px 0;
    }

    .age-popup-content h2 {
        font-size: 1.5rem;
    }

    .age-popup-content p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .age-popup-buttons {
        flex-direction: column;
        padding: 0 15px;
    }

    .age-popup-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.topbar {
    background-color: var(--dark-bg);
    color: white;
    font-size: 0.9rem;
}

.topbar a {
    color: white;
    transition: color 0.3s ease;
}

.topbar a:hover {
    color: var(--accent-color);
}

.age-disclaimer i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.subtitle {
    display: inline-block;
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-primary i {
    margin-left: 8px;
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        margin-top: 40px;
    }
}

.listings-section {
    background-color: var(--light-bg);
}

.offer-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-image img {
    max-width: 120px;
    height: auto;
}

.welcome-bonus {
    padding: 15px;
}

.bonus-label {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome-bonus h3 {
    margin: 10px 0 5px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.welcome-bonus p {
    margin: 0;
    color: var(--secondary-color);
    font-weight: 600;
}

.pros-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.pros-list i {
    color: #2ECC71;
    margin-right: 10px;
    font-size: 1.2rem;
}

.score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #2980B9 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.score-number {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.score-max {
    font-size: 1rem;
    opacity: 0.8;
}

.score-label {
    font-size: 0.9rem;
    color: var(--text-color);
}

.action-button .btn {
    width: 100%;
    padding: 12px 20px;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

@media (max-width: 991.98px) {
    .offer-card {
        padding: 20px;
    }

    .welcome-bonus, .pros-list, .scores, .action-button {
        margin: 15px 0;
        text-align: center;
    }

    .pros-list ul {
        display: inline-block;
        text-align: left;
    }

    .score-circle {
        margin: 15px auto;
    }
}

.text-sections {
    background: white;
}

.text-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.text-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.text-card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: inline-block;
}

.text-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
    position: relative;
}

.text-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991.98px) {
    .text-card {
        margin-bottom: 20px;
    }
}

.footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 60px 0 30px;
}

.footer-nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.footer-link {
    color: white;
    text-decoration: none;
    padding: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: transform 0.3s ease;
}

.footer-info-card:hover {
    transform: translateY(-5px);
}

.footer-info-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.footer-info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: white;
}

.footer-info-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.footer-info-card a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info-card a:hover {
    color: white;
}

.footer-partners {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.partner-logo {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .footer-link {
        display: block;
        padding: 10px 0;
        text-align: center;
    }

    .footer-info-card {
        margin-bottom: 20px;
    }

    .partner-logo {
        height: 30px;
        margin: 10px;
    }
}

.page-content {
    background: var(--light-bg);
    min-height: 70vh;
}

.content-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.content-card h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.content-card h2 {
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-size: 1.8rem;
}

.content-card h2:first-child {
    margin-top: 0;
}

.content-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-card ul {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-card li {
    margin-bottom: 10px;
}

@media (max-width: 991.98px) {
    .content-card {
        padding: 25px;
    }
    
    .content-card h1 {
        font-size: 2rem;
    }
    
    .content-card h2 {
        font-size: 1.5rem;
    }
}

.back-home {
    transition: all 0.3s ease;
    border-width: 2px;
    font-weight: 500;
}

.back-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.back-home i {
    margin-right: 8px;
}
