body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(45deg, #ff00de, #00ddff, #ff00de, #00ddff, #ff8a00, #e52e71);
    background-size: 400% 400%;
    animation: gradient-animation 15s ease infinite;
    color: white;
    text-align: center;
}

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

#fireworks-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 80px); /* Adjust for header height */
    margin-top: 80px; /* Adjust for header height */
}

.countdown-timer {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.time-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    min-width: 100px;
}

.time {
    font-size: 4em;
    font-weight: bold;
}

.label {
    display: block;
    font-size: 1.2em;
    margin-top: 10px;
}

.freedom-text {
    font-size: 3em;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

#emoji-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    display: block;
} 