/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Font */
@font-face {
    font-family: 'FWC26';
    src: url('../fonts/FWC26-NormalBlack.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'FWC26', 'Arial Black', Arial, sans-serif;
    background: transparent;
}

/* Container */
.countdown-container {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

/* Canvas */
#countdown-canvas {
    display: block;
}

/* Event Started Message */
.event-started {
    position: absolute;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8),
                 0 2px 4px rgba(0, 0, 0, 0.6);
}

.event-message {
    font-size: 8vw;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    animation: pulse 2s ease-in-out infinite;
}

.event-submessage {
    font-size: 3vw;
    font-weight: 700;
    letter-spacing: 0.15em;
    opacity: 0.95;
}

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

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .event-message {
        animation: none;
    }
}
