@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Creepster&family=Metal+Mania&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background: #000;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#bgVideo {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.7);
}

/* Navigation Styles */
.metal-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 40px;
    z-index: 100;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 80%, rgba(0,0,0,0) 100%);
    backdrop-filter: blur(5px);
}

.metal-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 0;
    padding: 0;
}

.metal-nav li {
    position: relative;
}

.nav-link {
    font-family: 'Bangers', cursive;
    color: #ffffff;
    text-decoration: none;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 10px 20px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    text-shadow:
            3px 3px 0 #1a1a1a,
            4px 4px 0 #2d2d2d,
            5px 5px 8px rgba(0,0,0,0.8);
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.3));
}

/* Underline effect */
.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a5568, #718096, #cbd5e0);
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.nav-link:hover {
    color: #e2e8f0;
    text-shadow:
            4px 4px 0 #1a1a1a,
            5px 5px 0 #2d2d2d,
            6px 6px 12px rgba(0,0,0,0.9);
    filter: drop-shadow(0 0 25px rgba(255,255,255,0.6));
    transform: translateY(-3px);
}

.nav-link:hover::before {
    width: 100%;
}

/* Metal spikes decoration */
.nav-link::after {
    content: '⚡';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%) scale(0) rotate(0deg);
    transition: all 0.3s ease;
    font-size: 20px;
    opacity: 0;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.8));
}

.nav-link:hover::after {
    transform: translateY(-50%) scale(1) rotate(15deg);
    opacity: 1;
}

/* Content Area */
.content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 150px 20px 100px;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.metal-title {
    font-family: 'Metal Mania', cursive;
    font-size: 90px;
    text-transform: uppercase;
    color: #d4d4d8;
    text-shadow:
            4px 4px 0 #27272a,
            5px 5px 0 #3f3f46,
            6px 6px 0 #52525b,
            7px 7px 15px rgba(0,0,0,0.9);
    margin-bottom: 30px;
    filter: drop-shadow(0 0 30px rgba(212, 212, 216, 0.4));
    animation: metalShine 4s ease-in-out infinite;
    letter-spacing: 8px;
}

.metal-subtitle {
    font-family: 'Bangers', cursive;
    font-size: 32px;
    color: #e4e4e7;
    text-shadow:
            3px 3px 0 #18181b,
            4px 4px 0 #27272a,
            5px 5px 10px rgba(0,0,0,0.8);
    animation: rockPulse 2s ease-in-out infinite;
    letter-spacing: 4px;
    filter: drop-shadow(0 0 20px rgba(228, 228, 231, 0.3));
}

@keyframes metalShine {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(212, 212, 216, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(212, 212, 216, 0.7));
    }
}

@keyframes rockPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

/* Unmute Button */
.unmute-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #3f3f46 0%, #18181b 100%);
    border: 3px solid #52525b;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    z-index: 1000;
    box-shadow:
            0 4px 15px rgba(0,0,0,0.6),
            inset 0 1px 0 rgba(255,255,255,0.1);
    font-family: 'Bangers', cursive;
    color: #e4e4e7;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.unmute-btn:hover {
    background: linear-gradient(135deg, #52525b 0%, #27272a 100%);
    border-color: #71717a;
    transform: translateY(-2px);
    box-shadow:
            0 6px 20px rgba(0,0,0,0.7),
            inset 0 1px 0 rgba(255,255,255,0.2);
    filter: drop-shadow(0 0 15px rgba(228, 228, 231, 0.3));
}

.unmute-btn:active {
    transform: translateY(0);
    box-shadow:
            0 2px 8px rgba(0,0,0,0.6),
            inset 0 1px 0 rgba(255,255,255,0.1);
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .metal-nav {
        padding: 15px 10px;
    }

    .metal-nav ul {
        gap: 20px;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 18px;
        padding: 8px 15px;
        letter-spacing: 2px;
    }

    .nav-link::after {
        right: -20px;
        font-size: 16px;
    }

    .metal-title {
        font-size: 48px;
        letter-spacing: 4px;
    }

    .metal-subtitle {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .content {
        padding: 120px 20px 80px;
    }

    .unmute-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .metal-nav {
        padding: 12px 5px;
    }

    .metal-nav ul {
        gap: 12px;
    }

    .nav-link {
        font-size: 16px;
        padding: 6px 12px;
        letter-spacing: 1px;
    }

    .nav-link::after {
        display: none;
    }

    .metal-title {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .metal-subtitle {
        font-size: 20px;
        letter-spacing: 1px;
    }
}