* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Impact', sans-serif;
    overflow: hidden;
    background-color: black;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#background-video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.start-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.start-button {
    font-size: 3vw;
    font-family: 'Impact', sans-serif;
    color: white;
    background-color: transparent;
    border: 3px solid #ff00ff;
    border-radius: 15px;
    padding: 20px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px #ff00ff;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    animation: buttonGlow 2s infinite;
    outline: none;
}

.start-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
    text-shadow: 0 0 15px #ff00ff;
}

@keyframes buttonGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 255, 0.5); text-shadow: 0 0 10px #ff00ff; }
    50% { box-shadow: 0 0 30px rgba(255, 0, 255, 0.8), 0 0 40px rgba(0, 255, 255, 0.5); text-shadow: 0 0 15px #ff00ff, 0 0 20px #00ffff; }
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow: hidden;
    pointer-events: none; /* Allow clicks to pass through to video */
}

/* Random text element styles */
.random-text {
    position: absolute;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    padding: 10px;
    max-width: 80%;
    word-wrap: break-word;
    z-index: 5;
    transition: opacity 0.5s;
    transform-origin: center center;
    white-space: nowrap;
    overflow: visible;
    pointer-events: none; /* Allow clicks to pass through */
}

@keyframes shake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(-5px) rotate(-2deg); }
    75% { transform: translateX(5px) rotate(2deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
}

@keyframes rotate {
    0% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
    100% { transform: rotate(-5deg); }
}

.volume-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    z-index: 10;
    border: 2px solid #ff00ff;
}

#mute-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    margin-right: 10px;
}

#volume-slider {
    width: 100px;
    margin-right: 10px;
    cursor: pointer;
}

#volume-level {
    color: white;
    font-family: Arial, sans-serif;
    width: 40px;
}

#manual-play-button {
    animation: buttonPulse 1.5s infinite;
}

@keyframes buttonPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 10px #ff00ff; }
    50% { transform: translate(-50%, -50%) scale(1.05); box-shadow: 0 0 20px #ff00ff, 0 0 30px #00ffff; }
} 