/* ============================================
   XMAS CULT - Main Stylesheet
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    --red: #e63946;
    --red-dark: #c1121f;
    --green: #2dc653;
    --green-dark: #1a9f3c;
    --gold: #ffd60a;
    --gold-dark: #e6b800;
    --blue-light: #4cc9f0;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --dark: #0a0e17;
    --dark-lighter: #141b2d;
    --dark-card: rgba(20, 27, 45, 0.8);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    --font-display: 'Fredoka', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-glow-red: 0 0 20px rgba(230, 57, 70, 0.5);
    --shadow-glow-green: 0 0 20px rgba(45, 198, 83, 0.5);
    --shadow-glow-gold: 0 0 20px rgba(255, 214, 10, 0.5);
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-pill: 50px;
}

/* ---------- CUSTOM CHRISTMAS SCROLLBAR ---------- */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #0a0e17 0%, #1a1f35 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, 
        var(--red) 0%, 
        var(--red-dark) 25%,
        var(--green) 50%,
        var(--green-dark) 75%,
        var(--red) 100%
    );
    background-size: 100% 200%;
    border-radius: 10px;
    border: 2px solid var(--dark);
    animation: scrollbarGradient 3s ease infinite;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, 
        var(--gold) 0%, 
        var(--red) 33%,
        var(--green) 66%,
        var(--gold) 100%
    );
}

@keyframes scrollbarGradient {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 0% 100%; }
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--red) var(--dark);
}

/* ---------- LOADING SCREEN ---------- */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: linear-gradient(180deg, 
        #0a0e17 0%, 
        #0d1a2d 30%,
        #122136 50%,
        #1a1f35 70%,
        #0d1321 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1.2s ease, visibility 1.2s ease, transform 1.2s ease;
    overflow: hidden;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.1);
}

/* Loading Stars Background */
.loading-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 10px 20px, white, transparent),
        radial-gradient(2px 2px at 50px 80px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 100px 30px, white, transparent),
        radial-gradient(2px 2px at 180px 100px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 250px 150px, white, transparent),
        radial-gradient(3px 3px at 320px 40px, rgba(255, 214, 10, 0.9), transparent),
        radial-gradient(2px 2px at 400px 180px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 480px 60px, white, transparent),
        radial-gradient(2px 2px at 550px 120px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(3px 3px at 620px 200px, rgba(255, 214, 10, 0.8), transparent);
    background-size: 700px 250px;
    animation: loadingTwinkle 3s ease-in-out infinite;
}

.loading-stars-2 {
    background-position: 350px 125px;
    animation-delay: 1.5s;
}

@keyframes loadingTwinkle {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Loading Christmas Lights */
.loading-lights {
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 10;
}

.loading-lights-top {
    top: 0;
}

.loading-lights-bottom {
    bottom: 0;
}

.loading-wire {
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #1a1a1a 5%, 
        #1a1a1a 95%, 
        transparent 100%
    );
    border-radius: 2px;
}

.loading-lights-bottom .loading-wire {
    top: auto;
    bottom: 8px;
}

.loading-bulb {
    position: absolute;
    left: var(--pos);
    width: 18px;
    height: 28px;
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
    animation: bulbPulse 1.2s ease-in-out infinite;
    animation-delay: var(--delay);
    transform-origin: top center;
}

.loading-lights-top .loading-bulb {
    top: 10px;
}

.loading-lights-bottom .loading-bulb {
    bottom: 10px;
    transform: rotate(180deg);
}

.loading-bulb::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 12px;
    background: linear-gradient(180deg, #444 0%, #222 100%);
    border-radius: 3px 3px 0 0;
}

.loading-lights-bottom .loading-bulb::before {
    top: auto;
    bottom: -10px;
    transform: translateX(-50%) rotate(180deg);
}

.loading-bulb.red {
    background: radial-gradient(circle at 30% 30%, #ff6b6b, #e63946);
    box-shadow: 0 0 25px #e63946, 0 0 50px rgba(230, 57, 70, 0.6), 0 0 80px rgba(230, 57, 70, 0.3);
}

.loading-bulb.green {
    background: radial-gradient(circle at 30% 30%, #5dff7d, #2dc653);
    box-shadow: 0 0 25px #2dc653, 0 0 50px rgba(45, 198, 83, 0.6), 0 0 80px rgba(45, 198, 83, 0.3);
}

.loading-bulb.gold {
    background: radial-gradient(circle at 30% 30%, #ffe66d, #ffd60a);
    box-shadow: 0 0 25px #ffd60a, 0 0 50px rgba(255, 214, 10, 0.6), 0 0 80px rgba(255, 214, 10, 0.3);
}

.loading-bulb.blue {
    background: radial-gradient(circle at 30% 30%, #7ee8fa, #4cc9f0);
    box-shadow: 0 0 25px #4cc9f0, 0 0 50px rgba(76, 201, 240, 0.6), 0 0 80px rgba(76, 201, 240, 0.3);
}

@keyframes bulbPulse {
    0%, 100% {
        opacity: 1;
        filter: brightness(1.2);
    }
    50% {
        opacity: 0.4;
        filter: brightness(0.6);
    }
}

/* Loading Content */
.loading-content {
    text-align: center;
    z-index: 20;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Floating Ornaments */
.loading-ornament {
    position: fixed;
    left: var(--x);
    top: var(--y);
    font-size: var(--size);
    animation: floatOrnament 4s ease-in-out infinite;
    animation-delay: var(--delay);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    z-index: 5;
}

@keyframes floatOrnament {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
    }
    25% {
        transform: translateY(-15px) rotate(5deg) scale(1.05);
    }
    50% { 
        transform: translateY(-25px) rotate(0deg) scale(1.1); 
    }
    75% {
        transform: translateY(-15px) rotate(-5deg) scale(1.05);
    }
}

/* Loading Logo */
.loading-logo-container {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, 
        rgba(230, 57, 70, 0.4) 0%, 
        rgba(45, 198, 83, 0.2) 40%, 
        transparent 70%
    );
    border-radius: 50%;
    animation: logoGlow 3s ease-in-out infinite;
    filter: blur(30px);
}

@keyframes logoGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

.loading-logo {
    width: 200px;
    height: auto;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    display: block;
    animation: logoFloat 3s ease-in-out infinite, logoRotate 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(230, 57, 70, 0.5));
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes logoRotate {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(230, 57, 70, 0.5)) hue-rotate(0deg); }
    33% { filter: drop-shadow(0 0 40px rgba(45, 198, 83, 0.6)) hue-rotate(30deg); }
    66% { filter: drop-shadow(0 0 35px rgba(255, 214, 10, 0.5)) hue-rotate(-30deg); }
}

/* Loading Text */
.loading-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
}

.loading-letter {
    display: inline-block;
    color: var(--white);
    animation: letterBounce 1.5s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.08s);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.loading-letter.cult {
    color: var(--green);
    text-shadow: 0 0 20px rgba(45, 198, 83, 0.8), 0 0 40px rgba(45, 198, 83, 0.4);
}

.loading-letter.space {
    width: 15px;
}

@keyframes letterBounce {
    0%, 100% { 
        transform: translateY(0) scale(1); 
    }
    50% { 
        transform: translateY(-10px) scale(1.1); 
    }
}

/* Progress Bar */
.loading-progress-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.loading-progress-bar {
    width: 300px;
    max-width: 80vw;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.loading-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, 
        var(--red) 0%, 
        var(--gold) 25%, 
        var(--green) 50%, 
        var(--gold) 75%, 
        var(--red) 100%
    );
    background-size: 200% 100%;
    border-radius: 20px;
    transition: width 0.3s ease;
    animation: progressShimmer 2s linear infinite;
}

.loading-progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    animation: progressGlow 1.5s ease-in-out infinite;
}

@keyframes progressShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes progressGlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

.loading-percentage {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    text-shadow: 0 0 15px rgba(255, 214, 10, 0.5);
}

/* Santa Sleigh */
.santa-sleigh {
    position: absolute;
    font-size: 2.5rem;
    bottom: 100px;
    left: -100px;
    animation: santaFly 8s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    z-index: 30;
}

@keyframes santaFly {
    0% {
        left: -100px;
        bottom: 100px;
        transform: rotate(-5deg);
    }
    25% {
        bottom: 150px;
        transform: rotate(0deg);
    }
    50% {
        bottom: 120px;
        transform: rotate(5deg);
    }
    75% {
        bottom: 160px;
        transform: rotate(0deg);
    }
    100% {
        left: calc(100% + 100px);
        bottom: 100px;
        transform: rotate(-5deg);
    }
}

/* Loading Snowflakes */
.loading-snow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Hide main content during loading */
body.loading .navbar,
body.loading #snowfall {
    opacity: 0;
    pointer-events: none;
}

body.loading {
    overflow: hidden;
}

/* Mobile adjustments for loading screen */
@media (max-width: 768px) {
    .loading-logo {
        width: 150px;
    }
    
    .loading-logo-glow {
        width: 180px;
        height: 180px;
    }
    
    .loading-bulb {
        width: 14px;
        height: 22px;
    }
    
    .loading-ornament {
        display: none;
    }
    
    .santa-sleigh {
        font-size: 1.8rem;
        bottom: 80px;
    }
    
    .loading-text {
        font-size: 1.3rem;
    }
    
    .loading-progress-bar {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .loading-logo {
        width: 120px;
    }
    
    .loading-bulb {
        width: 10px;
        height: 16px;
    }
    
    .loading-text {
        font-size: 1.1rem;
    }
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- SNOWFALL CONTAINER ---------- */
#snowfall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -20px;
    color: var(--white);
    font-size: 1rem;
    opacity: 0.8;
    animation: snowfall linear infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@keyframes snowfall {
    0% {
        transform: translateY(-20px) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: var(--transition-medium);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-ca {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 20px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-medium);
}

.btn-ca:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: var(--shadow-glow-gold);
}

.btn-chart {
    background: var(--green);
    color: var(--dark);
    padding: 10px 24px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-medium);
}

.btn-chart:hover {
    background: var(--green-dark);
    box-shadow: var(--shadow-glow-green);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition-medium);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ---------- HERO SECTION ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
    background: linear-gradient(180deg, 
        var(--dark) 0%, 
        #0d1321 50%, 
        #1a1f35 100%
    );
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.stars, .stars2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, white, transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 230px 180px, white, transparent),
        radial-gradient(2px 2px at 300px 50px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 350px 200px, white, transparent),
        radial-gradient(2px 2px at 420px 90px, rgba(255, 255, 255, 0.8), transparent);
    background-size: 500px 300px;
    animation: twinkle 5s ease-in-out infinite;
}

.stars2 {
    background-position: 50% 50%;
    animation-delay: 2.5s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 900px;
}

.hero-logo {
    width: 280px;
    height: auto;
    margin: 0 auto 40px;
    animation: heroLogoFloat 3s ease-in-out infinite, heroLogoGlow 4s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(230, 57, 70, 0.4));
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
}

@keyframes heroLogoGlow {
    0%, 100% { filter: drop-shadow(0 0 40px rgba(230, 57, 70, 0.4)); }
    33% { filter: drop-shadow(0 0 50px rgba(45, 198, 83, 0.5)); }
    66% { filter: drop-shadow(0 0 45px rgba(255, 214, 10, 0.4)); }
}

/* Hero Decorations */
.hero-decorations {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-deco {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 2.5rem;
    transform: translate(var(--x), var(--y));
    animation: heroDeco 5s ease-in-out infinite;
    animation-delay: var(--delay);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

@keyframes heroDeco {
    0%, 100% { 
        opacity: 0.8;
        transform: translate(var(--x), var(--y)) rotate(0deg) scale(1); 
    }
    25% { 
        opacity: 1;
        transform: translate(calc(var(--x) + 10px), calc(var(--y) - 15px)) rotate(5deg) scale(1.1); 
    }
    50% { 
        opacity: 0.9;
        transform: translate(calc(var(--x) - 5px), calc(var(--y) - 25px)) rotate(0deg) scale(1.05); 
    }
    75% { 
        opacity: 1;
        transform: translate(calc(var(--x) + 5px), calc(var(--y) - 10px)) rotate(-5deg) scale(1.1); 
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.title-line {
    display: block;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.title-line.highlight {
    color: var(--green);
    text-shadow: 0 0 40px rgba(45, 198, 83, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 30px rgba(45, 198, 83, 0.5); }
    to { text-shadow: 0 0 50px rgba(45, 198, 83, 0.8), 0 0 80px rgba(45, 198, 83, 0.4); }
}

/* Animated Title Letters */
.animated-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
}

.title-letter {
    display: inline-block;
    animation: titleLetterBounce 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.05s);
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.title-letter.red {
    color: var(--white);
    animation: titleLetterColorSwap 1.5s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.08s);
}

.title-letter.cult {
    color: var(--green);
    text-shadow: 0 0 30px rgba(45, 198, 83, 0.8), 0 0 60px rgba(45, 198, 83, 0.4);
    animation: titleCultGlow 1.5s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

.title-letter.space {
    width: 15px;
}

@keyframes titleLetterBounce {
    0%, 100% { 
        transform: translateY(0) scale(1);
    }
    50% { 
        transform: translateY(-8px) scale(1.05);
    }
}

@keyframes titleLetterColorSwap {
    0%, 100% { 
        color: var(--white);
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
        transform: translateY(0);
    }
    50% { 
        color: var(--red);
        text-shadow: 0 0 30px rgba(230, 57, 70, 0.8), 0 0 60px rgba(230, 57, 70, 0.4);
        transform: translateY(-5px);
    }
}

@keyframes titleCultGlow {
    0%, 100% { 
        color: var(--green);
        text-shadow: 0 0 30px rgba(45, 198, 83, 0.8), 0 0 60px rgba(45, 198, 83, 0.4);
        transform: translateY(0) scale(1);
    }
    50% { 
        color: #5dff7d;
        text-shadow: 0 0 50px rgba(45, 198, 83, 1), 0 0 100px rgba(45, 198, 83, 0.6);
        transform: translateY(-8px) scale(1.1);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
}

.btn-primary {
    background: var(--green);
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(45, 198, 83, 0.3);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow-green);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Copy Contract Button */
.btn-copy-ca {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-copy-ca::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-copy-ca:hover {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4), var(--shadow-glow-red);
}

.btn-icon {
    margin-right: 8px;
    font-size: 1.1em;
}

/* ---------- CHRISTMAS COPY POPUP ---------- */
.copy-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.copy-popup.active {
    opacity: 1;
    visibility: visible;
}

.copy-popup-content {
    background: linear-gradient(180deg, #1a2744 0%, #0d1321 100%);
    border: 3px solid var(--red);
    border-radius: var(--border-radius-lg);
    padding: 40px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: scale(0.5) rotate(-10deg);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 400px;
    box-shadow: 0 0 60px rgba(230, 57, 70, 0.3), 0 0 100px rgba(45, 198, 83, 0.2);
}

.copy-popup.active .copy-popup-content {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

.popup-snow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.popup-lights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 10px;
}

.popup-bulb {
    width: 12px;
    height: 18px;
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
    animation: popupBulbGlow 0.8s ease-in-out infinite alternate;
}

.popup-bulb.red {
    background: var(--red);
    box-shadow: 0 0 15px var(--red), 0 0 30px var(--red);
}

.popup-bulb.green {
    background: var(--green);
    box-shadow: 0 0 15px var(--green), 0 0 30px var(--green);
    animation-delay: 0.2s;
}

.popup-bulb.gold {
    background: var(--gold);
    box-shadow: 0 0 15px var(--gold), 0 0 30px var(--gold);
    animation-delay: 0.4s;
}

.popup-bulb.blue {
    background: var(--blue-light);
    box-shadow: 0 0 15px var(--blue-light), 0 0 30px var(--blue-light);
    animation-delay: 0.6s;
}

@keyframes popupBulbGlow {
    0% { opacity: 0.5; filter: brightness(0.7); }
    100% { opacity: 1; filter: brightness(1.3); }
}

.popup-icon {
    font-size: 4rem;
    margin: 20px 0;
    animation: popupIconBounce 1s ease-in-out infinite;
}

@keyframes popupIconBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

.popup-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--green);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(45, 198, 83, 0.5);
}

.popup-message {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 20px;
}

.popup-decorations {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
}

.popup-decorations span {
    animation: popupDecoFloat 2s ease-in-out infinite;
}

.popup-decorations span:nth-child(1) { animation-delay: 0s; }
.popup-decorations span:nth-child(2) { animation-delay: 0.2s; }
.popup-decorations span:nth-child(3) { animation-delay: 0.4s; }
.popup-decorations span:nth-child(4) { animation-delay: 0.6s; }
.popup-decorations span:nth-child(5) { animation-delay: 0.8s; }

@keyframes popupDecoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

/* ---------- CHRISTMAS LIGHTS ---------- */
.christmas-lights {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 20;
    overflow: hidden;
}

.hero-lights {
    bottom: 0;
}

.footer-lights {
    position: relative;
    margin-bottom: -10px;
}

.light-string {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    position: relative;
}

.light-string::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
}

.light {
    width: 16px;
    height: 24px;
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
    position: relative;
    animation: bulb-glow 1.5s ease-in-out infinite;
}

.light::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 10px;
    background: #333;
    border-radius: 2px;
}

.light.red {
    background: var(--red);
    box-shadow: 0 0 20px var(--red), 0 0 40px var(--red);
    animation-delay: 0s;
}

.light.green {
    background: var(--green);
    box-shadow: 0 0 20px var(--green), 0 0 40px var(--green);
    animation-delay: 0.3s;
}

.light.gold {
    background: var(--gold);
    box-shadow: 0 0 20px var(--gold), 0 0 40px var(--gold);
    animation-delay: 0.6s;
}

.light.blue {
    background: var(--blue-light);
    box-shadow: 0 0 20px var(--blue-light), 0 0 40px var(--blue-light);
    animation-delay: 0.9s;
}

@keyframes bulb-glow {
    0%, 100% {
        opacity: 1;
        filter: brightness(1);
    }
    50% {
        opacity: 0.6;
        filter: brightness(0.7);
    }
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1f35 0%, var(--dark) 100%);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

/* ========== SNOW GLOBE ========== */
.snow-globe {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Glass Dome */
.globe-glass {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 30%, 
        rgba(10, 14, 23, 0.8) 100%
    );
    border: 4px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 60px rgba(45, 198, 83, 0.2),
        0 0 100px rgba(230, 57, 70, 0.1),
        inset 0 0 80px rgba(255, 255, 255, 0.05),
        inset 0 -30px 60px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Glass shine effect */
.glass-shine {
    position: absolute;
    top: 8%;
    left: 15%;
    width: 80px;
    height: 40px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.5) 0%, 
        rgba(255, 255, 255, 0.1) 100%
    );
    border-radius: 50%;
    transform: rotate(-30deg);
    filter: blur(3px);
    z-index: 10;
}

.glass-shine-2 {
    position: absolute;
    top: 15%;
    left: 10%;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.8) 0%, 
        transparent 70%
    );
    border-radius: 50%;
    z-index: 10;
}

/* Content inside globe */
.globe-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    height: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.globe-content img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(230, 57, 70, 0.3));
    animation: globeLogoFloat 4s ease-in-out infinite;
}

@keyframes globeLogoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

/* Inner glow effect */
.globe-inner-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40%;
    background: radial-gradient(ellipse at bottom, 
        rgba(45, 198, 83, 0.2) 0%, 
        rgba(230, 57, 70, 0.1) 40%,
        transparent 70%
    );
    z-index: 1;
}

/* Snow inside globe */
.globe-snow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 8;
    overflow: hidden;
    border-radius: 50%;
}

.globe-snowflake {
    position: absolute;
    color: white;
    opacity: 0.9;
    animation: globeSnowfall linear infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

@keyframes globeSnowfall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(320px) rotate(360deg);
        opacity: 0;
    }
}

/* ========== GLOBE BASE/STAND ========== */
.globe-base {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -20px;
    z-index: 1;
}

.base-top {
    width: 180px;
    height: 25px;
    background: linear-gradient(180deg, 
        #c9a227 0%, 
        #f4d03f 20%, 
        #c9a227 40%,
        #8b6914 100%
    );
    border-radius: 10px 10px 0 0;
    box-shadow: 
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.3);
}

.base-middle {
    width: 160px;
    height: 45px;
    background: linear-gradient(180deg, 
        #8b4513 0%, 
        #a0522d 20%, 
        #8b4513 50%,
        #5d3a1a 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
}

.base-text {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: #f4d03f;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.base-bottom {
    width: 180px;
    height: 20px;
    background: linear-gradient(180deg, 
        #c9a227 0%, 
        #f4d03f 30%, 
        #c9a227 60%,
        #8b6914 100%
    );
    border-radius: 0 0 5px 5px;
    box-shadow: 
        inset 0 -2px 4px rgba(0, 0, 0, 0.3),
        0 3px 6px rgba(0, 0, 0, 0.4);
}

.base-plate {
    width: 220px;
    height: 15px;
    background: linear-gradient(180deg, 
        #5d3a1a 0%, 
        #8b4513 50%, 
        #3d2510 100%
    );
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    margin-top: -2px;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Snow Globe hover effect */
.snow-globe:hover .globe-glass {
    box-shadow: 
        0 0 80px rgba(45, 198, 83, 0.3),
        0 0 120px rgba(230, 57, 70, 0.2),
        inset 0 0 100px rgba(255, 255, 255, 0.08),
        inset 0 -30px 60px rgba(0, 0, 0, 0.3);
}

.snow-globe:hover .globe-content img {
    filter: drop-shadow(0 0 30px rgba(230, 57, 70, 0.5));
}

/* ========== FLOATING ORNAMENTS ========== */
.floating-ornament {
    position: absolute;
    font-size: 2.2rem;
    animation: float-ornament 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    z-index: 10;
}

.ornament-1 {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.ornament-2 {
    top: 0%;
    right: 15%;
    animation-delay: 0.8s;
}

.ornament-3 {
    bottom: 15%;
    right: 0%;
    animation-delay: 1.6s;
}

.ornament-4 {
    bottom: 25%;
    left: 0%;
    animation-delay: 0.4s;
    font-size: 1.8rem;
}

.ornament-5 {
    top: 40%;
    right: 0%;
    animation-delay: 1.2s;
    font-size: 2rem;
}

@keyframes float-ornament {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.about-content {
    padding-right: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title.center {
    text-align: center;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
    margin-bottom: 30px;
}

.title-underline.center {
    margin-left: auto;
    margin-right: auto;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dark-card);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
}

.social-btn svg {
    width: 22px;
    height: 22px;
}

.social-btn:hover {
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-green);
}

/* ---------- XMAS GALLERY SECTION ---------- */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark) 0%, #0d1a2d 50%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--dark-card);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(230, 57, 70, 0.7) 0%, 
        rgba(45, 198, 83, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(255, 214, 10, 0.3), var(--shadow-glow-gold);
    z-index: 10;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* Different border colors on hover for variety */
.gallery-item:nth-child(4n+1):hover {
    border-color: var(--red);
    box-shadow: 0 10px 40px rgba(230, 57, 70, 0.3), var(--shadow-glow-red);
}

.gallery-item:nth-child(4n+2):hover {
    border-color: var(--green);
    box-shadow: 0 10px 40px rgba(45, 198, 83, 0.3), var(--shadow-glow-green);
}

.gallery-item:nth-child(4n+3):hover {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(255, 214, 10, 0.3), var(--shadow-glow-gold);
}

.gallery-item:nth-child(4n+4):hover {
    border-color: var(--blue-light);
    box-shadow: 0 10px 40px rgba(76, 201, 240, 0.3), 0 0 20px rgba(76, 201, 240, 0.5);
}

/* Gallery Christmas Lights */
.gallery-lights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.g-light {
    width: 20px;
    height: 30px;
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
    animation: galleryLightPulse 1.5s ease-in-out infinite;
}

.g-light.red {
    background: radial-gradient(circle at 30% 30%, #ff6b6b, var(--red));
    box-shadow: 0 0 20px var(--red), 0 0 40px var(--red);
    animation-delay: 0s;
}

.g-light.green {
    background: radial-gradient(circle at 30% 30%, #5dff7d, var(--green));
    box-shadow: 0 0 20px var(--green), 0 0 40px var(--green);
    animation-delay: 0.3s;
}

.g-light.gold {
    background: radial-gradient(circle at 30% 30%, #ffe66d, var(--gold));
    box-shadow: 0 0 20px var(--gold), 0 0 40px var(--gold);
    animation-delay: 0.6s;
}

.g-light.blue {
    background: radial-gradient(circle at 30% 30%, #7ee8fa, var(--blue-light));
    box-shadow: 0 0 20px var(--blue-light), 0 0 40px var(--blue-light);
    animation-delay: 0.9s;
}

@keyframes galleryLightPulse {
    0%, 100% { opacity: 1; filter: brightness(1.2); }
    50% { opacity: 0.5; filter: brightness(0.7); }
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.lightbox.active .lightbox-content img {
    transform: scale(1);
    opacity: 1;
}

.lightbox.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--red);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--green);
    border-color: var(--green);
    box-shadow: var(--shadow-glow-green);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 25px;
    border-radius: var(--border-radius-pill);
}

/* ---------- HOW TO BUY SECTION ---------- */
.how-to-buy-section {
    padding: 100px 0;
    background: var(--dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Ornament String Wire */
.ornament-string {
    position: absolute;
    top: 200px;
    left: 5%;
    right: 5%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #333 10%, 
        #444 50%, 
        #333 90%, 
        transparent 100%
    );
    border-radius: 2px;
    z-index: 0;
}

.how-to-buy-section {
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
    padding-top: 30px;
}

/* Christmas Ornament Style Cards */
.step-card {
    background: linear-gradient(180deg, rgba(20, 27, 45, 0.95) 0%, rgba(10, 14, 23, 0.98) 100%);
    border: 3px solid;
    border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
    padding: 50px 25px 35px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Ornament cap/hook */
.step-card::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 25px;
    background: linear-gradient(180deg, #888 0%, #555 50%, #888 100%);
    border-radius: 5px 5px 0 0;
    z-index: 2;
}

/* Ornament hook ring */
.step-card::after {
    content: '';
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border: 4px solid #666;
    border-radius: 50%;
    background: transparent;
}

/* Different colors for each ornament */
.step-card:nth-child(1) {
    border-color: var(--red);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.3), inset 0 0 60px rgba(230, 57, 70, 0.1);
}

.step-card:nth-child(2) {
    border-color: var(--green);
    box-shadow: 0 0 30px rgba(45, 198, 83, 0.3), inset 0 0 60px rgba(45, 198, 83, 0.1);
}

.step-card:nth-child(3) {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(255, 214, 10, 0.3), inset 0 0 60px rgba(255, 214, 10, 0.1);
}

.step-card:nth-child(4) {
    border-color: var(--blue-light);
    box-shadow: 0 0 30px rgba(76, 201, 240, 0.3), inset 0 0 60px rgba(76, 201, 240, 0.1);
}

/* Shine effect on ornaments */
.step-card .ornament-shine {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.step-card:hover {
    transform: translateY(-15px) rotate(-3deg);
}

.step-card:nth-child(1):hover {
    box-shadow: 0 0 50px rgba(230, 57, 70, 0.5), 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 80px rgba(230, 57, 70, 0.2);
}

.step-card:nth-child(2):hover {
    box-shadow: 0 0 50px rgba(45, 198, 83, 0.5), 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 80px rgba(45, 198, 83, 0.2);
}

.step-card:nth-child(3):hover {
    box-shadow: 0 0 50px rgba(255, 214, 10, 0.5), 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 80px rgba(255, 214, 10, 0.2);
}

.step-card:nth-child(4):hover {
    box-shadow: 0 0 50px rgba(76, 201, 240, 0.5), 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 80px rgba(76, 201, 240, 0.2);
}

/* Swinging animation */
.step-card {
    animation: ornamentSwing 4s ease-in-out infinite;
}

.step-card:nth-child(1) { animation-delay: 0s; }
.step-card:nth-child(2) { animation-delay: 0.5s; }
.step-card:nth-child(3) { animation-delay: 1s; }
.step-card:nth-child(4) { animation-delay: 1.5s; }

@keyframes ornamentSwing {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

.step-card:hover {
    animation: none;
}

.step-number {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.step-icon {
    font-size: 3rem;
    margin: 15px 0 20px;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------- TOKENOMICS SECTION ---------- */
.tokenomics-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark) 0%, #0d1321 100%);
    position: relative;
}

/* Wire connecting the light bulbs */
.lights-wire {
    position: absolute;
    top: 240px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 700px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #333 15%, 
        #444 50%, 
        #333 85%, 
        transparent 100%
    );
    border-radius: 2px;
    z-index: 0;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-top: 20px;
}

/* Bulb Shine Effect */
.bulb-shine {
    position: absolute;
    top: 20%;
    left: 25%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10;
}

/* Christmas Light Bulb Style Cards */
.token-card {
    background: linear-gradient(180deg, rgba(20, 27, 45, 0.95) 0%, rgba(10, 14, 23, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: 4px solid;
    border-radius: 50% 50% 50% 50% / 35% 35% 65% 65%;
    padding: 50px 30px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    min-height: 320px;
}

/* Light bulb cap */
.token-card::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 30px;
    background: linear-gradient(180deg, #777 0%, #444 50%, #666 100%);
    border-radius: 8px 8px 0 0;
    z-index: 2;
}

/* Screw threads on cap */
.token-card::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 15px;
    background: repeating-linear-gradient(
        0deg,
        #555 0px,
        #555 3px,
        #777 3px,
        #777 6px
    );
    border-radius: 0 0 5px 5px;
    z-index: 3;
}

/* First card - Red/Gold Christmas light */
.token-card:nth-child(1) {
    border-color: var(--red);
    box-shadow: 
        0 0 40px rgba(230, 57, 70, 0.4),
        0 0 80px rgba(230, 57, 70, 0.2),
        inset 0 0 60px rgba(230, 57, 70, 0.15);
    animation: lightGlowRed 2s ease-in-out infinite;
}

/* Second card - Green Christmas light */
.token-card:nth-child(2) {
    border-color: var(--green);
    box-shadow: 
        0 0 40px rgba(45, 198, 83, 0.4),
        0 0 80px rgba(45, 198, 83, 0.2),
        inset 0 0 60px rgba(45, 198, 83, 0.15);
    animation: lightGlowGreen 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes lightGlowRed {
    0%, 100% {
        box-shadow: 
            0 0 40px rgba(230, 57, 70, 0.4),
            0 0 80px rgba(230, 57, 70, 0.2),
            inset 0 0 60px rgba(230, 57, 70, 0.15);
        filter: brightness(1);
    }
    50% {
        box-shadow: 
            0 0 60px rgba(230, 57, 70, 0.6),
            0 0 120px rgba(230, 57, 70, 0.3),
            inset 0 0 80px rgba(230, 57, 70, 0.25);
        filter: brightness(1.1);
    }
}

@keyframes lightGlowGreen {
    0%, 100% {
        box-shadow: 
            0 0 40px rgba(45, 198, 83, 0.4),
            0 0 80px rgba(45, 198, 83, 0.2),
            inset 0 0 60px rgba(45, 198, 83, 0.15);
        filter: brightness(1);
    }
    50% {
        box-shadow: 
            0 0 60px rgba(45, 198, 83, 0.6),
            0 0 120px rgba(45, 198, 83, 0.3),
            inset 0 0 80px rgba(45, 198, 83, 0.25);
        filter: brightness(1.1);
    }
}

.token-card:hover {
    transform: translateY(-12px) scale(1.03);
}

.token-card:nth-child(1):hover {
    box-shadow: 
        0 0 80px rgba(230, 57, 70, 0.7),
        0 0 150px rgba(230, 57, 70, 0.4),
        0 30px 50px rgba(0, 0, 0, 0.4),
        inset 0 0 100px rgba(230, 57, 70, 0.3);
}

.token-card:nth-child(2):hover {
    box-shadow: 
        0 0 80px rgba(45, 198, 83, 0.7),
        0 0 150px rgba(45, 198, 83, 0.4),
        0 30px 50px rgba(0, 0, 0, 0.4),
        inset 0 0 100px rgba(45, 198, 83, 0.3);
}

.token-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.token-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.token-value {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.token-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tokenomics-note {
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 50px auto 0;
    line-height: 1.8;
    padding: 25px;
    background: rgba(45, 198, 83, 0.1);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--green);
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
    padding: 100px 0;
    background: var(--dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background: var(--dark-card);
    transition: var(--transition-medium);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item.active {
    border-color: var(--red);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-medium);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--red);
    transition: var(--transition-medium);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ---------- FOOTER ---------- */
.footer {
    background: #060912;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-disclaimer {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--green);
}

.footer-social .social-icons {
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ---------- RESPONSIVE DESIGN ---------- */

/* Tablet */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
    
    .ornament-string {
        display: none;
    }
    
    .lights-wire {
        display: none;
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu,
    .nav-buttons {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active,
    .nav-buttons.active {
        display: flex;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-buttons {
        gap: 15px;
        align-items: stretch;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-logo {
        width: 200px;
    }
    
    .hero-deco {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .animated-title {
        gap: 1px;
    }
    
    .title-letter.space {
        width: 10px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Snow Globe Mobile */
    .about-image {
        min-height: 420px;
    }
    
    .globe-glass {
        width: 250px;
        height: 250px;
    }
    
    .glass-shine {
        width: 60px;
        height: 30px;
    }
    
    .glass-shine-2 {
        width: 20px;
        height: 20px;
    }
    
    .base-top {
        width: 140px;
        height: 20px;
    }
    
    .base-middle {
        width: 125px;
        height: 35px;
    }
    
    .base-text {
        font-size: 0.7rem;
    }
    
    .base-bottom {
        width: 140px;
        height: 15px;
    }
    
    .base-plate {
        width: 170px;
        height: 12px;
    }
    
    .floating-ornament {
        font-size: 1.6rem;
    }
    
    .ornament-4,
    .ornament-5 {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item {
        border-width: 2px;
    }
    
    .gallery-icon {
        font-size: 1.8rem;
    }
    
    .gallery-lights {
        gap: 20px;
    }
    
    .g-light {
        width: 15px;
        height: 22px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .title-underline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-actions {
        justify-content: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
        gap: 60px;
    }
    
    .step-card {
        min-height: 260px;
        padding: 45px 20px 30px;
    }
    
    .step-card::before {
        width: 25px;
        height: 20px;
        top: -18px;
    }
    
    .step-card::after {
        width: 16px;
        height: 16px;
        top: -30px;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        gap: 60px;
    }
    
    .token-card {
        min-height: 280px;
        padding: 45px 25px 35px;
    }
    
    .token-card::before {
        width: 40px;
        height: 25px;
        top: -22px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-social .social-icons {
        justify-content: center;
    }
    
    .light-string {
        gap: 15px;
    }
    
    .light {
        width: 12px;
        height: 18px;
    }
    
    .floating-ornament {
        font-size: 1.8rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-logo {
        width: 160px;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .title-letter.space {
        width: 6px;
    }
    
    .animated-title {
        gap: 0px;
    }
    
    .copy-popup-content {
        padding: 30px 25px;
        margin: 20px;
    }
    
    .popup-icon {
        font-size: 3rem;
    }
    
    .popup-title {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .step-card {
        min-height: 240px;
        padding: 40px 18px 25px;
        border-width: 2px;
    }
    
    .token-card {
        min-height: 260px;
        padding: 40px 20px 30px;
        border-width: 3px;
    }
    
    .bulb-shine {
        width: 30px;
        height: 30px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .light-string {
        gap: 10px;
    }
}

