/* ===== NEFTY OPTIMIZED COUNTDOWN SYSTEM - CSS ===== */

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #0B0C10;
    color: #e5e7eb;
    overflow-x: hidden;
    position: relative;
}

/* ===== ENHANCED PARALLAX BACKGROUND ===== */
.parallax-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
}

.city-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(232, 65, 66, 0.15) 20%,
        rgba(255, 140, 0, 0.1) 40%,
        rgba(232, 65, 66, 0.15) 60%,
        transparent 100%);
    clip-path: polygon(0 100%, 3% 85%, 7% 90%, 12% 80%, 18% 85%, 23% 70%, 28% 75%, 33% 60%, 38% 80%, 43% 55%, 48% 70%, 53% 50%, 58% 75%, 63% 45%, 68% 80%, 73% 40%, 78% 70%, 83% 35%, 88% 75%, 93% 50%, 97% 85%, 100% 60%, 100% 100%);
    opacity: 0.6;
}

.matrix-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(232, 65, 66, 0.8) 1px, transparent 1px),
                radial-gradient(circle at 90% 40%, rgba(255, 140, 0, 0.6) 1px, transparent 1px),
                radial-gradient(circle at 50% 80%, rgba(255, 165, 0, 0.4) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 80px 80px;
    animation: matrix-drift 20s linear infinite;
    opacity: 0.3;
}

@keyframes matrix-drift {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

/* ===== ENHANCED PROGRESS TRACKER ===== */
.progress-tracker {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    width: 6px;
    height: 300px;
    background: rgba(232, 65, 66, 0.15);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.progress-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #E84142, #FF8C00);
    border-radius: 3px;
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(232, 65, 66, 0.6);
}

.progress-indicator {
    background: rgba(11, 12, 16, 0.95);
    border: 1px solid rgba(232, 65, 66, 0.4);
    border-radius: 20px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #FF8C00;
    backdrop-filter: blur(15px);
    text-align: center;
    min-width: 90px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ===== ENHANCED COUNTDOWN SYSTEM ===== */
.countdown-display {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11, 12, 16, 0.95);
    border: 1px solid rgba(255, 140, 0, 0.5);
    border-radius: 25px;
    padding: 1.2rem 2rem;
    z-index: 1001;
    backdrop-filter: blur(20px);
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    min-width: 280px;
    animation: slideInTop 0.5s ease-out;
}

.countdown-label {
    color: #FF8C00;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.countdown-timer {
    color: #e5e7eb;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

.countdown-timer.complete {
    color: #22c55e;
    animation: complete-glow 2s ease-in-out infinite alternate;
}

@keyframes complete-glow {
    0% { text-shadow: 0 0 20px rgba(34, 197, 94, 0.5); }
    100% { text-shadow: 0 0 30px rgba(34, 197, 94, 0.8); }
}

.countdown-progress-info {
    color: #9ca3af;
    font-size: 0.75rem;
    margin-top: 0.8rem;
    font-weight: 500;
}

/* ===== ENHANCED LOCK OVERLAYS ===== */
.day-scene.locked {
    position: relative;
    filter: grayscale(100%) brightness(0.2) blur(1px);
    transition: all 0.5s ease;
}

.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(11, 12, 16, 0.98) 0%, 
        rgba(31, 41, 55, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(20px);
}

.lock-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    max-width: 400px;
}

.lock-icon {
    font-size: 4rem;
    animation: lock-pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.4));
}

@keyframes lock-pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.8;
        filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.4));
    }
    50% { 
        transform: scale(1.1); 
        opacity: 1;
        filter: drop-shadow(0 0 30px rgba(232, 65, 66, 0.6));
    }
}

.lock-title {
    font-size: 2rem;
    font-weight: 700;
    color: #e5e7eb;
    margin: 0;
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
}

.lock-countdown {
    background: rgba(232, 65, 66, 0.1);
    border: 1px solid rgba(232, 65, 66, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 280px;
}

.lock-countdown-label {
    color: #FF8C00;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.lock-countdown-timer {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: #e5e7eb;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 1rem;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 2rem;
    color: #FF8C00;
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
}

.countdown-text {
    font-size: 0.7rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.lock-countdown-timer.urgent {
    animation: urgent-pulse 1s infinite;
}

@keyframes urgent-pulse {
    0%, 100% { 
        transform: scale(1); 
        border-color: rgba(232, 65, 66, 0.3);
    }
    50% { 
        transform: scale(1.02); 
        border-color: rgba(239, 68, 68, 0.6);
    }
}

.lock-countdown-timer.soon {
    animation: soon-pulse 1.5s infinite;
}

@keyframes soon-pulse {
    0%, 100% { 
        transform: scale(1); 
        border-color: rgba(255, 140, 0, 0.3);
    }
    50% { 
        transform: scale(1.01); 
        border-color: rgba(255, 140, 0, 0.6);
    }
}

.lock-hint {
    color: #9ca3af;
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ===== ENHANCED PROGRESS RING ===== */
.progress-ring-container {
    position: relative;
    margin: 1rem 0;
}

.progress-ring {
    transform: rotate(-90deg);
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.3));
}

.progress-ring-background {
    fill: none;
    stroke: rgba(232, 65, 66, 0.2);
    stroke-width: 4;
}

.progress-ring-fill {
    fill: none;
    stroke: url(#progressGradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 251;
    stroke-dashoffset: 251;
    transition: stroke-dashoffset 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-ring-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    font-weight: 700;
    color: #FF8C00;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

/* ===== STORY SCENES ===== */
.story-container {
    position: relative;
    z-index: 1;
}

.story-scene {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.scene-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
}

/* ===== HERO SCENE ===== */
.hero-scene {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        rgba(232, 65, 66, 0.1) 0%, 
        rgba(255, 140, 0, 0.05) 50%, 
        rgba(255, 165, 0, 0.1) 100%);
}

.nefty-logo {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #E84142, #FF8C00, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: logo-glow 3s ease-in-out infinite alternate;
}

@keyframes logo-glow {
    0% { 
        filter: drop-shadow(0 0 30px rgba(232, 65, 66, 0.6));
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 0 50px rgba(255, 140, 0, 0.9));
        transform: scale(1.02);
    }
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.accent {
    color: #FF8C00;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.4);
}

.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #FF8C00;
    font-size: 0.9rem;
    animation: bounce-hint 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.scroll-hint:hover {
    transform: scale(1.05);
    color: #E84142;
}

@keyframes bounce-hint {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: arrow-pulse 1.5s infinite;
}

@keyframes arrow-pulse {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

/* ===== SOCIAL SCENE STYLING ===== */
.social-scene {
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.08) 0%, 
        rgba(232, 65, 66, 0.05) 50%, 
        rgba(255, 165, 0, 0.08) 100%);
    min-height: 100vh;
    padding: 4rem 2rem;
}

.social-links-container {
    animation: slideInBottom 0.8s ease-out;
}

.social-link-card {
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

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

.social-link-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 140, 0, 0.6);
}

.social-link-card:active {
    transform: translateY(-4px) scale(1.01);
}

/* ===== WEEK DIVIDERS ===== */
.week-divider {
    background: linear-gradient(135deg, 
        rgba(232, 65, 66, 0.15) 0%, 
        rgba(255, 107, 71, 0.08) 50%, 
        rgba(211, 48, 49, 0.15) 100%);
    border-top: 1px solid rgba(232, 65, 66, 0.2);
    border-bottom: 1px solid rgba(232, 65, 66, 0.2);
}

.week-title {
    font-size: 3rem;
    font-weight: 800;
    color: #E84142;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(232, 65, 66, 0.5);
}

.week-subtitle {
    font-size: 1.5rem;
    color: #fca5a5;
    margin-bottom: 1rem;
    font-weight: 500;
}

.week-preview {
    font-size: 1.1rem;
    color: #fecaca;
    font-style: italic;
    opacity: 0.8;
}

/* ===== DAY SCENES ===== */
.day-scene {
    background: linear-gradient(135deg, 
        rgba(11, 12, 16, 0.9) 0%, 
        rgba(31, 41, 55, 0.6) 50%, 
        rgba(11, 12, 16, 0.9) 100%);
    position: relative;
}

.day-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.day-number {
    font-size: 3rem;
    font-weight: 800;
    color: #FF8C00;
    animation: day-number-pulse 3s ease-in-out infinite;
}

@keyframes day-number-pulse {
    0%, 100% { 
        text-shadow: 0 0 25px rgba(255, 140, 0, 0.6);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 40px rgba(255, 140, 0, 0.9);
        transform: scale(1.05);
    }
}

.day-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e5e7eb;
    text-align: center;
    max-width: 400px;
}

.day-visual {
    position: relative;
    margin: 3rem 0;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.day-emoji {
    font-size: 6rem;
    animation: emoji-float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(255, 140, 0, 0.4));
    transition: all 0.3s ease;
}

.day-emoji:hover {
    transform: scale(1.1) rotate(10deg);
    filter: drop-shadow(0 0 35px rgba(255, 140, 0, 0.7));
}

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

.day-quote {
    font-size: 1.8rem;
    font-style: italic;
    color: #FF8C00;
    margin: 2rem 0;
    position: relative;
    line-height: 1.4;
    text-shadow: 0 0 25px rgba(255, 140, 0, 0.3);
}

.day-quote::before,
.day-quote::after {
    content: '"';
    font-size: 2.5rem;
    color: #E84142;
    position: absolute;
    top: -10px;
    opacity: 0.7;
    animation: quote-pulse 4s ease-in-out infinite;
}

.day-quote::before { left: -20px; }
.day-quote::after { right: -20px; }

@keyframes quote-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.day-description {
    font-size: 1.1rem;
    color: #d1d5db;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ===== SPECIAL SCENE EFFECTS ===== */
.day-scene.pivotal {
    background: linear-gradient(135deg, 
        rgba(232, 65, 66, 0.15) 0%, 
        rgba(255, 107, 71, 0.08) 50%, 
        rgba(211, 48, 49, 0.15) 100%);
}

.day-scene.pivotal .day-number {
    color: #E84142;
    animation: pivotal-pulse 2s ease-in-out infinite;
}

@keyframes pivotal-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.day-scene.pivotal .day-quote {
    color: #E84142;
    text-shadow: 0 0 20px rgba(232, 65, 66, 0.3);
}

.day-scene.final {
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.2) 0%, 
        rgba(255, 165, 0, 0.1) 50%, 
        rgba(255, 184, 77, 0.2) 100%);
}

.day-scene.final .day-number {
    color: #FF8C00;
    animation: final-transformation 3s ease-in-out infinite;
}

@keyframes final-transformation {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        text-shadow: 0 0 30px rgba(255, 140, 0, 0.8);
    }
    33% { 
        transform: scale(1.1) rotate(2deg); 
        text-shadow: 0 0 50px rgba(255, 140, 0, 1);
    }
    66% { 
        transform: scale(1.05) rotate(-2deg); 
        text-shadow: 0 0 40px rgba(255, 165, 0, 0.9);
    }
}

/* ===== CALL TO ACTION SCENE ===== */
.cta-scene {
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.15) 0%, 
        rgba(232, 65, 66, 0.1) 50%, 
        rgba(255, 165, 0, 0.15) 100%);
    min-height: 100vh;
    padding: 4rem 2rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF8C00;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.cta-description {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, #E84142, #FF8C00);
    border: none;
    border-radius: 50px;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 40px rgba(232, 65, 66, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

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

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.4);
}

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

@keyframes icon-bounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

/* ===== DEXSCREENER CHART STYLING ===== */
.chart-container {
    transition: all 0.3s ease;
}

.chart-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.1);
}

.dexscreener-embed {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.dexscreener-embed:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.dexscreener-embed iframe {
    transition: all 0.3s ease;
}

.chart-fallback a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

.link-card:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.link-card:active {
    transform: translateY(0) scale(1.01);
}

/* Loading animation for iframe */
.dexscreener-embed iframe {
    background: linear-gradient(
        90deg,
        #1a1a1a 25%,
        #2a2a2a 50%,
        #1a1a1a 75%
    );
    background-size: 200% 100%;
    animation: loading 2s infinite;
}

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

/* Stop loading animation when iframe loads */
.dexscreener-embed iframe:not([src=""]) {
    animation: none;
    background: #1a1a1a;
}

/* ===== ENHANCED UNLOCK ANIMATIONS ===== */
.unlock-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    pointer-events: none;
}

.unlock-burst {
    position: relative;
    width: 120px;
    height: 120px;
}

.unlock-particle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #FF8C00, #E84142);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.6);
}

.unlock-message {
    text-align: center;
    margin-top: 2rem;
}

.unlock-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: unlock-bounce 0.8s infinite alternate;
}

@keyframes unlock-bounce {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.3) rotate(10deg); }
}

.unlock-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
    margin-bottom: 0.5rem;
}

.unlock-subtext {
    font-size: 1rem;
    color: #9ca3af;
    opacity: 0.9;
}

/* ===== MOBILE OPTIMIZATIONS ===== */
@media (max-width: 768px) {
    /* Hide main countdown display on mobile */
    .countdown-display {
        display: none;
    }
    
    /* Mobile progress tracker */
    .progress-tracker {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        transform: none;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 1rem;
        gap: 1rem;
        background: rgba(11, 12, 16, 0.95);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(232, 65, 66, 0.3);
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
        animation: slideInBottom 0.5s ease-out;
    }
    
    .progress-bar {
        flex: 1;
        width: auto;
        height: 6px;
        margin: 0 1rem;
    }
    
    .progress-indicator {
        order: 1;
        min-width: auto;
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        flex-shrink: 0;
    }
    
    /* Mobile countdown tab */
    .mobile-countdown-tab {
        position: fixed;
        top: 20px;
        right: 20px;
        background: rgba(11, 12, 16, 0.9);
        border: 1px solid rgba(255, 140, 0, 0.4);
        border-radius: 20px;
        padding: 0.6rem 0.8rem;
        z-index: 1002;
        backdrop-filter: blur(15px);
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        min-width: 85px;
        text-align: center;
        animation: slideInRight 0.5s ease-out;
    }
    
    .mobile-countdown-tab:hover {
        transform: scale(1.05);
        border-color: rgba(255, 140, 0, 0.6);
    }
    
    .tab-label {
        color: #FF8C00;
        font-size: 0.65rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
    }
    
    .tab-timer {
        color: #e5e7eb;
        font-size: 0.75rem;
        font-weight: 700;
        font-family: 'Courier New', monospace;
    }
    
    /* Mobile lock adjustments */
    .lock-content {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .lock-icon {
        font-size: 3rem;
    }
    
    .lock-title {
        font-size: 1.5rem;
    }
    
    .lock-countdown-timer {
        font-size: 1.4rem;
    }
    
    .countdown-number {
        font-size: 1.6rem;
    }
    
    /* Mobile day scenes */
    .day-number {
        font-size: 2.5rem;
    }
    
    .day-title {
        font-size: 1.4rem;
    }
    
    .day-emoji {
        font-size: 4rem;
    }
    
    .day-quote {
        font-size: 1.4rem;
    }
    
    .day-quote::before,
    .day-quote::after {
        font-size: 2rem;
        top: -5px;
    }
    
    .day-quote::before {
        left: -15px;
    }
    
    .day-quote::after {
        right: -15px;
    }
    
    .nefty-logo {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .day-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .week-title {
        font-size: 2.5rem;
    }
    
    .week-subtitle {
        font-size: 1.3rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    /* Mobile chart optimizations */
    .dexscreener-embed {
        height: 300px;
        margin-bottom: 1.5rem;
    }
    
    .chart-container {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .link-card {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Mobile social section */
    .social-scene {
        padding: 3rem 1.5rem;
    }
    
    .social-links-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-link-card {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mobile-countdown-tab {
        top: 15px;
        right: 15px;
        padding: 0.5rem 0.6rem;
        min-width: 75px;
    }
    
    .tab-label {
        font-size: 0.6rem;
    }
    
    .tab-timer {
        font-size: 0.7rem;
    }
    
    .progress-tracker {
        padding: 0.8rem;
    }
    
    .day-number {
        font-size: 2rem;
    }
    
    .day-emoji {
        font-size: 3.5rem;
    }
    
    .day-quote {
        font-size: 1.2rem;
    }
    
    .nefty-logo {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .lock-content {
        padding: 1rem;
    }
    
    .lock-icon {
        font-size: 2.5rem;
    }
    
    .lock-title {
        font-size: 1.3rem;
    }
    
    .progress-ring {
        width: 70px;
        height: 70px;
    }
    
    .progress-ring-background,
    .progress-ring-fill {
        r: 30;
        stroke-dasharray: 188;
    }
    
    .progress-ring-text {
        font-size: 1.1rem;
    }
    
    /* Ultra-small mobile chart */
    .dexscreener-embed {
        height: 250px;
    }
    
    .chart-container {
        padding: 1rem;
    }
    
    .link-card {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .social-link-card {
        padding: 0.8rem;
        font-size: 0.8rem;
    }
    
    .social-scene {
        padding: 2rem 1rem;
    }
}

/* ===== ANIMATION KEYFRAMES ===== */
@keyframes slideInBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInTop {
    from {
        transform: translate(-50%, -100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

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

@keyframes welcome-glow {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(5deg); }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-hint,
    .day-emoji,
    .nefty-logo,
    .week-title,
    .day-number,
    .social-link-card,
    .dexscreener-embed {
        animation: none !important;
    }
}

/* ===== FOCUS STATES ===== */
.cta-button:focus,
.scroll-hint:focus,
.mobile-countdown-tab:focus,
.social-link-card:focus,
.link-card:focus {
    outline: 2px solid #FF8C00;
    outline-offset: 2px;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.story-scene,
.day-emoji,
.progress-fill,
.unlock-effect,
.parallax-layer,
.chart-container,
.link-card,
.social-link-card,
.dexscreener-embed {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    .progress-tracker {
        background: rgba(0, 0, 0, 0.9);
        border-top: 2px solid #FF8C00;
    }
    
    .progress-indicator {
        border: 2px solid #FF8C00;
        background: rgba(0, 0, 0, 0.9);
    }
    
    .countdown-display {
        background: rgba(0, 0, 0, 0.95);
        border: 2px solid #FF8C00;
    }
    
    .mobile-countdown-tab {
        background: rgba(0, 0, 0, 0.9);
        border: 2px solid #FF8C00;
    }
    
    .social-link-card {
        border: 2px solid currentColor;
        background: rgba(0, 0, 0, 0.8);
    }
    
    .chart-container {
        border: 2px solid rgba(255, 140, 0, 0.5);
        background: rgba(0, 0, 0, 0.9);
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .parallax-container,
    .progress-tracker,
    .countdown-display,
    .mobile-countdown-tab,
    .dexscreener-embed,
    .chart-container {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .story-scene {
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }
    
    .social-link-card {
        border: 1px solid #000;
        background: white;
        color: black;
    }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: light) {
    /* Optional: Add light mode overrides if needed */
    .social-link-card {
        backdrop-filter: blur(20px);
    }
    
    .chart-container {
        backdrop-filter: blur(20px);
    }
}

/* ===== ADVANCED ANIMATIONS ===== */
@keyframes slideInScale {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.social-link-card {
    animation: slideInScale 0.6s ease-out;
    animation-fill-mode: both;
}

.social-link-card:nth-child(1) { animation-delay: 0.1s; }
.social-link-card:nth-child(2) { animation-delay: 0.2s; }
.social-link-card:nth-child(3) { animation-delay: 0.3s; }
.social-link-card:nth-child(4) { animation-delay: 0.4s; }

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(11, 12, 16, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #E84142, #FF8C00);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FF8C00, #E84142);
}

/* ===== ENHANCED HOVER STATES ===== */
.chart-container:hover .dexscreener-embed {
    transform: scale(1.01);
}

.social-scene:hover .social-link-card:not(:hover) {
    opacity: 0.7;
    transform: scale(0.98);
}

.links-grid:hover .link-card:not(:hover) {
    opacity: 0.7;
    transform: scale(0.98);
}

/* ===== RESPONSIVE TEXT SCALING ===== */
@media (max-width: 1200px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    html {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    html {
        font-size: 12px;
    }
}

/* ===== UTILITY CLASSES ===== */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

.slide-up {
    animation: slideUp 0.6s ease-out;
}

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

.glow-text {
    text-shadow: 0 0 20px currentColor;
}

.blur-backdrop {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}