* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate-content {
    text-align: center;
    color: white;
    max-width: 500px;
    padding: 40px;
}

.age-gate h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.age-gate p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

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

.btn-enter {
    background: #28a745;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-enter:hover {
    background: #218838;
}

.btn-exit {
    background: #dc3545;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-exit:hover {
    background: #c82333;
}

/* Main Site */
.main-site {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b3d 100%);
    min-height: 100vh;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6b35;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #ff6b35;
}

.btn-primary {
    background: #ff6b35;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.pexels.com/photos/3171837/pexels-photo-3171837.jpeg') center/cover;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b35, #f93943);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-cta-main {
    background: linear-gradient(45deg, #ff6b35, #f93943);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ff6b35;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.benefit-card h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ff6b35;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial span {
    color: #ff6b35;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #f93943);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta-secondary {
    background: white;
    color: #ff6b35;
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Page Header */
.page-header {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.pexels.com/photos/1009136/pexels-photo-1009136.jpeg') center/cover;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ff6b35;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Filters */
.filters {
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.05);
}

.filter-bar {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-bar select {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 1rem;
}

/* Profiles Grid */
.profiles {
    padding: 60px 0;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.profile-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: transform 0.3s;
}

.profile-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.profile-header h3 {
    color: #ff6b35;
    font-size: 1.3rem;
}

.age, .location {
    background: rgba(255, 107, 53, 0.2);
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.profile-tags {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 107, 53, 0.3);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.btn-contact {
    background: #ff6b35;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn-contact:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: white;
}

.load-more {
    text-align: center;
}

/* Events */
.events {
    padding: 60px 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.event-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s;
}

.event-card.featured {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.event-header {
    margin-bottom: 15px;
}

.event-header h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.date, .location {
    background: rgba(255, 107, 53, 0.2);
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.9rem;
    margin-right: 10px;
}

.event-details {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
}

.attendees, .price {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 0.9rem;
}

.btn-event {
    background: linear-gradient(45deg, #ff6b35, #f93943);
    color: white;
    padding: 12px 25px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-event:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.event-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.event-cta h2 {
    color: #ff6b35;
    margin-bottom: 15px;
}

/* Couples */
.couples-intro {
    padding: 60px 0;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.couples-profiles {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.05);
}

.couples-profiles h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 40px;
}

.couples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.couple-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    transition: all 0.3s;
}

.couple-card.premium {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.couple-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.couple-header {
    margin-bottom: 15px;
    position: relative;
}

.couple-header h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.ages {
    background: rgba(255, 107, 53, 0.2);
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.9rem;
    margin-right: 10px;
}

.premium-badge {
    position: absolute;
    top: -10px;
    right: 0;
    background: #ffd700;
    color: #000;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
}

.couple-preferences {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.pref {
    background: rgba(255, 107, 53, 0.3);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.couples-guide {
    padding: 60px 0;
}

.couples-guide h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 40px;
}

.guide-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.guide-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
}

.guide-section h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Blog */
.blog-content {
    padding: 60px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.article-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s;
}

.article-card.featured {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.article-card h2 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.article-meta span {
    background: rgba(255, 107, 53, 0.2);
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.btn-read {
    background: #ff6b35;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn-read:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.guide-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.guide-cta h2 {
    color: #ff6b35;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: #000;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid,
    .testimonials-grid,
    .profiles-grid,
    .events-grid,
    .couples-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: center;
    }
    
    .profile-header,
    .couple-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .age-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .benefits,
    .testimonials,
    .profiles,
    .events,
    .couples-intro,
    .couples-profiles,
    .couples-guide,
    .blog-content {
        padding: 40px 0;
    }
    
    .profile-card,
    .event-card,
    .couple-card,
    .article-card {
        padding: 20px;
    }
}