/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Neon 80s', sans-serif;
    overflow: hidden;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Main Container Styling */
main {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Video Background Styling */
#splashVideo {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Mute/Unmute Button Styling */
#unmuteBtn {
    /* Positioning */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    
    /* Size and Spacing */
    padding: 15px 25px;
    min-width: 120px;
    
    /* Border and Shape */
    border: none;
    border-radius: 30px;
    
    /* Background Gradient */
    background: linear-gradient(135deg, #4a6bff 0%, #6b46c1 50%, #8a2be2 100%);
    
    /* Text Styling */
    color: white;
    font-family: 'Neon 80s', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    
    /* Effects */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(74, 107, 255, 0.3),
        0 2px 10px rgba(138, 43, 226, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Hover State */
#unmuteBtn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 30px rgba(74, 107, 255, 0.4),
        0 4px 15px rgba(138, 43, 226, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #5a7bff 0%, #7b56d1 50%, #9a3bf2 100%);
}

/* Active State */
#unmuteBtn:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 
        0 2px 10px rgba(74, 107, 255, 0.2),
        0 1px 5px rgba(138, 43, 226, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Focus State for Accessibility */
#unmuteBtn:focus {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(74, 107, 255, 0.3),
        0 4px 20px rgba(74, 107, 255, 0.3);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #unmuteBtn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
        min-width: 100px;
    }
}

@media screen and (max-width: 480px) {
    #unmuteBtn {
        bottom: 15px;
        right: 15px;
        padding: 10px 16px;
        font-size: 12px;
        min-width: 90px;
        border-radius: 25px;
    }
}

/* Loading State (Optional) */
#unmuteBtn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.9;
    }
    100% {
        opacity: 0.7;
    }
}

/* Custom Scrollbar (Optional) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4a6bff, #8a2be2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a7bff, #9a3bf2);
}
