* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    padding: 20px 5%;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff0066 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff0066;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
    font-weight: 500;
}

.button.primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff0066 100%);
    color: white;
}

.button.secondary {
    background: white;
    color: #ff0066;
    border: 2px solid #ff0066;
}

.button.secondary:hover {
    background: #fff0f5;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff0066 100%);
    color: white !important;
    padding: 10px 20px;
    border-radius: 20px;
}

.button.large {
    padding: 18px 40px;
    font-size: 20px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 50px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff0066 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Gallery */
#gallery {
    padding: 80px 5%;
    background: #fff5f8;
}

#gallery h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    color: #333;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 0, 102, 0.2);
}

/* About Section */
#about {
    padding: 80px 5%;
    background: white;
}

.about-container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-content {
    flex: 1.5;
}

.about-content h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #333;
}

.about-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Stats */
.about-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    padding: 30px;
    background: #fff5f8;
    border-radius: 15px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 32px;
    color: #ff0066;
    margin-bottom: 5px;
}

.stat p {
    color: #666;
    font-size: 14px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-button {
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    background: white;
    color: #ff0066;
    border: 2px solid #ff0066;
    transition: all 0.3s;
    font-weight: 500;
}

.social-button:hover {
    background: #ff0066;
    color: white;
}

.social-button.special {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff0066 100%);
    color: white;
    border: none;
}

/* Footer */
footer {
    padding: 30px 5%;
    background: #333;
    color: white;
    text-align: center;
}

/* Exclusive Page Specific */
.exclusive-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff0066 100%);
}

.container {
    width: 100%;
    padding: 20px;
}

.exclusive-box {
    background: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.exclusive-preview {
    margin: -60px -60px 40px -60px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.exclusive-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.exclusive-box h1 {
    font-size: 36px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff0066 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 18px;
}

.limited-time {
    background: linear-gradient(135deg, #ffeded 0%, #ffe0e0 100%);
    border: 2px solid #ff0066;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
}

.limited-time p {
    color: #ff0066;
    font-weight: bold;
    margin: 0;
    font-size: 18px;
}

.age-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.age-notice p {
    margin: 0;
    color: #856404;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.disclaimer {
    font-size: 12px;
    color: #999;
    margin-top: 30px;
}

/* PULSE ANIMATION */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 102, 0);
    }
}

/* Apply pulse to ALL CTA buttons */
.cta-button,
.button.primary,
.social-button.special,
.pulse {
    animation: pulse 2s infinite;
}

/* Hover state - faster pulse */
.cta-button:hover,
.button.primary:hover,
.social-button.special:hover,
.pulse:hover {
    animation: pulse 0.5s infinite;
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Header adjustments */
    header {
        padding: 15px 5%;
    }
    
    nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    /* Hero adjustments */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 30px 5%;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    /* Buttons on mobile */
    .button {
        width: 100%;
        text-align: center;
        padding: 15px 30px;
    }
    
    /* Gallery adjustments */
    #gallery {
        padding: 50px 5%;
    }
    
    #gallery h2 {
        font-size: 32px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* About adjustments */
    #about {
        padding: 50px 5%;
    }
    
    .about-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-content h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-button {
        text-align: center;
        width: 100%;
    }
    
    /* Exclusive page mobile */
    .exclusive-box {
        padding: 30px 20px;
    }
    
    .exclusive-preview {
        margin: -30px -20px 30px -20px;
    }
    
    .exclusive-box h1 {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .limited-time p {
        font-size: 16px;
    }
    
    .button.large {
        padding: 15px 30px;
        font-size: 18px;
        width: 100%;
    }
    
    /* Footer */
    footer {
        padding: 20px 5%;
        font-size: 14px;
    }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero h1 {
        font-size: 50px;
    }
    
    .about-container {
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}