/* CSS Reset & Core Styling */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Helvetica Neue', Arial, sans-serif; }

/* Premium Minimal Dark Palette - Charcoal & Gunmetal */
html, body { 
    background-color: #080808; 
    background-image: radial-gradient(circle at 50% 0%, #181818 0%, #050505 100%);
    background-attachment: fixed;
    color: #ffffff; 
    line-height: 1.6; 
    overflow-x: hidden; 
    width: 100%; 
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- SPLASH SCREEN ANIMATION --- */
#splash-screen {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background-color: #080808;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeOutSplash 0.4s ease 2s forwards; 
}

.splash-logo {
    width: 150px;
    height: auto;
    fill: #ffffff;
    animation: bassPulse 2s ease-in-out forwards;
}

.splash-logo path, .splash-logo rect { fill: #ffffff; }

@keyframes bassPulse {
    0% { transform: scale(0.8); opacity: 0; }
    20% { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); }
    40% { transform: scale(0.95); opacity: 1; }
    60% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 30px rgba(255,255,255,0.8)); }
    80% { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); }
    100% { transform: scale(4); opacity: 0; }
}

@keyframes fadeOutSplash {
    to { opacity: 0; visibility: hidden; }
}

/* Navigation Bar */
nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 1.5rem 5%; 
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%; 
    z-index: 1000; 
    background-color: rgba(10, 10, 10, 0.75); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); 
    transition: all 0.3s ease;
}

.subpage-nav { 
    background-color: rgba(15, 15, 15, 0.85); 
}

.logo-container svg { height: 40px; width: auto; filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.05)); transition: all 0.3s ease; }
.logo-container svg path, .logo-container svg rect { fill: #ffffff; transition: fill 0.3s ease; }
.logo-container:hover svg path, .logo-container:hover svg rect { fill: #ffffff; filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.6)); }

.menu-toggle { display: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: #aaaaaa; text-decoration: none; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; transition: color 0.3s ease; }
.nav-links a:hover { color: #ffffff; text-shadow: 0 0 8px rgba(255,255,255,0.4); }

/* Hero Section */
.hero { height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background: linear-gradient(rgba(12, 12, 12, 0.85), rgba(8, 8, 8, 1)), url('dark-industrial-bg.jpg') center/cover; padding: 0 5%; }
.hero h1 { font-size: 5rem; font-weight: 800; letter-spacing: -2px; text-transform: uppercase; margin-bottom: 0.5rem; }
.hero-tagline { font-size: 1.2rem; font-weight: bold; color: #ffffff; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 0.5rem; }
.hero-genres { font-size: 0.9rem; color: #888888; max-width: 600px; letter-spacing: 2px; margin-bottom: 2.5rem; text-transform: uppercase; }

/* Modified to Industrial Gold */
.cta-button { padding: 1rem 3rem; border: 1px solid #CD8E33; background: transparent; color: #CD8E33; text-transform: uppercase; font-weight: bold; letter-spacing: 2px; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-block; font-size: 0.9rem; }
.cta-button:hover { background: #ffffff; color: #000000; box-shadow: 0 0 20px rgba(255,255,255,0.25); border-color: #ffffff; }

/* Content Sections & Alternate Backgrounds */
.content-section { padding: 6rem 5%; background-color: transparent; }
.content-section.alt-bg { background-color: rgba(22, 22, 22, 0.6); border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; }

.section-title { font-size: 1.8rem; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 3rem; text-align: center; border-bottom: 1px solid #333; padding-bottom: 1rem; display: inline-block; color: #ffffff; }
.title-container { text-align: center; }

/* General Grids */
.grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

/* Track & Feature Cards */
.card { background: #121212; padding: 1.2rem; border: 1px solid #2a2a2a; border-radius: 0; text-align: left; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-3px); border-color: #ffffff; box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05); }
.card-title { font-size: 1.1rem; font-weight: bold; margin-top: 1rem; margin-bottom: 0.2rem; letter-spacing: 0.5px; }
.card-subtitle { font-size: 0.75rem; color: #888888; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.2rem; }
.card-credits { font-size: 0.8rem; color: #aaaaaa; margin-bottom: 1.2rem; flex-grow: 1; }

/* Video Embeds */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border: 1px solid #2a2a2a; box-shadow: 0 15px 40px rgba(0,0,0,0.5); }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; filter: grayscale(100%) contrast(120%); transition: filter 0.5s ease; }
.video-wrapper:hover iframe { filter: grayscale(0%) contrast(100%); }

/* Tour Dates */
.tour-container { max-width: 800px; margin: 0 auto; }
.tour-row { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; border-bottom: 1px solid #2a2a2a; transition: background-color 0.3s ease, border-color 0.3s ease; }
.tour-row:hover { background-color: #111111; border-bottom-color: #ffffff; }
.tour-date { font-weight: bold; font-size: 1.1rem; letter-spacing: 1px; color: #ffffff; width: 100px; }
.tour-venue { flex-grow: 1; font-size: 0.95rem; color: #cccccc; text-transform: uppercase; letter-spacing: 1px; }
.tour-btn { padding: 0.6rem 1.5rem; border: 1px solid #555555; color: #ffffff; text-decoration: none; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; transition: all 0.3s ease; }
.tour-btn:hover { border-color: #ffffff; background-color: #ffffff; color: #000000; box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); }

/* Newsletter Form */
.newsletter-form { display: flex; gap: 1rem; max-width: 500px; margin: 0 auto; }
.newsletter-form input { flex-grow: 1; padding: 1rem; background-color: #121212; border: 1px solid #333333; color: #ffffff; font-size: 16px; transition: border-color 0.3s ease; }
.newsletter-form input:focus { outline: none; border-color: #ffffff; }
.newsletter-form button { padding: 1rem 2rem; border: 1px solid #ffffff; background-color: #ffffff; color: #000000; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: all 0.3s ease; }
.newsletter-form button:hover { background-color: #000000; color: #ffffff; border-color: #ffffff; box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); }

/* Listen Now Modal */
.modal { display: none; position: fixed; z-index: 100; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0, 0, 0, 0.9); backdrop-filter: blur(8px); }
.modal-content { background-color: #121212; margin: 10vh auto; padding: 3rem 2rem; border: 1px solid #333333; width: 90%; max-width: 400px; position: relative; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8); }
.close-modal { color: #777; position: absolute; top: 15px; right: 20px; font-size: 30px; font-weight: bold; cursor: pointer; transition: color 0.3s ease; line-height: 1; }
.close-modal:hover { color: #ffffff; }
.platform-links { display: flex; flex-direction: column; gap: 1rem; }

.platform-btn { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 1rem; background-color: #0a0a0a; color: #ffffff; text-decoration: none; text-transform: uppercase; font-size: 0.85rem; font-weight: bold; letter-spacing: 2px; border: 1px solid #333333; transition: all 0.3s ease; }
.platform-btn i { font-size: 1.3rem; color: #ffffff; transition: color 0.3s ease; }
.platform-btn:hover { border-color: #ffffff; background-color: #ffffff; color: #000000; box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); }
.platform-btn:hover i { color: #000000; }

/* Minimal Footer & Follow Buttons */
footer { 
    text-align: center; 
    padding: 4rem 5% 3rem 5%; 
    border-top: 1px solid #1a1a1a; 
    background-color: #080808; 
    margin-top: auto; 
}
.follow-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.follow-btn { display: flex; align-items: center; gap: 8px; padding: 0.6rem 1.4rem; border: 1px solid #333333; background-color: transparent; color: #aaaaaa; text-decoration: none; font-size: 0.75rem; font-weight: bold; text-transform: uppercase; letter-spacing: 1.5px; transition: all 0.3s ease; }
.follow-btn i { font-size: 1.1rem; }
.follow-btn:hover { border-color: #ffffff; background-color: #ffffff; color: #000000; }
.social-links a { color: #888888; text-decoration: none; font-size: 0.85rem; letter-spacing: 1px; transition: color 0.3s ease; }
.social-links a:hover { color: #ffffff; }

/* --- UI & LAYOUT FIXES (Ensuring About, Gallery, and Forms stay perfect) --- */
.square-media {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid #2a2a2a;
    background-color: #0d0d0d;
    display: block;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.about-text {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.8;
    padding: 1rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #111111;
    padding: 3rem 2rem;
    border: 1px solid #2a2a2a;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-form input, 
.booking-form select, 
.booking-form textarea {
    width: 100%;
    padding: 1rem;
    background-color: #080808;
    border: 1px solid #333333;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.booking-form input:focus, 
.booking-form select:focus, 
.booking-form textarea:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.booking-form button {
    width: 100%;
}

/* ========================================= */
/* --- NEW INTERACTIVE & SECRET ELEMENTS --- */
/* ========================================= */

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glitch Hover */
.glitch-hover {
    position: relative;
    display: inline-block;
    transition: all 0.2s ease;
}
.glitch-hover:hover {
    animation: glitch-anim 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    color: #fff;
    text-shadow: 2px 0px 0px rgba(255,0,0,0.7), -2px 0px 0px rgba(0,255,255,0.7);
}
@keyframes glitch-anim {
    0% { transform: translate(0) }
    20% { transform: translate(-2px, 1px) }
    40% { transform: translate(-2px, -1px) }
    60% { transform: translate(2px, 1px) }
    80% { transform: translate(2px, -1px) }
    100% { transform: translate(0) }
}

/* Stem Player Console */
.stem-player-container {
    max-width: 600px; margin: 0 auto; background: #0a0a0a;
    border: 1px solid #1f1f1f; padding: 2rem;
}
.master-controls {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid #333; padding-bottom: 1.5rem; margin-bottom: 1.5rem;
}
.stem-master-btn {
    background: #fff; color: #000; border: none; padding: 10px 20px;
    font-family: 'Syncopate', sans-serif; font-weight: bold; font-size: 0.8rem;
    cursor: pointer; letter-spacing: 2px; text-transform: uppercase;
    display: flex; align-items: center; gap: 10px; transition: 0.3s;
}
.stem-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; border-bottom: 1px dashed #1a1a1a;
}
.stem-name {
    color: #fff; font-family: 'Syncopate', sans-serif; font-size: 0.8rem;
    letter-spacing: 2px; text-transform: uppercase;
}
.stem-toggle {
    background: transparent; color: #fff; border: 1px solid #555;
    padding: 5px 15px; font-size: 0.7rem; font-weight: bold;
    letter-spacing: 1px; cursor: pointer; transition: 0.3s;
}
.stem-toggle.active {
    background: #fff; color: #000; border-color: #fff;
}

/* Audio Visualizer */
#visualizer { width: 100%; height: 40px; margin: 15px 0 10px 0; background: transparent; display: block; }

/* Radar Grid Layout */
.radar-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .radar-grid { grid-template-columns: 1fr 1fr; } }
.radar-item { border: 1px solid #1f1f1f; padding: 1.5rem; background: rgba(25,25,25,0.3); transition: border-color 0.3s ease; }
.radar-item:hover { border-color: #444; }
.radar-label { font-size: 0.65rem; color: #666; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; }
.radar-title { color: white; font-weight: bold; font-size: 1.2rem; letter-spacing: 1px; margin: 0 0 0.2rem 0; text-transform: uppercase; }
.radar-genre { color: #888; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; margin: 0; }
.section-header-small { font-size: 0.8rem; color: #555; letter-spacing: 3px; margin-bottom: 1rem; border-bottom: 1px solid #1f1f1f; padding-bottom: 0.5rem; text-transform: uppercase; font-weight: bold; }

/* Vault Terminal */
#vault-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; 
    background: #000; z-index: 10000; flex-direction: column; align-items: center; 
    justify-content: center; font-family: 'Courier New', Courier, monospace; padding: 20px;
}
.vault-container { max-width: 600px; width: 100%; text-align: left; color: #fff; }
.vault-input-line { display: flex; align-items: center; margin-top: 20px; }
#vault-input {
    background: transparent; border: none; color: #fff; font-family: inherit; 
    font-size: 1rem; outline: none; width: 100%; text-transform: uppercase; margin-left: 10px;
}
#vault-close {
    margin-top: 40px; background: none; border: 1px solid #fff; color: #fff; 
    padding: 5px 15px; cursor: pointer; font-family: inherit; transition: 0.3s;
}
#vault-close:hover { background: #fff; color: #000; }
.vault-granted { color: #fff; font-weight: bold; margin-top: 10px; }
.vault-denied { color: red; margin-top: 10px; }

/* Secret Audio Player Overlay */
#secret-player-overlay {
    display: none; position: fixed; z-index: 10002; left: 0; top: 0; width: 100vw; height: 100vh;
    background-color: rgba(0,0,0,0.95); backdrop-filter: blur(5px);
    flex-direction: column; align-items: center; justify-content: center;
}

/* Glitch Mode Override (Shrap Easter Egg) */
.glitch-mode {
    animation: ultimate-glitch 0.2s linear infinite !important;
    filter: invert(1) contrast(200%) grayscale(100%) !important;
    background-color: #fff !important;
}
.glitch-mode * { color: #000 !important; border-color: #000 !important; }
.glitch-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(255, 0, 0, 0.3); z-index: 9999; display: none;
    pointer-events: none; mix-blend-mode: difference;
}
.glitch-mode .glitch-overlay { display: block; animation: flash 0.1s infinite; }

@keyframes ultimate-glitch {
    0% { transform: translate(2px, 1px) rotate(0deg); }
    20% { transform: translate(-3px, -2px) rotate(-1deg); }
    40% { transform: translate(1px, 3px) rotate(1deg); }
    60% { transform: translate(-2px, -1px) rotate(0deg); }
    80% { transform: translate(3px, -3px) rotate(1deg); }
    100% { transform: translate(-1px, 2px) rotate(-1deg); }
}
@keyframes flash {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Vertical Video (YouTube Shorts) */
.shorts-wrapper { 
    position: relative; 
    padding-bottom: 177.77%; /* 9:16 Aspect Ratio */
    height: 0; 
    overflow: hidden; 
    border-radius: 8px; 
    border: 1px solid #1a1a1a; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
    max-width: 320px; 
    margin: 0 auto;
}
.shorts-wrapper iframe { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
}

/* Mobile Adjustments */
@media (max-width: 768px) { 
    .hero h1 { font-size: 3rem; } 
    .modal-content { margin: 15vh auto; width: 95%; padding: 2rem 1.5rem; } 
    .menu-toggle { display: block; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background-color: #0a0a0a; padding: 2rem 0; text-align: center; border-bottom: 1px solid #2a2a2a; z-index: 20; }
    .nav-links.active { display: flex; }
    .tour-row { flex-direction: column; gap: 0.5rem; text-align: center; }
    .tour-date { width: 100%; }
    .newsletter-form { flex-direction: column; }
}