/* Enhanced Typography System - Updated Color Scheme */
:root {
    /* Font Scales */
    --font-scale-xs: 0.75rem;
    --font-scale-sm: 0.875rem;
    --font-scale-base: 1rem;
    --font-scale-lg: 1.125rem;
    --font-scale-xl: 1.25rem;
    --font-scale-2xl: 1.5rem;
    --font-scale-3xl: 1.875rem;
    --font-scale-4xl: 2.25rem;
    --font-scale-5xl: 3rem;
    --font-scale-6xl: 3.75rem;
    
    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Updated Color Scheme - Darker, more sophisticated for conversions */
    --color-primary: #2D1B69;
    --color-secondary: #8B5CF6;
    --color-accent: #A855F7;
    --color-dark-bg: #1A1A2E;
    --color-dark-surface: #16213E;
    --color-trust: #059669;
}

/* General Body Styles - Updated Background */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: var(--color-dark-bg);
    color: #333;
    line-height: 1.6;
}

/* Main Container - Updated with sophisticated dark gradient */
.main-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color-dark-bg) 0%, var(--color-dark-surface) 50%, #2D1B69 100%);
    position: relative;
}

.content-wrapper {
    padding: 2rem;
    color: white;
    text-align: center;
}

.text-header {
    padding: 2rem 2rem 2rem 2rem;
    text-align: center;
    margin-top: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.brand-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: var(--font-weight-extrabold);
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: titleGlow 3s ease-in-out infinite alternate;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

@keyframes titleGlow {
    from { filter: brightness(1); }
    to { filter: brightness(1.1); }
}

.brand-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin: 1rem 0 1.5rem 0;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.brand-subtitle::before,
.brand-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 3rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.brand-subtitle::before {
    right: 100%;
    margin-right: 1rem;
}

.brand-subtitle::after {
    left: 100%;
    margin-left: 1rem;
}

.brand-name {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: var(--font-weight-light);
    font-style: normal;
    letter-spacing: 0.08em;
    margin-top: 2rem;
    margin-bottom: 1rem;
    position: relative;
    color: white;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.asmr-text {
    display: inline-block;
    font-size: 0.6em;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-left: 0.5rem;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-style: normal;
}

/* Premium CTA Button Design - Updated colors */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 
        0 10px 30px rgba(45, 27, 105, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1rem;
}

/* Shimmer Effect */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(45, 27, 105, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Animated Icon */
.cta-button::after {
    content: '→';
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s;
}

.cta-button:hover::after {
    transform: translateX(5px);
}

/* Optimized Gallery Section - Conversion-focused design */
.gallery-section {
    padding: 2rem 0;
    position: relative;
}

.gallery-section h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    width: 100%;
    text-align: center;
}

.gallery-section h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ED64A6 0%, #6B46C1 100%);
    border-radius: 2px;
}

/* Video Count Badge - builds trust */
.video-count-badge {
    display: inline-block;
    background: rgba(168, 85, 247, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.cta-section {
    margin-bottom: 2rem;
}

/* Premium Video Gallery Grid - Optimized Load More Design */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
}

/* Enhanced Video Card Hover Effects */
.video-card {
    transform-origin: center;
    will-change: transform;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card.premium-thumbnail {
    position: relative;
    overflow: hidden;
}

/* Shimmer effect on hover */
.video-card.premium-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
    pointer-events: none;
    z-index: 1;
}

.video-card.premium-thumbnail:hover::before {
    transform: translateX(100%);
}

/* Load More Button Styling */
.load-more-container {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 0 2rem 0;
    position: relative;
}

.load-more-btn {
    background: linear-gradient(135deg, #ED64A6 0%, #6B46C1 100%);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(168,85,247,0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(168,85,247,0.4);
}

.load-more-btn:active {
    transform: translateY(0);
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive adjustments handled by media queries below */

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    background-color: #1a1a1a;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    color: white;
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: white;
}

#video-player-container {
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
    margin-bottom: 1rem;
}

#video-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Enhanced Modal CTA */
.modal-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1) 0%, rgba(237, 100, 166, 0.1) 100%);
    border-radius: 12px;
    margin-top: 1.5rem;
}

.modal-cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.modal-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* Secondary CTA Style */
.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
    background: white;
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.3);
}

/* Floating CTA Bar */
.floating-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-cta-bar.visible {
    transform: translateY(0);
}

.floating-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.floating-cta-text {
    flex: 1;
}

.floating-cta-text h4 {
    margin: 0;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
}

.floating-cta-text p {
    margin: 0.25rem 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Benefits Section - Enhanced Modern Design - Reduced spacing */
.benefits-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.2) 0%, rgba(168, 85, 247, 0.15) 50%, rgba(139, 92, 246, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: shimmer 8s infinite linear;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 4rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #ffffff 0%, #a1c4fd 50%, #c2e9fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Optimize for 7 cards - create nice rows */
@media screen and (min-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .benefit-card:nth-child(5) {
        grid-column: 1 / 3;
    }
    
    .benefit-card:nth-child(6) {
        grid-column: 3 / 5;
    }
    
    .benefit-card:nth-child(7) {
        grid-column: 2 / 4;
    }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefit-card:nth-child(7) {
        grid-column: 2 / 3;
    }
}

.benefit-card {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1) 0%, rgba(237, 100, 166, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h4 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Optimized Conversion Banner - Less Intrusive */
.offer-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #8B5CF6 0%, #EC4899 100%);
    padding: 0.75rem;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-banner.show {
    transform: translateY(0);
}

.offer-banner.hide {
    transform: translateY(-100%);
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.offer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

.offer-text h4 {
    margin: 0;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    display: inline;
    margin-right: 1rem;
}

.offer-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    display: inline;
}

.countdown-timer {
    font-weight: 700;
    font-family: monospace;
    font-size: 1.1em;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.promo-code {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 1.1em;
    text-shadow: none;
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
    to { box-shadow: 0 0 15px rgba(255, 215, 0, 0.8); }
}

.cta-button-special {
    background: rgba(255, 255, 255, 0.95);
    color: #EC4899;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-block;
    margin-left: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button-special:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}


/* Primary CTA Section - Above Videos - Reduced spacing */
.primary-cta-section {
    text-align: center;
    padding: 2rem 2rem;
    margin: 1.5rem 0 2rem 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.primary-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05) 0%, rgba(237, 100, 166, 0.05) 100%);
    z-index: -1;
}

.primary-cta {
    display: inline-block;
    margin-bottom: 2rem;
}

/* CTA Section Improvements - Keep for compatibility */
.cta-section {
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    margin-top: 3rem;
}

/* Centered Logo Styles - Above Main Title */
.centered-logo {
    text-align: center;
    margin-bottom: 2rem;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

.logo-image-centered {
    height: 160px;
    width: auto;
    display: inline-block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.centered-logo:hover .logo-image-centered {
    transform: scale(1.05);
}

@keyframes logoGlow {
    from { filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3)) brightness(1); }
    to { filter: drop-shadow(0 6px 25px rgba(0, 0, 0, 0.4)) brightness(1.05); }
}

/* Age Verification Modal */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    overflow-y: auto;
    padding: 1rem;
}

.age-verification-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.age-verification-content {
    background: linear-gradient(135deg, var(--color-dark-bg) 0%, var(--color-dark-surface) 100%);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    border: 2px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.5s ease-out;
    position: relative;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.age-verification-logo {
    margin-bottom: 2rem;
}

.age-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.age-verification-title {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-verification-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-verification-text p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.age-verification-text ul {
    text-align: left;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.age-verification-text li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.age-verification-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.age-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.age-btn-enter {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(45, 27, 105, 0.4);
}

.age-btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(45, 27, 105, 0.6);
}

.age-btn-leave {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.age-btn-leave:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.age-verification-footer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Mobile responsive for age verification */
@media screen and (max-width: 768px) {
    .age-verification-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .age-verification-title {
        font-size: 1.5rem;
    }
    
    .age-btn {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .age-logo {
        height: 60px;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--color-dark-surface) 0%, var(--color-dark-bg) 100%);
    padding: 4rem 2rem;
    position: relative;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--color-dark-surface);
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-privacy {
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin: 1.5rem 0;
}

.form-privacy p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(45, 27, 105, 0.4);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}

.success-message {
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-item h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(45, 27, 105, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
    color: white;
    font-size: 1.5rem;
}

.floating-contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(45, 27, 105, 0.6);
}

.floating-contact-btn.hidden {
    transform: scale(0);
    opacity: 0;
}

/* Footer */
.site-footer {
    background-color: var(--color-dark-surface);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.site-footer p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

/* Mobile responsive for contact section */
@media screen and (max-width: 768px) {
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    .contact-info-item {
        padding: 1.5rem;
    }
    
    .floating-contact-btn {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile-First Responsive Optimization */
@media screen and (max-width: 768px) {
    
    /* Touch-Friendly Spacing */
    body {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    /* Mobile Centered Logo */
    .logo-image-centered {
        height: 60px;
    }
    
    .centered-logo {
        margin-bottom: 1.5rem;
    }
    
    /* Optimized Header for Mobile */
    .text-header {
        padding: 1.5rem 1rem;
    }
    
    .brand-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        letter-spacing: 0.02em;
        line-height: 1.2;
    }
    
    .brand-subtitle {
        font-size: clamp(0.875rem, 3vw, 1rem);
        letter-spacing: 0.1em;
    }
    
    .brand-subtitle::before,
    .brand-subtitle::after {
        width: 2rem;
    }
    
    .brand-name {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }
    
    .asmr-text {
        display: inline-block;
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    /* Mobile CTA Optimization */
    .cta-button {
        width: 100%;
        padding: 1.25rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
        justify-content: center;
    }
    
    .cta-section {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    /* Mobile Gallery Optimization */
    .video-gallery {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1rem 0.5rem;
    }
    
    .load-more-btn {
        width: 90%;
        max-width: 300px;
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
    
    .load-more-container {
        padding: 2rem 0 1.5rem 0;
    }
    
    .gallery-section h2 {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
    
    /* Enhanced Touch Targets */
    .play-preview-button,
    .play-button-large {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Mobile Modal Optimization */
    .modal-content {
        width: 95%;
        margin: 1rem;
        padding: 1rem;
        border-radius: 12px;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .close-button {
        top: 0.5rem;
        right: 0.5rem;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        font-size: 24px;
    }
    
    /* Mobile CTA Section */
    .primary-cta-section {
        margin: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Mobile Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    /* Mobile Benefits */
    .benefits-section {
        padding: 3rem 1rem;
        margin: 2rem 0;
    }
    
    .benefits-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-card:nth-child(5),
    .benefit-card:nth-child(6),
    .benefit-card:nth-child(7) {
        grid-column: auto;
    }
    
    .benefit-icon {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
    }
    
    /* Mobile Offer Banner - More Compact */
    .offer-banner {
        padding: 0.5rem;
    }
    
    .offer-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .offer-text h4 {
        font-size: 0.9rem;
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .offer-text p {
        font-size: 0.8rem;
        display: block;
    }
    
    .cta-button-special {
        margin-left: 0;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* Additional Responsive Breakpoints */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .video-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .load-more-container {
        padding: 2.5rem 0 2rem 0;
    }
    
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Landscape Optimization */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .text-header {
        padding: 1.5rem 1rem;
    }
    
    .brand-title {
        font-size: 2rem;
    }
    
    .video-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-content {
        max-height: 85vh;
    }
}

/* Accessibility Enhancements */
@media (prefers-contrast: high) {
    .cta-button {
        border: 2px solid white;
    }
    
    .video-card {
        border: 2px solid rgba(255, 255, 255, 0.5);
    }
}