body {
    margin: 0;
    padding: 0;
    background: black;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Times New Roman', serif;
    overflow: hidden;
    position: relative;
}

#countdown {
    color: red;
    font-weight: bold;
    text-align: center;
    font-size: clamp(40px, 8vw, 240px);
    line-height: 1.2;
    padding: 20px;
    max-width: 100vw;
    word-wrap: break-word;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    #countdown {
        padding: 10px;
        font-size: clamp(30px, 10vw, 60px);
    }
}

@media (max-width: 480px) {
    #countdown {
        font-size: clamp(25px, 12vw, 50px);
        padding: 5px;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    #countdown {
        font-size: clamp(20px, 6vh, 120px);
    }
}

.copyright {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #333;
    font-size: 12px;
    font-family: Arial, sans-serif;
    opacity: 0.7;
    z-index: 10;
}

@media (max-width: 480px) {
    .copyright {
        font-size: 10px;
        bottom: 5px;
        right: 5px;
    }
}

.secrets-button {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #666;
    border: 1px solid #333;
    padding: 8px 16px;
    font-size: 14px;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.3;
}

.secrets-button:hover {
    background: #2a2a2a;
    color: #888;
    border-color: #555;
    opacity: 0.8;
}

@media (max-width: 480px) {
    .secrets-button {
        bottom: 30px;
        font-size: 12px;
        padding: 6px 12px;
    }
}

.wheel-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    flex-direction: column;
}

.wheel {
    width: 300px;
    height: 300px;
    border: 8px solid #333;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(
        from 0deg,
        #ff4444 0deg 60deg,
        #44ff44 60deg 120deg,
        #4444ff 120deg 180deg,
        #ffff44 180deg 240deg,
        #ff44ff 240deg 300deg,
        #44ffff 300deg 360deg
    );
    animation: spin 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.wheel::after {
    content: '🎯';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    z-index: 5;
}

.arrow {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 40px solid #fff;
    z-index: 10;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(2160deg); }
}

@media (max-width: 480px) {
    .wheel {
        width: 200px;
        height: 200px;
        border-width: 6px;
    }
}

.site-name {
    color: white;
    font-size: 24px;
    font-family: 'Courier New', monospace;
    margin-top: 30px;
    text-align: center;
    animation: pulse 1s infinite;
}

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