/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Arial', 'Helvetica', sans-serif;
    overflow: hidden;
}

/* Main container */
.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url('1759270936.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Background overlay for better text readability */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
}

/* Title header */
.title-header {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 70%,
        transparent 100%
    );
}

.title-header .main-title,
h1.main-title {
    font-size: clamp(2rem, 5vw, 4rem) !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 10px 20px !important;
    border-radius: 10px !important;
    transform-origin: center !important;
    text-align: center !important;
    animation: titleStrobe 0.5s linear infinite !important;
    animation-fill-mode: both !important;
    animation-play-state: running !important;
}

/* EXTREME STROBE ANIMATION */
@keyframes titleStrobe {
    0% {
        color: red !important;
        text-shadow: 
            0 0 20px red,
            0 0 30px red,
            0 0 40px red !important;
        transform: scale(1) !important;
    }
    33% {
        color: lime !important;
        text-shadow: 
            0 0 20px lime,
            0 0 30px lime,
            0 0 40px lime !important;
        transform: scale(1.1) !important;
    }
    66% {
        color: blue !important;
        text-shadow: 
            0 0 20px blue,
            0 0 30px blue,
            0 0 40px blue !important;
        transform: scale(1) !important;
    }
    100% {
        color: yellow !important;
        text-shadow: 
            0 0 20px yellow,
            0 0 30px yellow,
            0 0 40px yellow !important;
        transform: scale(1.1) !important;
    }
}

/* Loading indicator - hidden by default */
.loading-indicator {
    display: none;
}



/* Responsive design */
@media (max-width: 768px) {
    .title-header {
        padding: 1.5rem 1rem;
    }
    
    .main-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
    

}

@media (max-width: 480px) {
    .title-header {
        padding: 1rem 0.5rem;
    }
    
    .main-title {
        font-size: clamp(1.2rem, 3.5vw, 2rem);
        letter-spacing: 0.03em;
    }
}

/* Ensure image loads properly */
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -1;
}

/* Hide audio element */
audio {
    display: none;
}
/* Cache buster: 1756646308 */
