* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    color: #ffffff;
    position: relative;
    opacity: 0;
    animation: pageLoad 1.2s ease-out forwards;
    font-feature-settings: 'kern' 1, 'liga' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@keyframes pageLoad {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Professional Background Pattern */
.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.01) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.015) 0%, transparent 50%);
    opacity: 0.6;
}

/* Ultra-Professional Shooting Stars - Apple/Google Style */
.shooting-stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.shooting-star {
    position: absolute;
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
    animation: shootingStar 8s linear infinite;
}

.shooting-star::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-30px);
}

.shooting-star::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-15px);
}

@keyframes shootingStar {
    0% {
        transform: translateX(-50px) translateY(-50px);
        opacity: 0;
    }
    5% {
        opacity: 0.8;
    }
    95% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(100vw) translateY(100vh);
        opacity: 0;
    }
}

.shooting-star:nth-child(1) { animation-delay: 0s; }
.shooting-star:nth-child(2) { animation-delay: 1.5s; }
.shooting-star:nth-child(3) { animation-delay: 3s; }
.shooting-star:nth-child(4) { animation-delay: 4.5s; }
.shooting-star:nth-child(5) { animation-delay: 6s; }

.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
    animation: shootingStar 3s linear infinite;
}

.shooting-star::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px; /* Shorter trail for premium feel */
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-60px);
    animation: starTrail 3s linear infinite;
}

@keyframes shootingStar {
    0% {
        transform: translateX(-100px) translateY(-100px) rotate(45deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100vw) translateY(100vh) rotate(45deg);
        opacity: 0;
    }
}

@keyframes starTrail {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100px);
        opacity: 0;
    }
}

/* Premium Shooting Star Variations */
.shooting-star.fast {
    animation-duration: 10s; /* Very slow and elegant */
}

.shooting-star.slow {
    animation-duration: 15s; /* Extremely slow and premium */
}

.shooting-star.bright {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.6); /* Subtle glow */
}

.shooting-star.dim {
    opacity: 0.15; /* Very dim for premium feel */
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
}

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

.container {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: containerFadeIn 1.5s ease-out 0.3s forwards;
    box-sizing: border-box;
}

@keyframes containerFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.content {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 0 auto;
    height: 100%;
    justify-content: center;
}

.logo h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #ffffff;
    animation: fadeInUp 1s ease-out;
}

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

/* Professional Construction Section */
.construction-section {
    text-align: center;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    animation: constructionSlideIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.construction-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}

@keyframes constructionSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.construction-title {
    font-family: 'JetBrains Mono', 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: titleReveal 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
    transition: all 0.3s ease;
    font-feature-settings: 'kern' 1, 'liga' 1;
    text-transform: uppercase;
}

.construction-title:hover {
    text-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
        letter-spacing: 8px;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 2px;
    }
}

.construction-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    line-height: 1.5;
    opacity: 0.9;
    animation: subtitleFadeIn 1.2s ease-out 1.2s both;
    transition: all 0.3s ease;
    font-feature-settings: 'kern' 1;
}

.construction-subtitle:hover {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.construction-status {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    animation: statusPulse 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.construction-status:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.construction-status:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: indicatorBlink 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.status-text {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
        transform: scale(1.01);
    }
}

@keyframes statusPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
    }
}

@keyframes indicatorBlink {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(0.8);
    }
}

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

/* Animated Dots */
.animated-dots {
    display: inline-block;
    position: relative;
    margin-left: 5px;
}

.animated-dots .dot {
    display: inline-block;
    color: #ffffff;
    font-size: 4rem;
    font-weight: 600;
    animation: dotPulse 1.5s ease-in-out infinite;
    margin-right: 2px;
    opacity: 0.6;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.animated-dots .dot:nth-child(1) { animation-delay: 0s; }
.animated-dots .dot:nth-child(2) { animation-delay: 0.3s; }
.animated-dots .dot:nth-child(3) { animation-delay: 0.6s; }

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


.description {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    animation: countdownReveal 1.5s cubic-bezier(0.4, 0, 0.2, 1) 1.4s both;
    padding: 2rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow-x: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.countdown:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.6),
        0 1px 0 rgba(255, 255, 255, 0.15) inset;
}

@keyframes countdownReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.countdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.countdown-item {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    min-width: 120px;
    flex: 1;
    max-width: 140px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(12px);
    box-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    overflow: hidden;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: countdownItemReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.countdown-item:nth-child(1) { animation-delay: 1.6s; }
.countdown-item:nth-child(2) { animation-delay: 1.8s; }
.countdown-item:nth-child(3) { animation-delay: 2.0s; }
.countdown-item:nth-child(4) { animation-delay: 2.2s; }

@keyframes countdownItemReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.countdown-item::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;
}

.countdown-item:not(:last-child)::after {
    content: ':';
    position: absolute;
    right: -1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 200;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.countdown-item::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.5s ease;
}

.countdown-item:hover::before {
    left: 100%;
}

.countdown-item:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.countdown-item:hover::before {
    left: 100%;
}

.countdown-item .number {
    display: block;
    font-family: 'JetBrains Mono', 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    line-height: 1;
    font-feature-settings: 'tnum' 1, 'kern' 1;
    word-spacing: -0.5px;
}

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

@keyframes numberChange {
    0% { 
        transform: scale(1);
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }
    50% { 
        transform: scale(1.1);
        text-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    }
    100% { 
        transform: scale(1);
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }
}

@keyframes numberGlow {
    0%, 100% { 
        background-position: 0% 50%;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    50% { 
        background-position: 100% 50%;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }
}

.countdown-item .label {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-feature-settings: 'kern' 1;
}

/* Specific styling for days to handle 3-digit numbers */
#days {
    font-size: 2.2rem;
    letter-spacing: 0.5px;
    word-spacing: -0.5px;
}


.connect-section {
    text-align: center;
    margin-top: 1rem;
    animation: connectSlideIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 2.4s both;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
    margin: 1rem auto 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.connect-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}

@keyframes connectSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.connect-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.8;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    font-feature-settings: 'kern' 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    animation: socialLinksReveal 1s ease-out 2.6s both;
}

@keyframes socialLinksReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: socialFloat 3s ease-in-out infinite;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    animation: socialLinkReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards, socialFloat 3s ease-in-out infinite 3.2s;
}

.social-link:nth-child(1) { animation-delay: 2.8s, 3.2s; }
.social-link:nth-child(2) { animation-delay: 3.0s, 3.4s; }

@keyframes socialLinkReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


@keyframes socialFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    }
    50% { 
        transform: translateY(-3px) rotate(5deg);
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    }
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* LinkedIn specific glow effect */
.social-link[aria-label="LinkedIn"]:hover {
    background: rgba(0, 119, 181, 0.3);
    box-shadow: 0 0 30px rgba(0, 119, 181, 0.6), 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px) scale(1.1);
}

.social-link[aria-label="LinkedIn"]:hover svg {
    filter: drop-shadow(0 0 10px rgba(0, 119, 181, 0.8));
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

.shape-5 {
    width: 60px;
    height: 60px;
    top: 70%;
    left: 60%;
    animation-delay: 3s;
}

.shape-6 {
    width: 140px;
    height: 140px;
    top: 10%;
    left: 50%;
    animation-delay: 5s;
}

/* Particle System */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

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

/* Glow Effects */
.glow-effect {
    position: fixed;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

.glow-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.3) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.glow-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(107, 107, 255, 0.3) 0%, transparent 70%);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.glow-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(107, 255, 107, 0.2) 0%, transparent 70%);
    bottom: 20%;
    left: 30%;
    animation-delay: 1s;
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(-30px) rotate(180deg) scale(1.2);
    }
    75% {
        transform: translateY(-15px) rotate(270deg) scale(1.1);
    }
}

/* Bouncing animation for countdown items */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Wobble animation */
@keyframes wobble {
    0% { transform: rotate(0deg); }
    15% { transform: rotate(-5deg); }
    30% { transform: rotate(3deg); }
    45% { transform: rotate(-3deg); }
    60% { transform: rotate(2deg); }
    75% { transform: rotate(-1deg); }
    100% { transform: rotate(0deg); }
}

/* Pulse animation for social links */
@keyframes socialPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
    }
}


/* Cosmic Stars */
.cosmic-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: starTwinkle 3s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Meteor Shower */
.meteor-shower {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.meteor {
    position: absolute;
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, #ff6b6b, #ffffff);
    border-radius: 50%;
    animation: meteorFall 2s linear infinite;
}

@keyframes meteorFall {
    0% {
        top: -10px;
        left: 10%;
        opacity: 1;
    }
    100% {
        top: 100vh;
        left: 90%;
        opacity: 0;
    }
}

/* Planet Orbit */
.planet-orbit {
    position: fixed;
    top: 50%;
    right: -50px;
    width: 100px;
    height: 100px;
    z-index: 1;
    animation: planetOrbit 20s linear infinite;
}

.planet {
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #ff6b6b, #ff8e8e);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    animation: planetRotate 5s linear infinite;
}

@keyframes planetOrbit {
    0% { transform: rotate(0deg) translateX(50px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

@keyframes planetRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Cosmic Dust */
.cosmic-dust {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.dust-particle {
    position: absolute;
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: dustFloat 8s linear infinite;
}

@keyframes dustFloat {
    0% {
        top: 100vh;
        left: 0%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: -10px;
        left: 100%;
        opacity: 0;
    }
}

/* Under Construction Elements */
.construction-zone {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 5;
    pointer-events: none;
}

/* Construction Sign */
.construction-sign {
    position: absolute;
    bottom: 20px;
    left: 50px;
    animation: signSway 3s ease-in-out infinite;
}

.sign-post {
    width: 4px;
    height: 60px;
    background: linear-gradient(to bottom, #8B4513, #654321);
    margin: 0 auto;
    border-radius: 2px;
}

.sign-board {
    width: 40px;
    height: 30px;
    background: #FFD700;
    border: 2px solid #FFA500;
    border-radius: 4px;
    margin: 0 auto;
    position: relative;
    top: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sign-text {
    font-size: 16px;
    animation: signBlink 2s ease-in-out infinite;
}

@keyframes signSway {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(2deg); }
}

@keyframes signBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Construction Tools */
.construction-tools {
    position: absolute;
    bottom: 20px;
    right: 50px;
    display: flex;
    gap: 10px;
}

.tool {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: toolBounce 2s ease-in-out infinite;
}

.hammer {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    animation-delay: 0s;
}

.wrench {
    background: linear-gradient(45deg, #C0C0C0, #A9A9A9);
    animation-delay: 0.5s;
}

.screwdriver {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    animation-delay: 1s;
}

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

/* Construction Cones */
.construction-cones {
    position: absolute;
    bottom: 0;
    left: 20%;
    display: flex;
    gap: 30px;
}

.cone {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 20px solid #FF6B35;
    animation: coneWiggle 2s ease-in-out infinite;
}

.cone-1 { animation-delay: 0s; }
.cone-2 { animation-delay: 0.3s; }
.cone-3 { animation-delay: 0.6s; }

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

/* Progress Bar */
.construction-progress {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    z-index: 10;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #8BC34A, #4CAF50);
    background-size: 200% 100%;
    border-radius: 4px;
    animation: progressFlow 2s ease-in-out infinite;
    width: 0%;
    transition: width 0.5s ease;
}

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

.progress-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 300;
    animation: textPulse 3s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Construction Dust */
.construction-dust {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 1;
    pointer-events: none;
}

.dust-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: dustRise 4s linear infinite;
}

@keyframes dustRise {
    0% {
        bottom: 0;
        left: 0%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 100px;
        left: 100%;
        opacity: 0;
    }
}

/* Responsive Design - One Screen Fit */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
        height: 100vh;
    }
    
    .content {
        gap: 1.5rem;
        height: 100%;
        justify-content: center;
    }
    
    .construction-section {
        padding: 1.5rem 2rem;
        margin-bottom: 0;
    }
    
    .construction-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .construction-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .countdown {
        gap: 1rem;
        padding: 1.5rem 1rem;
        overflow-x: auto;
        justify-content: flex-start;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 1rem 0.8rem;
        flex-shrink: 0;
    }
    
    .countdown-item .number {
        font-size: 2rem;
    }
    
    .countdown-item .label {
        font-size: 0.8rem;
    }
    
    #days {
        font-size: 1.8rem;
    }
    
    .connect-section {
        padding: 1rem 1.5rem;
        margin-top: 0.5rem;
    }
    
    .connect-text {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.8rem;
        height: 100vh;
    }
    
    .content {
        gap: 1rem;
    }
    
    .construction-section {
        padding: 1rem 1.5rem;
        margin-bottom: 0;
    }
    
    .construction-title {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }
    
    .construction-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .construction-status {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }
    
    .status-text {
        font-size: 0.7rem;
    }
    
    .countdown {
        gap: 0.8rem;
        padding: 1rem 0.8rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 0.8rem 0.6rem;
    }
    
    .countdown-item .number {
        font-size: 1.6rem;
    }
    
    .countdown-item .label {
        font-size: 0.7rem;
    }
    
    #days {
        font-size: 1.4rem;
    }
    
    .connect-section {
        padding: 0.8rem 1rem;
        margin-top: 0.3rem;
    }
    
    .connect-text {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
}
