/* ===================================
   RESET & BASE STYLES
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Amore+Christmas&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

:root {
    /* Christmas Color Palette */
    --red-primary: #C41E3A;
    --red-dark: #8B0000;
    --red-light: #DC143C;
    --green-primary: #0F5132;
    --green-dark: #2D5016;
    --green-light: #228B22;
    --gold: #FFD700;
    --gold-light: #FFF4B5;
    --white: #FFFFFF;
    --cream: #FFF8DC;
    --dark: #1a1a1a;
    
    /* Gradients */
    --gradient-red: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
    --gradient-green: linear-gradient(135deg, #0F5132 0%, #2D5016 100%);
    --gradient-festive: linear-gradient(135deg, #C41E3A 0%, #0F5132 50%, #8B0000 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    background: var(--gradient-festive);
    color: #e0f0ff;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

img {
    max-width: 100%;  /* Resmin genişliği kapsayıcısının %100'ünü geçemez */
    height: auto;     /* Yükseklik, en boy oranını koruyacak şekilde otomatik ayarlanır */
    display: block;   /* Resmi blok seviyesinde göstererek hizalama sorunlarını önler */
}

/* ===================================
   SNOWFLAKES ANIMATION
   =================================== */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10%;
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.8;
    animation: fall linear infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.snowflake:nth-child(1) { left: 2%; animation-duration: 6s; animation-delay: 0s; font-size: 1.2rem; }
.snowflake:nth-child(2) { left: 6%; animation-duration: 7.5s; animation-delay: 1s; font-size: 1.8rem; }
.snowflake:nth-child(3) { left: 10%; animation-duration: 5s; animation-delay: 2s; font-size: 1rem; }
.snowflake:nth-child(4) { left: 14%; animation-duration: 9s; animation-delay: 0.5s; font-size: 1.5rem; }
.snowflake:nth-child(5) { left: 18%; animation-duration: 7s; animation-delay: 1.5s; font-size: 1.3rem; }
.snowflake:nth-child(6) { left: 22%; animation-duration: 8s; animation-delay: 2.5s; font-size: 1.6rem; }
.snowflake:nth-child(7) { left: 26%; animation-duration: 6.5s; animation-delay: 1.25s; font-size: 1.4rem; }
.snowflake:nth-child(8) { left: 30%; animation-duration: 5.5s; animation-delay: 2.25s; font-size: 1.1rem; }
.snowflake:nth-child(9) { left: 34%; animation-duration: 8.5s; animation-delay: 0.75s; font-size: 1.7rem; }
.snowflake:nth-child(10) { left: 38%; animation-duration: 9.5s; animation-delay: 1.75s; font-size: 1.2rem; }
.snowflake:nth-child(11) { left: 42%; animation-duration: 6.4s; animation-delay: 0.8s; font-size: 1.3rem; }
.snowflake:nth-child(12) { left: 46%; animation-duration: 7.6s; animation-delay: 1.8s; font-size: 1.5rem; }
.snowflake:nth-child(13) { left: 50%; animation-duration: 5.6s; animation-delay: 1.2s; font-size: 1.4rem; }
.snowflake:nth-child(14) { left: 54%; animation-duration: 8.6s; animation-delay: 2.2s; font-size: 1.6rem; }
.snowflake:nth-child(15) { left: 58%; animation-duration: 7.2s; animation-delay: 0.6s; font-size: 1.2rem; }
.snowflake:nth-child(16) { left: 62%; animation-duration: 8.2s; animation-delay: 1.6s; font-size: 1.7rem; }
.snowflake:nth-child(17) { left: 66%; animation-duration: 6.6s; animation-delay: 1s; font-size: 1.1rem; }
.snowflake:nth-child(18) { left: 70%; animation-duration: 7.8s; animation-delay: 2s; font-size: 1.5rem; }
.snowflake:nth-child(19) { left: 74%; animation-duration: 5.8s; animation-delay: 1.4s; font-size: 1.3rem; }
.snowflake:nth-child(20) { left: 78%; animation-duration: 8.8s; animation-delay: 0.4s; font-size: 1.6rem; }
.snowflake:nth-child(21) { left: 82%; animation-duration: 6.8s; animation-delay: 1.9s; font-size: 1.4rem; }
.snowflake:nth-child(22) { left: 86%; animation-duration: 7.4s; animation-delay: 0.9s; font-size: 1.2rem; }
.snowflake:nth-child(23) { left: 90%; animation-duration: 5.2s; animation-delay: 1.7s; font-size: 1.5rem; }
.snowflake:nth-child(24) { left: 94%; animation-duration: 8.4s; animation-delay: 0.7s; font-size: 1.7rem; }
.snowflake:nth-child(25) { left: 98%; animation-duration: 6.2s; animation-delay: 1.3s; font-size: 1.3rem; }
.snowflake:nth-child(26) { left: 4%; animation-duration: 7.1s; animation-delay: 2.1s; font-size: 1.4rem; }
.snowflake:nth-child(27) { left: 8%; animation-duration: 5.9s; animation-delay: 1.1s; font-size: 1.6rem; }
.snowflake:nth-child(28) { left: 12%; animation-duration: 8.7s; animation-delay: 0.3s; font-size: 1.1rem; }
.snowflake:nth-child(29) { left: 16%; animation-duration: 6.9s; animation-delay: 1.9s; font-size: 1.5rem; }
.snowflake:nth-child(30) { left: 20%; animation-duration: 7.7s; animation-delay: 0.9s; font-size: 1.2rem; }
.snowflake:nth-child(31) { left: 24%; animation-duration: 5.4s; animation-delay: 1.7s; font-size: 1.7rem; }
.snowflake:nth-child(32) { left: 28%; animation-duration: 8.3s; animation-delay: 0.7s; font-size: 1.3rem; }
.snowflake:nth-child(33) { left: 32%; animation-duration: 6.5s; animation-delay: 1.5s; font-size: 1.4rem; }
.snowflake:nth-child(34) { left: 36%; animation-duration: 7.3s; animation-delay: 0.5s; font-size: 1.6rem; }
.snowflake:nth-child(35) { left: 40%; animation-duration: 5.7s; animation-delay: 2.3s; font-size: 1.5rem; }
.snowflake:nth-child(36) { left: 44%; animation-duration: 8.5s; animation-delay: 1.3s; font-size: 1.2rem; }
.snowflake:nth-child(37) { left: 48%; animation-duration: 6.7s; animation-delay: 0.3s; font-size: 1.7rem; }
.snowflake:nth-child(38) { left: 52%; animation-duration: 7.5s; animation-delay: 2.1s; font-size: 1.3rem; }
.snowflake:nth-child(39) { left: 56%; animation-duration: 5.3s; animation-delay: 1.1s; font-size: 1.4rem; }
.snowflake:nth-child(40) { left: 60%; animation-duration: 8.1s; animation-delay: 0.1s; font-size: 1.6rem; }
.snowflake:nth-child(41) { left: 64%; animation-duration: 6.3s; animation-delay: 1.9s; font-size: 1.1rem; }
.snowflake:nth-child(42) { left: 68%; animation-duration: 7.1s; animation-delay: 0.9s; font-size: 1.5rem; }
.snowflake:nth-child(43) { left: 72%; animation-duration: 5.9s; animation-delay: 1.7s; font-size: 1.2rem; }
.snowflake:nth-child(44) { left: 76%; animation-duration: 8.9s; animation-delay: 0.7s; font-size: 1.7rem; }
.snowflake:nth-child(45) { left: 80%; animation-duration: 6.1s; animation-delay: 1.5s; font-size: 1.3rem; }
.snowflake:nth-child(46) { left: 84%; animation-duration: 7.9s; animation-delay: 0.5s; font-size: 1.4rem; }
.snowflake:nth-child(47) { left: 88%; animation-duration: 5.1s; animation-delay: 2.3s; font-size: 1.6rem; }
.snowflake:nth-child(48) { left: 92%; animation-duration: 8.7s; animation-delay: 1.3s; font-size: 1.5rem; }
.snowflake:nth-child(49) { left: 96%; animation-duration: 6.5s; animation-delay: 0.3s; font-size: 1.2rem; }
.snowflake:nth-child(50) { left: 5%; animation-duration: 7.3s; animation-delay: 2.1s; font-size: 1.7rem; }
.snowflake:nth-child(51) { left: 7%; animation-duration: 5.6s; animation-delay: 0.8s; font-size: 1.3rem; }
.snowflake:nth-child(52) { left: 11%; animation-duration: 8.4s; animation-delay: 1.8s; font-size: 1.5rem; }
.snowflake:nth-child(53) { left: 15%; animation-duration: 6.8s; animation-delay: 1.2s; font-size: 1.4rem; }
.snowflake:nth-child(54) { left: 19%; animation-duration: 7.8s; animation-delay: 2.2s; font-size: 1.6rem; }
.snowflake:nth-child(55) { left: 23%; animation-duration: 5.4s; animation-delay: 0.6s; font-size: 1.2rem; }
.snowflake:nth-child(56) { left: 27%; animation-duration: 8.6s; animation-delay: 1.6s; font-size: 1.7rem; }
.snowflake:nth-child(57) { left: 31%; animation-duration: 6.4s; animation-delay: 1s; font-size: 1.1rem; }
.snowflake:nth-child(58) { left: 35%; animation-duration: 7.6s; animation-delay: 2s; font-size: 1.5rem; }
.snowflake:nth-child(59) { left: 39%; animation-duration: 5.8s; animation-delay: 1.4s; font-size: 1.3rem; }
.snowflake:nth-child(60) { left: 43%; animation-duration: 4.4s; animation-delay: 0.2s; font-size: 1.6rem; }
.snowflake:nth-child(61) { left: 47%; animation-duration: 3.3s; animation-delay: 0.95s; font-size: 1.4rem; }
.snowflake:nth-child(62) { left: 51%; animation-duration: 3.7s; animation-delay: 0.45s; font-size: 1.2rem; }
.snowflake:nth-child(63) { left: 55%; animation-duration: 2.6s; animation-delay: 0.85s; font-size: 1.5rem; }
.snowflake:nth-child(64) { left: 59%; animation-duration: 4.1s; animation-delay: 0.35s; font-size: 1.7rem; }
.snowflake:nth-child(65) { left: 63%; animation-duration: 3.1s; animation-delay: 0.65s; font-size: 1.3rem; }
.snowflake:nth-child(66) { left: 67%; animation-duration: 3.6s; animation-delay: 1.05s; font-size: 1.4rem; }
.snowflake:nth-child(67) { left: 71%; animation-duration: 2.85s; animation-delay: 0.55s; font-size: 1.6rem; }
.snowflake:nth-child(68) { left: 75%; animation-duration: 4.35s; animation-delay: 0.15s; font-size: 1.1rem; }
.snowflake:nth-child(69) { left: 79%; animation-duration: 3.45s; animation-delay: 0.95s; font-size: 1.5rem; }
.snowflake:nth-child(70) { left: 83%; animation-duration: 3.85s; animation-delay: 0.45s; font-size: 1.2rem; }
.snowflake:nth-child(71) { left: 87%; animation-duration: 2.75s; animation-delay: 0.85s; font-size: 1.7rem; }
.snowflake:nth-child(72) { left: 91%; animation-duration: 4.15s; animation-delay: 0.35s; font-size: 1.3rem; }
.snowflake:nth-child(73) { left: 3%; animation-duration: 3.25s; animation-delay: 0.75s; font-size: 1.4rem; }
.snowflake:nth-child(74) { left: 9%; animation-duration: 3.65s; animation-delay: 0.25s; font-size: 1.6rem; }
.snowflake:nth-child(75) { left: 13%; animation-duration: 2.95s; animation-delay: 1.15s; font-size: 1.5rem; }
.snowflake:nth-child(76) { left: 17%; animation-duration: 4.25s; animation-delay: 0.65s; font-size: 1.2rem; }
.snowflake:nth-child(77) { left: 21%; animation-duration: 3.35s; animation-delay: 0.15s; font-size: 1.7rem; }
.snowflake:nth-child(78) { left: 25%; animation-duration: 3.75s; animation-delay: 1.05s; font-size: 1.3rem; }
.snowflake:nth-child(79) { left: 29%; animation-duration: 2.65s; animation-delay: 0.55s; font-size: 1.4rem; }
.snowflake:nth-child(80) { left: 33%; animation-duration: 4.05s; animation-delay: 0.05s; font-size: 1.6rem; }
.snowflake:nth-child(81) { left: 37%; animation-duration: 3.15s; animation-delay: 0.95s; font-size: 1.1rem; }
.snowflake:nth-child(82) { left: 41%; animation-duration: 3.55s; animation-delay: 0.45s; font-size: 1.5rem; }
.snowflake:nth-child(83) { left: 45%; animation-duration: 2.95s; animation-delay: 0.85s; font-size: 1.2rem; }
.snowflake:nth-child(84) { left: 49%; animation-duration: 4.45s; animation-delay: 0.35s; font-size: 1.7rem; }
.snowflake:nth-child(85) { left: 53%; animation-duration: 3.05s; animation-delay: 0.75s; font-size: 1.3rem; }
.snowflake:nth-child(86) { left: 57%; animation-duration: 3.95s; animation-delay: 0.25s; font-size: 1.4rem; }
.snowflake:nth-child(87) { left: 61%; animation-duration: 2.55s; animation-delay: 1.15s; font-size: 1.6rem; }
.snowflake:nth-child(88) { left: 65%; animation-duration: 4.35s; animation-delay: 0.65s; font-size: 1.5rem; }
.snowflake:nth-child(89) { left: 69%; animation-duration: 3.25s; animation-delay: 0.15s; font-size: 1.2rem; }
.snowflake:nth-child(90) { left: 73%; animation-duration: 3.65s; animation-delay: 1.05s; font-size: 1.7rem; }
.snowflake:nth-child(91) { left: 77%; animation-duration: 2.8s; animation-delay: 0.4s; font-size: 1.3rem; }
.snowflake:nth-child(92) { left: 81%; animation-duration: 4.2s; animation-delay: 0.9s; font-size: 1.5rem; }
.snowflake:nth-child(93) { left: 85%; animation-duration: 3.4s; animation-delay: 0.6s; font-size: 1.4rem; }
.snowflake:nth-child(94) { left: 89%; animation-duration: 3.9s; animation-delay: 1.1s; font-size: 1.6rem; }
.snowflake:nth-child(95) { left: 93%; animation-duration: 2.7s; animation-delay: 0.3s; font-size: 1.2rem; }
.snowflake:nth-child(96) { left: 97%; animation-duration: 4.3s; animation-delay: 0.8s; font-size: 1.7rem; }
.snowflake:nth-child(97) { left: 1%; animation-duration: 3.2s; animation-delay: 0.5s; font-size: 1.1rem; }
.snowflake:nth-child(98) { left: 99%; animation-duration: 3.8s; animation-delay: 1s; font-size: 1.5rem; }
.snowflake:nth-child(99) { left: 6.5%; animation-duration: 2.9s; animation-delay: 0.7s; font-size: 1.3rem; }
.snowflake:nth-child(100) { left: 95.5%; animation-duration: 4.4s; animation-delay: 0.2s; font-size: 1.6rem; }

@keyframes fall {
    0% {
        top: -10%;
        transform: translateX(0) rotate(0deg);
    }
    100% {
        top: 110%;
        transform: translateX(100px) rotate(360deg);
    }
}

/* ===================================
   HERO SECTION
   =================================== */
/* ===================================
   HERO SECTION WITH WALLPAPER
   =================================== */
.hero-section-wallpaper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 2rem 2rem;
    overflow: hidden;
    gap: 2rem;
}

.hero-section-wallpaper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 30, 0.45);
    z-index: 2;
    pointer-events: none;
}

.hero-wallpaper-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    pointer-events: none;
    filter: brightness(0.7);
}

.hero-wallpaper-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 20, 0.5);
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-wallpaper-image {
        position: fixed;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        pointer-events: none;
    }
}

/* Main Tagline (Outside Box) */
.hero-main-tagline {
    font-family: 'Lora', serif;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #e0f0ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 
        3px 3px 8px rgba(0, 0, 0, 0.9),
        0 0 50px rgba(160, 216, 255, 0.9),
        0 0 25px rgba(255, 255, 255, 0.6);
    z-index: 10;
    position: relative;
    padding: 1rem 2rem;
    margin-top: -8vh;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.7));
}

.hero-content-wallpaper {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 400px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(200, 220, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 1.5rem 1.5rem;
    margin-top: 2vh;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.9),
        0 0 50px rgba(255, 255, 255, 0.3),
        0 8px 32px 0 rgba(31, 38, 135, 0.37),
        inset 0 3px 0 rgba(255, 255, 255, 0.25),
        inset 0 -2px 15px rgba(173, 216, 230, 0.2);
}

/* Gift Box - Bottom Left Corner */
.hero-content-wallpaper::before {
    content: '🎁';
    position: absolute;
    bottom: -25px;
    left: -25px;
    font-size: 4.5rem;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
    animation: giftBounce 2s ease-in-out infinite;
    z-index: 20;
    transform: rotate(-15deg);
}

/* Christmas Ornament - Top Right Corner */
.hero-content-wallpaper::after {
    content: '🎄';
    position: absolute;
    top: -30px;
    right: -20px;
    font-size: 3.5rem;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5));
    animation: ornamentSwing 3s ease-in-out infinite;
    z-index: 20;
}

@keyframes giftBounce {
    0%, 100% { 
        transform: rotate(-15deg) translateY(0) scale(1); 
    }
    50% { 
        transform: rotate(-15deg) translateY(-8px) scale(1.05); 
    }
}

@keyframes ornamentSwing {
    0%, 100% { 
        transform: rotate(0deg); 
    }
    25% { 
        transform: rotate(8deg); 
    }
    75% { 
        transform: rotate(-8deg); 
    }
}

/* Decorative Divider */
.divider-stars {
    font-size: 1.2rem;
    color: #e0f0ff;
    margin: 1.5rem 0 0.5rem 0;
    letter-spacing: 8px;
    filter: drop-shadow(0 0 8px rgba(160, 216, 255, 0.6));
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { 
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(160, 216, 255, 0.6));
    }
    50% { 
        opacity: 0.7;
        filter: drop-shadow(0 0 15px rgba(160, 216, 255, 0.9));
    }
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
    position: relative;
    padding: 0.5rem 2rem 1rem;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    margin-top: -2%;
}

.stats-container {
    max-width: 400px;
    width: 100%;
}

/* User Counter */
.user-counter {
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid #e0f0ff;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(160, 216, 255, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

.counter-number {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #e0f0ff;
    text-shadow: 0 0 10px rgba(160, 216, 255, 0.5);
    line-height: 1;
    margin-bottom: 0.3rem;
    animation: counterPulse 2s ease-in-out infinite;
}

.counter-label {
    font-size: 0.85rem;
    color: #e0f0ff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-family: 'Lora', serif;
}

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

/* ===================================
   HOW TO WORK SECTION
   =================================== */
.how-to-work-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 2rem;
    background: 
        radial-gradient(circle at 20% 80%, rgba(196, 30, 58, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(15, 81, 50, 0.3) 0%, transparent 50%),
        var(--gradient-festive);
    overflow: hidden;
}

.section-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

.section-title {
    font-family: 'Lora', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #e0f0ff;
    text-shadow: 0 0 10px rgba(160, 216, 255, 0.5);
    margin-bottom: 3rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    background: rgba(0, 0, 0, 0.65);
    border: 3px solid #e0f0ff;
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(15px) saturate(120%);
    -webkit-backdrop-filter: blur(15px) saturate(120%);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: #fff;
    box-shadow: 0 15px 40px rgba(160, 216, 255, 0.4);
}

/* Step Card 3 & 4 - Left Aligned Content, Center Title */
.step-card-left-aligned {
    text-align: left;
}

.step-card-left-aligned .step-number {
    text-align: center;
}

.step-card-left-aligned .step-title {
    text-align: center;
}

.step-card-left-aligned .step-description {
    margin-left: 0;
}

.step-number {
    font-family: 'Lora', serif;
    font-size: 3.75rem;
    font-weight: 900;
    color: #e0f0ff;
    text-shadow: 0 0 10px rgba(160, 216, 255, 0.5);
    margin-bottom: 1rem;
}

.step-title {
    font-family: 'Modak', cursive;
    font-size: 2.875rem;
    font-weight: 400;
    color: #e0f0ff;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-shadow: none;
}

.step-description {
    font-family: 'Lora', serif;
    font-size: 1.19rem;
    font-weight: 400;
    color: #e0f0ff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
    letter-spacing: 0.3px;
}

.step-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border: 3px solid #e0f0ff;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Security Warning Box */
.security-warning {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 193, 7, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin: 1.2rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    text-align: left;
}

.security-warning:hover {
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.warning-icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.warning-content {
    flex: 1;
    text-align: left;
}

.warning-title {
    display: block;
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.4rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.warning-text {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: #e0f0ff;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.warning-highlight {
    color: var(--gold);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .step-image {
        max-width: 100%;
        height: auto;
        border: 2px solid #e0f0ff;
    }
}

@media (max-width: 480px) {
    .step-image {
        max-width: 100%;
        height: auto;
        border: 2px solid #e0f0ff;
        margin-top: 0.75rem;
    }
}

.step-features {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Step Hint */
.step-hint {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 200, 100, 0.15) 0%, rgba(255, 180, 60, 0.1) 100%);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 200, 100, 0.4);
    margin: 1rem 0 1.5rem 0;
}

.hint-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(255, 200, 100, 0.6));
}

.hint-text {
    font-family: 'Lora', serif;
    color: #ffe5a0;
    font-size: 1.19rem;
    line-height: 1.6;
    font-style: italic;
    font-weight: 500;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #e0f0ff;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-label {
    font-family: 'Lora', serif;
    color: #e0f0ff;
    font-size: 1rem;
    font-weight: 700;
}

.feature-text {
    color: #e0f0ff;
    font-size: 1rem;
    line-height: 1.5;
    font-family: 'Lora', serif;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.02) 10px,
            rgba(255, 255, 255, 0.02) 20px
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
.main-title {
    font-family: 'Lora', serif;
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 0rem;
    text-shadow: 
        2px 2px 10px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(160, 216, 255, 0.3);
}

.title-line {
    display: block;
    color: #e0f0ff;
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.title-line.highlight {
    color: #e0f0ff;
    font-weight: 800;
    font-size: 1.15em;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(160, 216, 255, 0.7);
    letter-spacing: 0.5px;
    margin: 0.3rem 0;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.subtitle {
    font-size: clamp(0.85rem, 1.8vw, 1.05rem);
    font-weight: 400;
    font-style: italic;
    color: #e0f0ff;
    margin-bottom: 1.8rem;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    font-family: 'Lora', serif;
    line-height: 1.7;
}


/* ===================================
   COUNTDOWN TIMER
   =================================== */
.countdown-container {
    background: rgba(0, 0, 0, 0.4);
    border: 3px solid #e0f0ff;
    border-radius: 20px;
    padding: 1.5rem 1.5rem;
    margin: 1rem auto;
    max-width: 675px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(160, 216, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 
            0 10px 40px rgba(0, 0, 0, 0.5),
            0 0 20px rgba(160, 216, 255, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 10px 40px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(160, 216, 255, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

.countdown-title {
    font-family: 'Lora', serif;
    font-size: clamp(1.3rem, 3.5vw, 2.2rem);
    font-weight: 900;
    color: #e0f0ff;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(160, 216, 255, 0.5);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.time-value {
    font-size: clamp(1.875rem, 4.5vw, 3.375rem);
    font-weight: 800;
    color: #e0f0ff;
    line-height: 1;
    text-shadow: 0 0 10px rgba(160, 216, 255, 0.5);
    font-family: 'Lora', serif;
}

.time-label {
    font-size: clamp(0.75rem, 2vw, 1rem);
    font-weight: 600;
    color: #e0f0ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    font-family: 'Lora', serif;
}

.time-separator {
    font-size: clamp(1.125rem, 3vw, 1.875rem);
    font-weight: 600;
    color: #e0f0ff;
    margin: 0 0.5625rem;
    opacity: 0.6;
    align-self: center;
    margin-bottom: 1.125rem;
    font-family: 'Lora', serif;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ===================================
   CTA BUTTON
   =================================== */
.cta-button {
    margin-top: 2.5rem;
    padding: 1.3rem 3rem;
    font-size: clamp(0.95rem, 2.2vw, 1.15rem);
    font-weight: 700;
    color: #e0f0ff;
    background: linear-gradient(135deg, rgba(160, 216, 255, 0.3) 0%, rgba(100, 180, 255, 0.4) 50%, rgba(160, 216, 255, 0.3) 100%);
    border: 3px solid #e0f0ff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    box-shadow: 
        0 15px 40px rgba(160, 216, 255, 0.3),
        0 0 30px rgba(160, 216, 255, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Lora', serif;
    backdrop-filter: blur(10px);
}

.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 ease;
}

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

.cta-button:hover {
    transform: translateY(-10px) scale(1.12);
    box-shadow: 
        0 25px 60px rgba(160, 216, 255, 0.5),
        0 0 60px rgba(160, 216, 255, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    border-color: #fff;
    background: linear-gradient(135deg, rgba(180, 230, 255, 0.4) 0%, rgba(120, 200, 255, 0.5) 50%, rgba(180, 230, 255, 0.4) 100%);
}

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

.button-icon {
    font-size: 1.8rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ===================================
   DECORATIVE ELEMENTS
   =================================== */
.ornament {
    position: absolute;
    font-size: clamp(3rem, 8vw, 6rem);
    opacity: 0.6;
    animation: sway 3s ease-in-out infinite;
}

.ornament-left {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.ornament-right {
    top: 15%;
    right: 5%;
    animation-delay: 1s;
}

@keyframes sway {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

.floating-ornament {
    position: absolute;
    font-size: clamp(1.5rem, 4vw, 3rem);
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
}

.ornament-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.ornament-2 {
    top: 70%;
    left: 10%;
    animation-delay: 1.5s;
}

.ornament-3 {
    top: 25%;
    right: 15%;
    animation-delay: 3s;
}

.ornament-4 {
    top: 75%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* ===================================
   FUTURE SECTION
   =================================== */
.future-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

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

.coming-soon {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 2px dashed var(--gold);
    backdrop-filter: blur(10px);
}

.coming-soon h2 {
    font-family: 'Amore Christmas', cursive;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.coming-soon p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--cream);
    font-weight: 300;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(100, 150, 200, 0.15) 50%,
        rgba(50, 100, 150, 0.25) 100%);
    padding: 3rem 2rem 2rem;
    position: relative;
    z-index: 100;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ===================================
   UNIVERSITY SECTION
   =================================== */
.university-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.university-logo {
    display: none;
}

.university-name {
    font-family: 'Lora', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: #e0f0ff;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
    text-shadow: 0 0 15px rgba(150, 200, 255, 0.6);
}

.university-department {
    font-family: 'Lora', serif;
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.footer-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.deco-star {
    font-size: 1.2rem;
    color: #a0d8ff;
    animation: crystal-sparkle 3s ease-in-out infinite;
}

.deco-star:nth-child(1) { animation-delay: 0s; }
.deco-star:nth-child(3) { animation-delay: 1s; }

@keyframes crystal-sparkle {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1) rotate(0deg);
        text-shadow: 0 0 5px #a0d8ff;
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2) rotate(180deg);
        text-shadow: 0 0 20px #a0d8ff, 0 0 30px #fff;
    }
}

.deco-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(160, 216, 255, 0.8), 
        transparent);
    border-radius: 2px;
}

.deco-heart {
    font-size: 1.3rem;
    color: #a0d8ff;
    animation: snow-float 2.5s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(160, 216, 255, 0.8);
}

@keyframes snow-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(15deg); }
}

.footer-title {
    font-family: 'Lora', serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: #e0f0ff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(160, 216, 255, 0.5);
}

.developers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 1rem;
    margin: 1rem 0;
}

.developer-name {
    font-family: 'Lora', serif;
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(160, 216, 255, 0.3);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.developer-name::before {
    content: '❄';
    margin-right: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.7;
}

.developer-name::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 40%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 60%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.developer-name:hover {
    background: rgba(160, 216, 255, 0.2);
    border-color: rgba(160, 216, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 
        0 5px 20px rgba(160, 216, 255, 0.3),
        0 0 30px rgba(160, 216, 255, 0.2);
}

.developer-name:hover::after {
    left: 100%;
}

a.developer-name {
    color: #fff;
}

.copyright {
    font-family: 'Lora', serif;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    color: rgba(224, 240, 255, 0.6);
    margin-top: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-style: italic;
}

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .hero-section {
        padding: 1rem;
    }
    
    .countdown-container {
        padding: 2rem 1rem;
        margin: 2rem auto;
    }
    
    .countdown-timer {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0.5rem;
    }
    
    .time-unit {
        min-width: 70px;
    }
    
    .time-separator {
        margin: 0 0.25rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        width: 100%;
        max-width: 300px;
    }
    
    .ornament-left,
    .ornament-right {
        font-size: 2rem;
    }
    
    .floating-ornament {
        display: none;
    }
    
    .developers {
        gap: 0.75rem;
    }
    
    .footer-decoration .deco-line {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0.5rem;
    }
    
    .time-separator {
        display: block !important;
    }
    
    .time-unit {
        min-width: 60px;
    }
    
    .main-title {
        font-size: 1.2rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
}

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