* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    overflow: hidden;
    background: #000;
    font-family: Arial, sans-serif;
}
#video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}
#techno-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
#click-to-play {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
#click-to-play.hidden {
    opacity: 0;
    pointer-events: none;
}
.message {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.7; transform: scale(1); }
}
@media (max-width: 768px) {
    .message {
        font-size: 2rem;
        padding: 20px;
    }
}
#timer-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 998;
    display: none;
}
#timer-display {
    font-size: 8rem;
    font-weight: bold;
    color: #ff1100;
    text-shadow: 
        0 0 10px #ff0000,
        0 0 20px #ff0000,
        0 0 30px #ff3300,
        0 0 40px #ff3300,
        0 0 50px #ff6600,
        0 0 60px #ff6600,
        0 0 70px #ff9900,
        0 0 80px #ffaa00;
    animation: fireTimer 0.05s infinite alternate;
    filter: brightness(1.5) contrast(1.8);
}
@keyframes fireTimer {
    0% { 
        text-shadow: 
            0 0 15px #ff0000,
            0 0 25px #ff0000,
            0 0 35px #ff3300,
            0 0 45px #ff3300,
            0 0 55px #ff6600,
            0 0 65px #ff6600,
            0 0 75px #ff9900,
            0 0 85px #ffaa00;
        color: #ff1100;
    }
    100% { 
        text-shadow: 
            0 0 20px #ff3300,
            0 0 30px #ff3300,
            0 0 40px #ff6600,
            0 0 50px #ff6600,
            0 0 60px #ff9900,
            0 0 70px #ff9900,
            0 0 80px #ffcc00,
            0 0 90px #ffff00;
        color: #ff3300;
    }
}
#party-mode-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 998;
    text-align: center;
}

#party-button {
    font-size: 3rem;
    font-weight: bold;
    color: #00ff00;
    background: radial-gradient(circle, #ff00ff, #00ffff, #ffff00);
    padding: 20px 40px;
    border-radius: 50px;
    border: 3px solid #ffffff;
    cursor: pointer;
    animation: spinButton 2s linear infinite, partyColors 0.5s infinite alternate;
    text-shadow: 0 0 20px #ffffff;
    box-shadow: 0 0 30px #ff00ff;
    margin-bottom: 30px;
}

#party-timer {
    font-size: 6rem;
    font-weight: bold;
    color: #ff0000;
    text-shadow: 
        0 0 20px #ff0000,
        0 0 40px #ff3300,
        0 0 60px #ff6600,
        0 0 80px #ffaa00;
    animation: partyTimerFlash 0.1s infinite alternate;
}

@keyframes spinButton {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes partyColors {
    0% { 
        background: radial-gradient(circle, #ff00ff, #00ffff, #ffff00);
        box-shadow: 0 0 30px #ff00ff;
    }
    50% { 
        background: radial-gradient(circle, #00ff00, #ff0000, #0000ff);
        box-shadow: 0 0 30px #00ff00;
    }
    100% { 
        background: radial-gradient(circle, #ffff00, #ff00ff, #00ffff);
        box-shadow: 0 0 30px #ffff00;
    }
}

@keyframes partyTimerFlash {
    0% { 
        color: #ff0000;
        text-shadow: 
            0 0 20px #ff0000,
            0 0 40px #ff3300,
            0 0 60px #ff6600,
            0 0 80px #ffaa00;
        filter: brightness(1.5);
    }
    100% { 
        color: #ffff00;
        text-shadow: 
            0 0 30px #ffff00,
            0 0 50px #ff6600,
            0 0 70px #ff0000,
            0 0 90px #ff00ff;
        filter: brightness(2);
    }
}

#watermelon-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 997;
}

.watermelon-gif {
    position: absolute;
    opacity: 0.9;
    animation: gifFlash 0.2s infinite;
    z-index: 998;
}

@keyframes gifFlash {
    0% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0; transform: scale(0.8); }
}

.ukraine-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(45deg, #0057b7 0%, #0057b7 49%, #ffd700 51%, #ffd700 100%);
    background-size: 300% 300%;
    animation: gradientMove 3s linear infinite;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    font-family: 'Courier New', monospace;
    text-align: center;
    padding: 20px;
}

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

.ukraine-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.ukraine-text {
    font-size: 1.8rem;
    margin-bottom: 20px;
    max-width: 80%;
}

.hacker-details {
    font-size: 1.3rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.cat-explosion {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    object-fit: cover;
    display: none;
}
