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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(-45deg, #1a1a2e, #16213e, #0f3460, #533483);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

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

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

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

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

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

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 20px;
}

.logo-section {
    margin-bottom: 40px;
}

.logo-glow {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.coin-animation {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.coin {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: coinFloat 3s ease-in-out infinite, coinRotate 10s linear infinite;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.4);
}

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

@keyframes coinRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.coin-inner {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a2e;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.brand-name {
    font-size: 4rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    margin-bottom: 10px;
    letter-spacing: 8px;
}

.tagline {
    font-size: 1.2rem;
    color: #e0e0e0;
    opacity: 0.9;
    font-weight: 300;
}

.typing-container {
    height: 80px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typing-text {
    font-size: 1.5rem;
    color: #ff6b6b;
    font-weight: 600;
    text-align: center;
    min-height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-section {
    margin-bottom: 50px;
}

.countdown-title {
    font-size: 2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.time-unit {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
    animation: pulse 2s infinite;
}

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

.time-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.time-label {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section {
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 20px 40px;
    background: linear-gradient(45deg, #ff6b6b, #ffd700, #ff6b6b);
    background-size: 200% 200%;
    animation: gradientFlow 3s ease infinite;
    border-radius: 50px;
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
}

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

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

.button-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    opacity: 0;
    animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.footer-links {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
}

.separator {
    color: #e0e0e0;
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-name {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .time-unit {
        min-width: 80px;
        padding: 15px;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}