* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.title {
    font-family: 'Anton', sans-serif;
    font-size: 8rem;
    font-weight: 400;
    color: #6e54ff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.sound-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(110, 84, 255, 0.8);
    border: 2px solid #6e54ff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.sound-button:hover {
    background: rgba(110, 84, 255, 1);
    transform: scale(1.1);
}

.sound-icon {
    font-size: 1.5rem;
    user-select: none;
}

.coming-soon {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Verdana, sans-serif;
    font-size: 1rem;
    color: #6e54ff;
    text-align: center;
    word-break: break-all;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Responsive design */
@media (max-width: 768px) {
    .title {
        font-size: 4rem;
    }
    
    .sound-button {
        width: 45px;
        height: 45px;
        top: 15px;
        right: 15px;
    }
    
    .sound-icon {
        font-size: 1.3rem;
    }
    
    .coming-soon {
        font-size: 0.8rem;
        bottom: 15px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 3rem;
    }
    
    .sound-button {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }
    
    .sound-icon {
        font-size: 1.1rem;
    }
    
    .coming-soon {
        font-size: 0.7rem;
        bottom: 10px;
        padding: 0 15px;
    }
}

