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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Animated starfield background */
.stars, .twinkling {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.stars {
    background: #000 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEklEQVQIW2P4////fwYGBgYACQYCAKdKWw4AAAAASUVORK5CYII=') repeat top center;
    z-index: 0;
}

.twinkling {
    background: transparent url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEklEQVQIW2P4//+/w////xkYGBgAJRgDAdBY8AAAAABJRU5ErkJggg==') repeat top center;
    z-index: 1;
    animation: move-twink-back 200s linear infinite;
}

@keyframes move-twink-back {
    from {background-position: 0 0;}
    to {background-position: -10000px 5000px;}
}

.container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* Construction cone animation */
.construction-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

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

/* Glitch effect for title */
.glitch {
    font-size: 3.5rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: #fff;
    letter-spacing: 0.1em;
    animation: glitch-skew 1s infinite;
    text-shadow: 
        2px 2px 0 #ff00de,
        -2px -2px 0 #00ffff;
    margin-bottom: 30px;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00de;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00ffff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 31px, 0); }
    20% { clip: rect(85px, 9999px, 140px, 0); }
    40% { clip: rect(20px, 9999px, 60px, 0); }
    60% { clip: rect(50px, 9999px, 90px, 0); }
    80% { clip: rect(5px, 9999px, 25px, 0); }
    100% { clip: rect(70px, 9999px, 110px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    20% { clip: rect(5px, 9999px, 45px, 0); }
    40% { clip: rect(90px, 9999px, 130px, 0); }
    60% { clip: rect(30px, 9999px, 70px, 0); }
    80% { clip: rect(15px, 9999px, 55px, 0); }
    100% { clip: rect(80px, 9999px, 120px, 0); }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    10% { transform: skew(-2deg); }
    20% { transform: skew(2deg); }
    30% { transform: skew(0deg); }
    100% { transform: skew(0deg); }
}

/* Message box */
.message-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.main-message {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.highlight {
    color: #ff00de;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.sub-message {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
}

/* Progress bar */
.progress-container {
    margin: 40px 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #00ffff;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff00de, #00ffff, #ff00de);
    background-size: 200% 100%;
    animation: progress-animation 3s ease-in-out infinite;
    border-radius: 15px;
    transition: width 0.5s ease;
}

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

/* Fun facts */
.fun-facts {
    background: rgba(255, 0, 222, 0.1);
    border-left: 4px solid #ff00de;
    padding: 20px;
    margin: 30px 0;
    border-radius: 10px;
    text-align: left;
}

.fact-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ff00de;
}

.fact-text {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Countdown timer */
.countdown {
    margin: 40px 0;
}

.countdown-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #00ffff;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.time-unit {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    padding: 20px;
    min-width: 100px;
    transition: transform 0.3s ease;
}

.time-unit:hover {
    transform: scale(1.1);
    border-color: #00ffff;
}

.time-value {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.time-label {
    display: block;
    font-size: 0.9rem;
    color: #cccccc;
    margin-top: 5px;
}

/* Social links */
.social-links {
    margin: 40px 0;
}

.social-links p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #cccccc;
}

.links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-5px) rotate(10deg);
    border-color: #ff00de;
    box-shadow: 0 5px 20px rgba(255, 0, 222, 0.5);
}

/* Footer */
footer {
    margin-top: 50px;
    padding: 20px;
    color: #888888;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .glitch {
        font-size: 2rem;
    }
    
    .main-message {
        font-size: 1.2rem;
    }
    
    .sub-message {
        font-size: 1rem;
    }
    
    .construction-icon {
        font-size: 60px;
    }
    
    .time-unit {
        min-width: 80px;
        padding: 15px;
    }
    
    .time-value {
        font-size: 2rem;
    }
}

