@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   ROOT VARIABLES - BLACK, RED, YELLOW THEME
   ============================================ */
:root {
    --primary: #ef4444;
    --primary-light: #f87171;
    --primary-dark: #dc2626;
    --secondary: #fbbf24;
    --secondary-light: #fcd34d;
    --secondary-dark: #f59e0b;
    --accent: #f97316;
    --dark: #0a0a0a;
    --darker: #000000;
    --card-bg: #111111;
    --card-border: #1f1f1f;
    --success: #22c55e;
    --warning: #f59e0b;
    --gradient-primary: linear-gradient(135deg, #ef4444 0%, #fbbf24 50%, #f97316 100%);
    --gradient-fire: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #fbbf24 100%);
    --gradient-dark: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(0, 0, 0, 1) 100%);
    --glass-bg: rgba(17, 17, 17, 0.8);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --swipe-like: #22c55e;
    --swipe-nope: #ef4444;
    --swipe-super: #3b82f6;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(0.5deg); }
    75% { transform: translateY(-4px) rotate(-0.5deg); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(239, 68, 68, 0.2), 0 0 10px rgba(239, 68, 68, 0.1); }
    50% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.6), 0 0 40px rgba(239, 68, 68, 0.3); }
}

@keyframes pulse-ring {
    0% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(239, 68, 68, 0.3); }
    50% { border-color: rgba(239, 68, 68, 0.8); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes cardSwipeRight {
    to { transform: translateX(150%) rotate(30deg); opacity: 0; }
}

@keyframes cardSwipeLeft {
    to { transform: translateX(-150%) rotate(-30deg); opacity: 0; }
}

@keyframes cardSwipeUp {
    to { transform: translateY(-150%) scale(1.1); opacity: 0; }
}

@keyframes heartPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fireGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.5)) 
                drop-shadow(0 0 20px rgba(251, 191, 36, 0.3)); 
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.8)) 
                drop-shadow(0 0 40px rgba(251, 191, 36, 0.5)); 
    }
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(30px, -50px) scale(1.1); opacity: 0.8; }
    50% { transform: translate(-20px, -100px) scale(0.9); opacity: 0.5; }
    75% { transform: translate(50px, -60px) scale(1.05); opacity: 0.7; }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.3), 0 0 40px rgba(249, 115, 22, 0.2); }
    50% { box-shadow: 0 0 40px rgba(239, 68, 68, 0.6), 0 0 80px rgba(249, 115, 22, 0.4); }
}

@keyframes countdownPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounceGift {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(-5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-4px) rotate(5deg); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

@keyframes gradientBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-glow { animation: glow 3s ease-in-out infinite; }
.btn-pulse { animation: pulse-ring 2.5s ease-in-out infinite; }
.animate-fadeInUp { animation: fadeInUp 0.8s ease-out forwards; }
.animate-fadeIn { animation: fadeIn 0.6s ease-out forwards; }
.animate-slideInLeft { animation: slideInLeft 0.8s ease-out forwards; }
.animate-slideInRight { animation: slideInRight 0.8s ease-out forwards; }
.animate-scaleIn { animation: scaleIn 0.6s ease-out forwards; }
.animate-fire { animation: fireGlow 2s ease-in-out infinite; }

.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }
.animate-bounce-gift { animation: bounceGift 2s ease-in-out infinite; }
.animate-countdown-pulse { animation: countdownPulse 1s ease-in-out infinite; }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--secondary-light) 100%);
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
    background: rgba(239, 68, 68, 0.3);
    color: #fff;
}

/* ============================================
   GLASSMORPHISM UTILITIES
   ============================================ */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
}

.glass-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6) 0%, rgba(17, 17, 17, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.05), transparent);
    transition: left 0.6s ease;
}

.glass-card:hover::before { left: 100%; }

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 
        0 20px 40px -15px rgba(239, 68, 68, 0.3),
        0 0 0 1px rgba(239, 68, 68, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.text-gradient {
    background: var(--gradient-primary);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

.text-gradient-static {
    background: linear-gradient(to right, #ef4444, #fbbf24, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   TINDER SWIPE CARDS
   ============================================ */
.swipe-container {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 520px;
    margin: 0 auto;
    perspective: 1000px;
}

@media (max-width: 480px) {
    .swipe-container {
        max-width: 320px;
        height: 450px;
    }
}

@media (max-width: 375px) {
    .swipe-container {
        max-width: 280px;
        height: 400px;
    }
}

.swipe-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    touch-action: none;
    transition: transform 0.1s ease, box-shadow 0.3s ease;
    will-change: transform;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.swipe-card:active { cursor: grabbing; }

.swipe-card.removing { pointer-events: none; }
.swipe-card.swiped-right { animation: cardSwipeRight 0.5s ease-out forwards; }
.swipe-card.swiped-left { animation: cardSwipeLeft 0.5s ease-out forwards; }
.swipe-card.swiped-up { animation: cardSwipeUp 0.5s ease-out forwards; }

.swipe-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    pointer-events: none;
}

.swipe-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.4) 30%,
        transparent 60%
    );
    pointer-events: none;
}

.swipe-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    pointer-events: none;
}

.swipe-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.swipe-card-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Swipe indicators */
.swipe-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
    font-weight: 900;
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    border: 4px solid;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.swipe-indicator.like {
    right: 20px;
    color: var(--swipe-like);
    border-color: var(--swipe-like);
    transform: translateY(-50%) rotate(15deg);
}

.swipe-indicator.nope {
    left: 20px;
    color: var(--swipe-nope);
    border-color: var(--swipe-nope);
    transform: translateY(-50%) rotate(-15deg);
}

.swipe-indicator.super {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--swipe-super);
    border-color: var(--swipe-super);
    font-size: 3rem;
}

/* Swipe action buttons */
.swipe-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.swipe-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid;
    background: var(--card-bg);
}

@media (max-width: 480px) {
    .swipe-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    .swipe-actions {
        gap: 1rem;
    }
}

.swipe-btn.nope {
    color: var(--swipe-nope);
    border-color: var(--swipe-nope);
}

.swipe-btn.like {
    color: var(--swipe-like);
    border-color: var(--swipe-like);
}

.swipe-btn.super {
    color: var(--swipe-super);
    border-color: var(--swipe-super);
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
}

.swipe-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 0 30px currentColor;
}

.swipe-btn:active { transform: scale(0.95); }

/* Card stack effect */
.swipe-card:nth-child(1) { z-index: 4; }
.swipe-card:nth-child(2) { z-index: 3; transform: scale(0.95) translateY(10px); }
.swipe-card:nth-child(3) { z-index: 2; transform: scale(0.9) translateY(20px); }
.swipe-card:nth-child(4) { z-index: 1; transform: scale(0.85) translateY(30px); }

/* ============================================
   HERO SECTION WITH ANIMATED BACKGROUND
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--darker);
}

/* Hero Background Effects Container */
.hero-bg-effects {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Animated Gradient Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatOrb 20s ease-in-out infinite;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.4) 0%, transparent 70%);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
    top: 40%;
    right: -15%;
    animation-delay: -7s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.25) 0%, transparent 70%);
    bottom: 10%;
    left: 30%;
    animation-delay: -14s;
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.hero-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.hero-particle:nth-child(2) { left: 20%; animation-delay: -2s; animation-duration: 14s; width: 6px; height: 6px; }
.hero-particle:nth-child(3) { left: 30%; animation-delay: -4s; animation-duration: 11s; }
.hero-particle:nth-child(4) { left: 40%; animation-delay: -6s; animation-duration: 16s; width: 3px; height: 3px; }
.hero-particle:nth-child(5) { left: 50%; animation-delay: -8s; animation-duration: 13s; }
.hero-particle:nth-child(6) { left: 60%; animation-delay: -10s; animation-duration: 15s; width: 5px; height: 5px; }
.hero-particle:nth-child(7) { left: 70%; animation-delay: -12s; animation-duration: 12s; }
.hero-particle:nth-child(8) { left: 80%; animation-delay: -14s; animation-duration: 14s; width: 4px; height: 4px; }
.hero-particle:nth-child(9) { left: 90%; animation-delay: -1s; animation-duration: 11s; }
.hero-particle:nth-child(10) { left: 95%; animation-delay: -3s; animation-duration: 17s; width: 3px; height: 3px; }

/* Grid Lines Effect */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(239, 68, 68, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 68, 68, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

/* Glowing Lines */
.hero-glow-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    opacity: 0.4;
}

.hero-glow-line-1 {
    width: 40%;
    top: 20%;
    left: 10%;
    transform: rotate(-5deg);
}

.hero-glow-line-2 {
    width: 30%;
    bottom: 30%;
    right: 5%;
    transform: rotate(5deg);
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(to bottom, 
            rgba(0, 0, 0, 0.8) 0%, 
            rgba(0, 0, 0, 0.5) 30%, 
            rgba(0, 0, 0, 0.7) 70%, 
            rgba(0, 0, 0, 1) 100%
        );
}

/* ============================================
   BANNER & IMAGE POSITIONING
   ============================================ */
.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 1rem;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-image.banner-undress { object-position: center 30%; }
.banner-image.banner-cta { object-position: center 40%; }
.banner-image.banner-model { object-position: center 20%; }

.model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.model-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.model-container:hover .model-image,
.banner-container:hover .banner-image { transform: scale(1.08); }

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image { transform: scale(1.1); }

/* ============================================
   FEATURE GRID
   ============================================ */
.feature-icon-wrapper {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(251, 191, 36, 0.15) 100%);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-icon-wrapper i {
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.glass-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

.glass-card:hover .feature-icon-wrapper::before { opacity: 0.2; }

/* ============================================
   PROMO WIDGET
   ============================================ */
.promo-widget {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 
        0 10px 40px rgba(239, 68, 68, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.promo-widget::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: var(--gradient-primary);
    background-size: 200% auto;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 9999px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.3);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(239, 68, 68, 0.5);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::after { transform: translateX(100%); }

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(251, 191, 36, 0.5);
    color: var(--secondary);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 9999px;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    opacity: 0.2;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(to top, 
            rgba(0, 0, 0, 1) 0%, 
            rgba(0, 0, 0, 0.85) 40%, 
            rgba(0, 0, 0, 0.7) 100%
        );
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 20px 50px -10px rgba(239, 68, 68, 0.3);
    z-index: 10;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================
   STEPS/HOW IT WORKS
   ============================================ */
.step-circle {
    width: 6rem;
    height: 6rem;
    background: var(--darker);
    border: 2px solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
}

.step-item:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 0 40px currentColor;
}

.step-connector {
    position: absolute;
    top: 3rem;
    left: 25%;
    right: 25%;
    height: 3px;
    background: linear-gradient(to right, 
        rgba(239, 68, 68, 0.2) 0%, 
        rgba(251, 191, 36, 0.6) 50%, 
        rgba(239, 68, 68, 0.2) 100%
    );
    z-index: 0;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: 
        linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%),
        rgba(17, 17, 17, 0.5);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.stat-item:hover::after { width: 60%; }
.stat-item:hover { transform: translateY(-5px); }

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   ABOUT SECTION IMAGE
   ============================================ */
.about-image-container {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.about-image-container img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
    object-position: center 40%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-container:hover img { transform: scale(1.05); }

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    pointer-events: none;
}

.about-image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
}

/* ============================================
   HEADER - Enhanced Design
   ============================================ */
#main-header {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#main-header .header-bg {
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-scrolled {
    background: rgba(0, 0, 0, 0.98) !important;
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.5),
        0 1px 0 rgba(239, 68, 68, 0.1) inset;
}

/* Logo Animations */
.logo-wrapper:hover .logo-icon > div:first-child {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.5);
}

/* Navigation Links */
.nav-link {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::before {
    width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
    transform-origin: top right;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: rgba(0, 0, 0, 0.95);
    transform: rotate(45deg);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* CTA Button Glow */
.cta-btn {
    position: relative;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 200%;
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
    transition: opacity 0.3s ease;
}

.cta-btn:hover::before {
    opacity: 0.5;
    filter: blur(10px);
}

/* Mobile Menu Panel */
.mobile-menu-panel {
    z-index: 40;
}

.mobile-menu-panel::-webkit-scrollbar {
    width: 4px;
}

.mobile-menu-panel::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-menu-panel::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* Mobile Nav Link Animations */
.mobile-nav-link {
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.mobile-nav-link:hover::after {
    transform: translateX(100%);
}

/* Hamburger Menu Animation */
.menu-bar {
    transform-origin: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#menu-btn:hover .menu-bar {
    background: var(--primary);
}

#menu-btn:hover .menu-bar:nth-child(3) {
    width: 1.5rem;
}

/* ============================================
   FOOTER - Enhanced Design
   ============================================ */
footer {
    position: relative;
}

.footer-gradient {
    background: linear-gradient(to top, #000 0%, var(--dark) 100%);
}

/* Footer Links */
.footer-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.footer-link:hover {
    transform: translateX(5px);
}

.footer-link:hover::before {
    width: 100%;
}

/* Social Links */
.social-link {
    position: relative;
    overflow: hidden;
}

.social-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: currentColor;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    border-radius: inherit;
}

.social-link:hover::after {
    opacity: 0.1;
    transform: scale(1);
}

/* Text Gradient Animation */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

/* Safe Area for Mobile Bottom Bar */
.safe-area-bottom {
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
}

/* ============================================
   VIDEO SHOWCASE
   ============================================ */
.video-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(239, 68, 68, 0.2);
    transition: var(--transition-smooth);
}

.video-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 20px 50px -10px rgba(239, 68, 68, 0.3);
    transform: translateY(-5px);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
   RESPONSIVE - TABLET, DESKTOP, MOBILE SUPPORT
   ============================================ */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .swipe-container {
        max-width: 420px;
        height: 580px;
    }
    
    .hero-section h1 {
        font-size: 4rem;
    }
}

/* Desktop (1024px - 1280px) */
@media (min-width: 1024px) and (max-width: 1279px) {
    .swipe-container {
        max-width: 340px;
        height: 480px;
    }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Hero orbs smaller on tablet */
    .hero-orb-1 { width: 300px; height: 300px; }
    .hero-orb-2 { width: 400px; height: 400px; }
    .hero-orb-3 { width: 250px; height: 250px; }
}

/* Tablet Portrait (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-section {
        padding: 100px 0 80px;
    }
    
    .swipe-container {
        max-width: 320px;
        height: 450px;
    }
    
    /* Feature cards 2-col on tablet */
    .feature-grid-tablet {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Gallery 3-col on tablet */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Steps horizontal on tablet */
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    
    .hero-video-container video {
        object-position: center center;
    }
    
    .banner-image.banner-undress,
    .cta-background img {
        object-position: center center;
    }
    
    .about-image-container img {
        aspect-ratio: 4/3;
        object-position: center center;
    }
    
    .stat-number { font-size: 1.75rem; }
    .step-circle { width: 5rem; height: 5rem; }
    .feature-icon-wrapper { width: 60px; height: 60px; }
    
    .step-connector { display: none; }
    
    /* Mobile gallery grid */
    .gallery-grid-mobile {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .gallery-item {
        aspect-ratio: 1;
    }
    
    /* Mobile video cards */
    .video-card {
        aspect-ratio: 16/9;
    }
    
    /* Hero section mobile */
    .hero-section {
        min-height: 100dvh;
        padding: 100px 0 60px;
    }
    
    .swipe-container {
        margin-top: 1rem;
    }
    
    /* Footer mobile */
    .footer-gradient {
        padding-bottom: 80px; /* Space for fixed bottom nav if any */
    }
}

@media (max-width: 480px) {
    html { font-size: 14px; }
    
    .hero-section {
        padding: 80px 0 40px;
    }
    
    .swipe-container {
        max-width: 300px;
        height: 420px;
    }
    
    .stat-number { font-size: 1.5rem; }
    .step-circle { width: 4rem; height: 4rem; }
    .feature-icon-wrapper { width: 50px; height: 50px; }
    
    /* Smaller padding on mobile */
    section { padding-top: 3rem; padding-bottom: 3rem; }
    
    .glass-card { padding: 1.25rem; }
    
    /* Gallery */
    .gallery-grid-mobile {
        gap: 0.5rem;
    }
    
    .about-image-container img {
        aspect-ratio: 1;
    }
}

@media (max-width: 375px) {
    .swipe-container {
        max-width: 260px;
        height: 360px;
    }
    
    .swipe-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .swipe-actions { gap: 0.75rem; }
    
    .swipe-card-content {
        padding: 1rem;
    }
    
    .swipe-card-content h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.hover-lift { transition: var(--transition-smooth); }
.hover-lift:hover { transform: translateY(-5px); }
.hover-glow:hover { box-shadow: 0 0 30px rgba(239, 68, 68, 0.3); }
.border-glow { animation: borderGlow 3s ease-in-out infinite; }
.text-shadow { text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); }

.gradient-border { position: relative; }
.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border-radius: inherit;
}

.page-transition {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

/* ============================================
   FLOATING GIFT BUTTON & POPUP
   ============================================ */
.floating-gift-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 45;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
    background-size: 200% 200%;
    animation: gradientBg 3s ease infinite, bounceGift 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 
        0 8px 30px rgba(239, 68, 68, 0.5),
        0 0 0 4px rgba(239, 68, 68, 0.2);
    transition: all 0.3s ease;
}

.floating-gift-btn:hover {
    transform: scale(1.15);
    box-shadow: 
        0 12px 40px rgba(239, 68, 68, 0.6),
        0 0 0 6px rgba(239, 68, 68, 0.3);
}

.floating-gift-btn .gift-icon {
    font-size: 1.75rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.floating-gift-btn .sparkle {
    position: absolute;
    font-size: 0.75rem;
    color: white;
    animation: sparkle 2s ease-in-out infinite;
}

.floating-gift-btn .sparkle:nth-child(1) { top: -5px; right: -5px; animation-delay: 0s; }
.floating-gift-btn .sparkle:nth-child(2) { bottom: 0; left: -8px; animation-delay: 0.5s; }
.floating-gift-btn .sparkle:nth-child(3) { top: 5px; left: -3px; animation-delay: 1s; }

.floating-gift-btn .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary);
    color: black;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 10px;
    animation: countdownPulse 1s ease-in-out infinite;
}

/* ============================================
   GIFT POPUP - MODERN DARK GLASSMORPHISM
   ============================================ */
.gift-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gift-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.gift-popup {
    background: #0a0a0a;
    border-radius: 20px;
    max-width: 380px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(239, 68, 68, 0.1);
}

.gift-popup-overlay.active .gift-popup {
    transform: scale(1) translateY(0);
}

/* Animated border glow */
.gift-popup::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.5), 
        rgba(249, 115, 22, 0.3), 
        rgba(239, 68, 68, 0.5)
    );
    border-radius: 21px;
    z-index: -1;
    opacity: 0.6;
}

.gift-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #aaa;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.gift-popup-close:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
    transform: rotate(90deg);
}

/* Image Section */
.gift-popup-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.gift-popup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

.gift-popup-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        transparent 30%,
        rgba(10, 10, 10, 0.5) 60%,
        rgba(10, 10, 10, 1) 100%
    );
}

/* Floating Badge */
.gift-popup-floating-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    font-weight: 700;
    font-size: 0.65rem;
    padding: 5px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

/* Content Area */
.gift-popup-content {
    padding: 0 20px 20px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

/* Header */
.gift-popup-header {
    text-align: center;
    margin-bottom: 16px;
}

.gift-popup-title {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1;
    letter-spacing: -0.5px;
}

.gift-popup-subtitle {
    color: #fbbf24;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.gift-popup-subtitle::before,
.gift-popup-subtitle::after {
    content: '✨';
    font-size: 0.8rem;
}

/* Features Grid */
.gift-popup-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 14px;
}

.gift-popup-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #d1d5db;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gift-popup-feature i {
    color: #22c55e;
    font-size: 0.65rem;
}

/* Timer Section */
.gift-popup-timer {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 14px;
}

.gift-popup-timer-label {
    font-size: 0.6rem;
    color: #ef4444;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.gift-popup-timer-label::before {
    content: '⚡';
    font-size: 0.7rem;
}

.gift-popup-countdown {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.countdown-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 52px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.countdown-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ef4444;
    display: block;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 0.5rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
    display: block;
}

/* Coupon Codes */
.gift-popup-codes {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.gift-popup-code {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed rgba(251, 191, 36, 0.3);
    border-radius: 8px;
    padding: 8px 10px;
    transition: all 0.2s ease;
}

.gift-popup-code:hover {
    border-color: #fbbf24;
    background: rgba(251, 191, 36, 0.05);
}

.gift-popup-code code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-weight: 700;
    font-size: 0.8rem;
    color: #fbbf24;
    letter-spacing: 0.5px;
}

.gift-popup-code button {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #9ca3af;
    padding: 4px 6px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.7rem;
}

.gift-popup-code button:hover {
    background: #fbbf24;
    color: #000;
}

/* CTA Button */
.gift-popup-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gift-popup-cta:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5);
}

.gift-popup-cta i {
    font-size: 0.9rem;
}

/* Footer */
.gift-popup-footer {
    text-align: center;
    margin-top: 12px;
    font-size: 0.6rem;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gift-popup-footer span {
    display: flex;
    align-items: center;
    gap: 3px;
}

.gift-popup-footer i {
    color: #22c55e;
    font-size: 0.55rem;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .floating-gift-btn {
        width: 54px;
        height: 54px;
        bottom: 80px;
        right: 14px;
    }
    
    .floating-gift-btn .gift-icon {
        font-size: 1.4rem;
    }
    
    .gift-popup {
        max-width: calc(100% - 24px);
        margin: 12px;
        border-radius: 16px;
    }
    
    .gift-popup-image-container {
        height: 160px;
    }
    
    .gift-popup-content {
        padding: 0 16px 16px;
    }
    
    .gift-popup-title {
        font-size: 1.6rem;
    }
    
    .gift-popup-subtitle {
        font-size: 0.9rem;
    }
    
    .gift-popup-features {
        gap: 5px;
    }
    
    .gift-popup-feature {
        padding: 6px 8px;
        font-size: 0.7rem;
    }
    
    .gift-popup-codes {
        flex-direction: column;
        gap: 6px;
    }
    
    .countdown-item {
        min-width: 45px;
        padding: 6px 8px;
    }
    
    .countdown-value {
        font-size: 1.2rem;
    }
    
    .gift-popup-cta {
        padding: 11px 14px;
        font-size: 0.85rem;
    }
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Safe area for notched devices */
@supports (padding: max(0px)) {
    .hero-section {
        padding-top: max(100px, env(safe-area-inset-top));
    }
    
    .footer-gradient {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .glass-card:hover {
        transform: none;
    }
    
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
    }
    
    .swipe-card {
        cursor: default;
    }
}
