:root {
    --bg-color: #121212;
    --primary-color: #1E1E1E;
    --text-color: #E0E0E0;
    --accent-color: #00FF7F;
    --font-headings: 'Bebas Neue', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

html { 
    scroll-behavior: smooth; 
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    position: fixed; 
    width: 100%; 
    top: 0; 
    left: 0;
    padding: 1rem 5%;
    background-color: transparent;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

header.scrolled, header.nav-open {
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
}

nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

nav .logo { 
    font-family: var(--font-headings); 
    font-size: 2rem; 
    color: var(--accent-color); 
    text-decoration: none; 
    letter-spacing: 2px; 
}

.nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

header.nav-open .nav-links {
    transform: translateY(0);
}

.nav-links li { 
    margin: 2rem 0; 
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    font-family: var(--font-headings);
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.nav-links a:hover { 
    color: var(--accent-color); 
}

.nav-toggle {
    display: block;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    display: block;
    position: relative;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: background 0.1s 0.2s ease;
}

.hamburger::before, 
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--text-color);
    left: 0;
    transition: transform 0.2s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }
header.nav-open .hamburger { background: transparent; }
header.nav-open .hamburger::before { transform: rotate(45deg) translate(5.5px, 5.5px); }
header.nav-open .hamburger::after { transform: rotate(-45deg) translate(5.5px, -5.5px); }

.section { 
    padding: 6rem 5%; 
    border-bottom: 1px solid #282828; 
}

.section h2 { 
    font-family: var(--font-headings); 
    font-size: 2.5rem; 
    color: var(--text-color); 
    text-align: center; 
    margin-bottom: 3rem; 
    letter-spacing: 3px; 
}

main img { 
    max-width: 100%; 
    height: auto; 
    display: block; 
}

#hero { 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: #fff; 
    position: relative; 
    overflow: hidden; 
}

#hero-video { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    min-width: 100%; 
    min-height: 100%; 
    width: auto; 
    height: auto; 
    z-index: -1; 
    transform: translateX(-50%) translateY(-50%); 
    background-size: cover; 
}

#hero::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background: rgba(0, 0, 0, 0.6); 
    z-index: 0; 
}

.hero-content { 
    position: relative; 
    z-index: 1; 
}

#hero h1 { 
    font-family: var(--font-headings); 
    font-size: 15vw; 
    letter-spacing: 5px; 
    margin: 0; 
}

#hero p { 
    font-size: 1.2rem; 
    margin-bottom: 2rem; 
}

.cta-button, .submit-btn { 
    background-color: var(--accent-color); 
    color: #000; 
    padding: 0.8rem 2rem; 
    text-decoration: none; 
    font-weight: bold; 
    font-size: 1.1rem; 
    border-radius: 5px; 
    border: none; 
    cursor: pointer; 
    transition: transform 0.3s ease, background-color 0.3s ease; 
}

.cta-button:hover, .submit-btn:hover { 
    transform: scale(1.05); 
    background-color: #fff; 
}

.glitch { position: relative; color: #fff; text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75), -0.025em -0.05em 0 rgba(0, 255, 0, 0.75), 0.025em 0.05em 0 rgba(0, 0, 255, 0.75); }
.glitch:hover::before, .glitch:hover::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg-color); overflow: hidden; }
.glitch:hover::before { left: 2px; text-shadow: -2px 0 var(--accent-color); clip: rect(44px, 450px, 56px, 0); animation: glitch-anim 2s infinite linear alternate-reverse; }
.glitch:hover::after { left: -2px; text-shadow: -2px 0 #FF00FF, 2px 2px var(--accent-color); clip: rect(85px, 450px, 90px, 0); animation: glitch-anim-2 3s infinite linear alternate-reverse; }
@keyframes glitch-anim { 0% { clip: rect(42px, 9999px, 44px, 0); } 100% { clip: rect(5px, 9999px, 92px, 0); } }
@keyframes glitch-anim-2 { 0% { clip: rect(65px, 9999px, 100px, 0); } 100% { clip: rect(40px, 9999px, 60px, 0); } }

#music { background-color: #1f1f1f; overflow: hidden; position: relative; }
.music-container { display: flex; flex-direction: column; align-items: center; gap: 3rem; max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.music-visuals { position: relative; width: 300px; height: 300px; flex-shrink: 0; }
.vinyl-record { width: 100%; height: 100%; position: absolute; top: 0; left: 0; }
.album-cover-visual { width: 90%; height: 90%; position: absolute; top: 5%; left: 5%; background-image: url('Theblock.jpg'); background-size: cover; background-position: center; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.music-details { position: relative; max-width: 500px; text-align: center; }
.music-details::before { content: 'MUSIC'; position: absolute; font-family: var(--font-headings); font-size: 10rem; font-weight: 700; color: rgba(255, 255, 255, 0.05); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: -1; letter-spacing: 5px; }
.music-details h2 { font-family: 'Roboto', sans-serif; font-size: 2.5rem; text-align: center; color: #fff; margin-bottom: 1rem; }
.music-details p { font-size: 1rem; color: #a0a0a0; line-height: 1.7; margin-bottom: 2rem; text-align: center; }
.player-wrapper audio { width: 100%; height: 45px; }
audio::-webkit-media-controls-overflow-button { display: none; }
audio::-webkit-media-controls-panel { background-color: transparent; }
audio::-webkit-media-controls-play-button, audio::-webkit-media-controls-mute-button { background-color: var(--accent-color); border-radius: 50%; }
audio::-webkit-media-controls-timeline, audio::-webkit-media-controls-volume-slider { background-color: #444; border-radius: 25px; padding: 0; margin: 0 10px; }
audio::-webkit-media-controls-current-time-display, audio::-webkit-media-controls-time-remaining-display { color: var(--text-color); font-family: var(--font-body); font-weight: bold; text-shadow: none; }

.about-content { display: flex; flex-direction: column; align-items: center; gap: 2rem; max-width: 1000px; margin: 0 auto; text-align: center; }
.about-content > img { max-width: 300px; border-radius: 5px; }
.about-text p { margin-bottom: 1.5rem; color: #b3b3b3; }
.motto-block { border-left: 3px solid var(--accent-color); padding-left: 1.5rem; margin: 2rem 0; }
.motto-block p { font-style: italic; margin-bottom: 0.5rem; color: var(--text-color); }
.punchline { font-size: 1.2rem; color: var(--accent-color); font-weight: 700; letter-spacing: 1px; }
.crew-cards-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-top: 4rem; }
.crew-card { background-color: var(--primary-color); border-radius: 8px; overflow: hidden; text-align: center; width: 180px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); transition: transform 0.3s ease; }
.crew-card:hover { transform: translateY(-10px); }
.crew-card img { border-bottom: 3px solid var(--accent-color); }
.crew-card h3 { padding: 1rem; font-family: var(--font-headings); letter-spacing: 1px; }

#contact { background-color: var(--primary-color); }
.contact-grid-container { display: flex; flex-direction: column; gap: 3rem; max-width: 1100px; margin: 0 auto; }
.contact-info h2 { text-align: left; margin-bottom: 2rem; }
.contact-group { margin-bottom: 2rem; }
.contact-group h4 { font-family: var(--font-headings); color: var(--accent-color); letter-spacing: 1px; margin-bottom: 0.5rem; }
.contact-group a { color: var(--text-color); text-decoration: none; }
.listen-on-icons { display: flex; gap: 1rem; }
.listen-on-icons a { font-size: 1.5rem; transition: color 0.3s ease; }
.listen-on-icons a:hover { color: var(--accent-color); }
.contact-form-wrapper input, .contact-form-wrapper textarea { width: 100%; padding: 1rem; margin-bottom: 1rem; background-color: #2a2a2a; border: 1px solid #444; color: var(--text-color); border-radius: 5px; font-family: var(--font-body); }
.contact-form-wrapper textarea { min-height: 120px; resize: vertical; }
.form-row { display: flex; flex-direction: column; gap: 0; }
.form-footer { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; margin-top: 1rem; }
.form-socials { display: flex; gap: 1.5rem; }
.form-socials a { font-size: 1.3rem; color: #888; transition: color 0.3s ease; }
.form-socials a:hover { color: #fff; }

footer { text-align: center; padding: 2rem; font-size: 0.9rem; color: #555; }

@media (min-width: 576px) {
    .form-row { flex-direction: row; gap: 1rem; }
    .form-footer { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 768px) {
    .nav-toggle { display: none; }
    .nav-links {
        position: static;
        flex-direction: row;
        height: auto;
        width: auto;
        background: none;
        backdrop-filter: none;
        transform: none;
        transition: none;
    }
    .nav-links li { margin: 0 0 0 2rem; }
    .nav-links a { font-size: 1rem; font-family: var(--font-body); letter-spacing: 0; font-weight: 700; }
    .section h2 { font-size: 4rem; }
    #hero h1 { font-size: 8vw; }
    #hero p { font-size: 1.5rem; }
}

@media (min-width: 992px) {
    .music-container { flex-direction: row; gap: 5rem; }
    .music-visuals { transform: rotate(-8deg); width: 400px; height: 400px; }
    .music-details { text-align: left; }
    .music-details h2, .music-details p { text-align: left; }
    .music-details::before { font-size: 15rem; left: 40%; }
    .about-content { flex-direction: row; text-align: left; gap: 3rem; }
    .contact-grid-container { flex-direction: row; gap: 5rem; align-items: flex-start; }
}