/* ==========================================================================
   DISKORDIAH CORE STYLE SYSTEM - CYBERPUNK RESISTANCE EPK & PORTAL
   ========================================================================== */

/* Design Tokens & Custom Properties */
:root {
    --color-black: #000000;
    --color-military: #56593F;
    --color-military-rgb: 86, 89, 63;
    --color-white: #FEFEFE;
    --color-gray-dark: #12130F;
    --color-gray-mid: #25261F;
    --color-gray-light: #8E917A;
    --color-red-alert: #8B0000;
    
    /* Glow Variables */
    --glow-military: 0 0 15px rgba(var(--color-military-rgb), 0.7);
    --glow-military-thick: 0 0 25px rgba(var(--color-military-rgb), 0.9);
    --glow-white: 0 0 10px rgba(254, 254, 254, 0.4);
    
    /* Layout */
    --header-height: 85px;
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    cursor: default;
}

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: 'Inter', sans-serif;
    font-weight: 300; /* Inter Light */
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--color-black);
    border-left: 1px solid var(--color-gray-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--color-military);
    border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-white);
}

/* Base Typography Settings */
h1, h2, h3, h4, h5, h6, 
.tactical-nav a, 
.btn-military, 
.btn-outline,
.tab-btn,
.countdown-clock {
    font-family: 'Inter', sans-serif;
    font-weight: 600; /* Inter Semi Bold */
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

p {
    color: var(--color-gray-light);
    font-size: 0.95rem;
}

/* Screen Overlays: Analog textures & Retro VHS/CRT feel */
.crt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.04), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.04));
    background-size: 100% 4px, 6px 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.8;
}

/* Subtle rolling line animation over CRT */
.crt-overlay::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(86, 89, 63, 0.06);
    opacity: 0;
    z-index: 10000;
    pointer-events: none;
    animation: crt-scanline 12s linear infinite;
}

@keyframes crt-scanline {
    0% { transform: translateY(-100%); opacity: 0.8; }
    10% { opacity: 0.8; }
    33% { opacity: 0.2; }
    66% { opacity: 0.8; }
    100% { transform: translateY(100%); opacity: 0.2; }
}

.vignette-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle, transparent 40%, rgba(0, 0, 0, 0.85) 95%);
    z-index: 9998;
    pointer-events: none;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.045;
    z-index: 9997;
    pointer-events: none;
}

/* HUD System Top Bar */
.hud-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 28px;
    background-color: var(--color-black);
    border-bottom: 1px solid var(--color-gray-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    font-size: 0.65rem;
    font-family: 'Outfit', sans-serif;
    color: var(--color-gray-light);
    letter-spacing: 0.15em;
    z-index: 1001;
}

.hud-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-indicator {
    width: 6px;
    height: 6px;
    background-color: var(--color-military);
    border-radius: 50%;
    box-shadow: var(--glow-military);
    animation: simple-pulse 2s infinite;
}

@keyframes simple-pulse {
    0% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 8px var(--color-military); }
    100% { transform: scale(0.9); opacity: 0.5; }
}

/* Ambient Audio Toggle Button Styling */
.ambient-audio-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    background-color: rgba(var(--color-military-rgb), 0.15);
    border: 1px solid var(--color-military);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    backdrop-filter: blur(5px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.ambient-audio-toggle:hover {
    background-color: var(--color-military);
    box-shadow: var(--glow-military);
    border-color: var(--color-white);
}

.ambient-audio-toggle.active {
    border-color: var(--color-white);
    background-color: rgba(var(--color-military-rgb), 0.4);
    box-shadow: var(--glow-military-thick);
}

/* Mini Audio wave animation for toggle */
.audio-icon-wave {
    display: flex;
    align-items: flex-end;
    gap: 2.5px;
    height: 12px;
    width: 14px;
}

.audio-icon-wave span {
    display: block;
    width: 2px;
    height: 2px;
    background-color: var(--color-white);
    transition: height 0.3s ease;
}

.ambient-audio-toggle.active .audio-icon-wave span:nth-child(1) { animation: wave-anim 1s infinite alternate 0.1s; }
.ambient-audio-toggle.active .audio-icon-wave span:nth-child(2) { animation: wave-anim 0.8s infinite alternate 0.3s; }
.ambient-audio-toggle.active .audio-icon-wave span:nth-child(3) { animation: wave-anim 1.2s infinite alternate 0.2s; }
.ambient-audio-toggle.active .audio-icon-wave span:nth-child(4) { animation: wave-anim 0.9s infinite alternate 0.4s; }

@keyframes wave-anim {
    0% { height: 2px; }
    100% { height: 12px; }
}

/* Main Header */
.main-header {
    position: fixed;
    top: 28px;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid var(--color-gray-dark);
    backdrop-filter: blur(8px);
    z-index: 10005;
    transition: background 0.3s;
}

.header-container {
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

/* Reserved space for Logo - Sleek Negative Space & Tech Accent */
.logo-area {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
}

.nav-logo {
    height: 38px;
    width: auto;
    display: block;
}

/* Tactical Menu Navigation */
.tactical-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.tactical-nav a {
    color: var(--color-gray-light);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-decoration: none;
    padding: 6px 12px;
    position: relative;
    transition: all 0.3s ease;
}

/* Custom Glitch Underline on Active / Hover Link */
.tactical-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 12px;
    width: 0;
    height: 1px;
    background-color: var(--color-military);
    transition: width 0.3s ease;
    box-shadow: var(--glow-military);
}

.tactical-nav a:hover,
.tactical-nav a.active {
    color: var(--color-white);
    text-shadow: var(--glow-white);
}

.tactical-nav a:hover::after,
.tactical-nav a.active::after {
    width: calc(100% - 24px);
}

/* Hero Section Base */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background-color: var(--color-black);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

/* Gravitational Canvas Black Hole Background */
.gravity-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: var(--color-black);
}

/* Hero Overlay Content Box */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: flex-start;
    pointer-events: none;
}

.hud-box {
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(var(--color-military-rgb), 0.25);
    border-left: 3px solid var(--color-military);
    padding: 45px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    pointer-events: auto;
    position: relative;
    z-index: 10005;
}

.hud-subtitle {
    display: inline-block;
    color: var(--color-military);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: 24px;
}

.hero-title-img {
    max-width: 100%;
    height: auto;
    max-height: 2.5rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(254, 254, 254, 0.45));
}

.hero-description {
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Premium Buttons Styling */
.btn-military, .btn-outline {
    position: relative;
    padding: 16px 32px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-decoration: none;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-military {
    background-color: var(--color-military);
    color: var(--color-white);
    border: 1px solid var(--color-military);
    box-shadow: var(--glow-military);
}

.btn-military:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
    box-shadow: var(--glow-white);
}

.btn-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255,255,255,0) 50%, rgba(255,255,255,0.08) 50%);
    background-size: 100% 4px;
    pointer-events: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-gray-light);
    border: 1px solid var(--color-gray-mid);
}

.btn-outline:hover {
    border-color: var(--color-white);
    color: var(--color-white);
    box-shadow: var(--glow-white);
}

/* Micro HUD detail on hover buttons */
.glitch-btn:hover .btn-label {
    animation: text-shake 0.3s infinite;
}

@keyframes text-shake {
    0% { transform: translate(0, 0); }
    20% { transform: translate(-1.5px, 1px); }
    40% { transform: translate(1px, -1.5px); }
    60% { transform: translate(-1px, -1px); }
    80% { transform: translate(1.5px, 1.5px); }
    100% { transform: translate(0, 0); }
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 2;
    color: var(--color-gray-light);
}

.scroll-text {
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    font-family: 'Outfit', sans-serif;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background-color: rgba(var(--color-military-rgb), 0.35);
    position: relative;
    overflow: hidden;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--color-military);
    box-shadow: var(--glow-military);
    animation: scroll-slide 2.2s infinite ease-in-out;
}

@keyframes scroll-slide {
    0% { transform: translateY(-100%); }
    60% { transform: translateY(300%); }
    100% { transform: translateY(300%); }
}

/* Section Common Layouts */
main {
    position: relative;
    z-index: 10;
}

section {
    padding: 120px 0;
    border-bottom: 1px solid var(--color-gray-dark);
    background-color: var(--color-black);
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* HUD Styled Section Headers */
.section-header-hud {
    margin-bottom: 70px;
    position: relative;
}

.section-title {
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    color: var(--color-white);
    margin-bottom: 6px;
    text-shadow: var(--glow-white);
}

.section-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    color: var(--color-military);
    letter-spacing: 0.2em;
    display: inline-block;
}

.header-divider {
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--color-military) 0%, rgba(86, 89, 63, 0.15) 75%, transparent 100%);
    margin-top: 15px;
    box-shadow: var(--glow-military);
}

/* ==========================================================================
   WATERFALL RELEASE TIMELINE SECTION
   ========================================================================== */
.waterfall-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: start;
}

.waterfall-timeline {
    position: relative;
    padding-left: 20px;
}

/* Vertical line connecting nodes */
.waterfall-timeline::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 5px;
    bottom: 5px;
    width: 1px;
    background: linear-gradient(to bottom, var(--color-military) 60%, rgba(86, 89, 63, 0.1) 100%);
}

.timeline-node {
    position: relative;
    padding-bottom: 45px;
    padding-left: 30px;
    transition: all 0.3s ease;
}

.timeline-node:last-child {
    padding-bottom: 0;
}

/* Node indicator dot */
.node-indicator {
    position: absolute;
    left: -23px;
    top: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.status-dot {
    width: 9px;
    height: 9px;
    background-color: var(--color-military);
    border-radius: 50%;
    border: 2px solid var(--color-black);
    box-shadow: var(--glow-military);
    z-index: 2;
}

.status-dot.pulse {
    background-color: var(--color-white);
    box-shadow: 0 0 10px var(--color-white);
    animation: white-node-pulse 1.8s infinite;
}

@keyframes white-node-pulse {
    0% { transform: scale(1); box-shadow: 0 0 6px var(--color-white); }
    50% { transform: scale(1.3); box-shadow: 0 0 15px var(--color-white); }
    100% { transform: scale(1); box-shadow: 0 0 6px var(--color-white); }
}

.status-dot-locked {
    width: 9px;
    height: 9px;
    background-color: var(--color-black);
    border-radius: 50%;
    border: 2px solid var(--color-gray-mid);
    z-index: 2;
}

.node-content {
    background-color: rgba(18, 19, 15, 0.25);
    border: 1px solid var(--color-gray-dark);
    padding: 24px;
    transition: all 0.3s ease;
}

.timeline-node.active .node-content {
    background-color: rgba(86, 89, 63, 0.05);
    border: 1px solid var(--color-military);
    box-shadow: var(--glow-military);
}

.timeline-node.upcoming .node-content {
    opacity: 0.45;
    background: repeating-linear-gradient(
      45deg,
      rgba(37, 38, 31, 0.05),
      rgba(37, 38, 31, 0.05) 10px,
      rgba(18, 19, 15, 0.1) 10px,
      rgba(18, 19, 15, 0.1) 20px
    );
}

.timeline-node:hover .node-content {
    border-color: var(--color-military);
    transform: translateX(5px);
}

.node-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.62rem;
    color: var(--color-military);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 8px;
}

.timeline-node.active .node-tag {
    color: var(--color-white);
    text-shadow: var(--glow-white);
}

.node-title {
    font-size: 1.15rem;
    color: var(--color-white);
    margin-bottom: 8px;
}

.node-desc {
    font-size: 0.85rem;
    margin-bottom: 18px;
}

.node-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.release-date {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    color: var(--color-gray-light);
    letter-spacing: 0.05em;
}

.btn-timeline-action {
    background-color: transparent;
    border: 1px solid var(--color-military);
    color: var(--color-military);
    padding: 6px 14px;
    font-size: 0.65rem;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.btn-timeline-action:hover,
.btn-timeline-action.active {
    background-color: var(--color-military);
    color: var(--color-white);
    box-shadow: var(--glow-military);
}

/* COUNTDOWN DASHBOARD CARD */
.countdown-hud-panel {
    background-color: rgba(18, 19, 15, 0.6);
    border: 1px solid var(--color-gray-mid);
    padding: 35px;
    position: relative;
    backdrop-filter: blur(8px);
}

.hud-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-military);
    box-shadow: var(--glow-military);
}

.hud-panel-title {
    font-size: 0.85rem;
    color: var(--color-white);
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--color-gray-dark);
    padding-bottom: 8px;
}

.countdown-status {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.status-label {
    color: var(--color-gray-light);
}

.status-value {
    color: var(--color-military);
    font-weight: 700;
}

.flashing-text {
    animation: quick-flash 1.5s infinite;
}

@keyframes quick-flash {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; text-shadow: var(--glow-military); }
}

/* Military waterfall loading progress bar */
.waterfall-progress-wrapper {
    margin-bottom: 35px;
}

.waterfall-progress-bar {
    position: relative;
    width: 100%;
    height: 18px;
    background-color: var(--color-black);
    border: 1px solid var(--color-gray-mid);
    overflow: hidden;
}

.waterfall-progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 84%; /* Corresponde aos 3 singles já lançados de 4 na cachoeira */
    background-color: var(--color-military);
}

.bar-glow {
    position: absolute;
    top: 0;
    left: 80%;
    width: 4%;
    height: 100%;
    background-color: var(--color-white);
    box-shadow: 0 0 10px var(--color-white);
    animation: bar-pulse 2.5s infinite linear;
}

@keyframes bar-pulse {
    0% { transform: scaleX(1); opacity: 0.5; }
    50% { transform: scaleX(1.5); opacity: 1; }
    100% { transform: scaleX(1); opacity: 0.5; }
}

.bar-percentage {
    position: absolute;
    right: 10px;
    top: 1px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--color-white);
}

.hud-bar-markers {
    display: flex;
    justify-content: space-between;
    font-family: 'Outfit', sans-serif;
    font-size: 0.55rem;
    color: var(--color-gray-light);
    margin-top: 6px;
}

.hud-bar-markers .active-marker {
    color: var(--color-military);
    font-weight: bold;
}

/* Retro HUD Countdown Clock numbers */
.countdown-clock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-black);
    border: 1px solid var(--color-gray-dark);
    padding: 16px 20px;
    margin-bottom: 30px;
}

.clock-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--color-white);
    text-shadow: var(--glow-white);
    line-height: 1;
}

.time-label {
    font-size: 0.5rem;
    color: var(--color-military);
    letter-spacing: 0.15em;
    margin-top: 6px;
}

.clock-divider {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: var(--color-military);
    animation: quick-flash 1s infinite;
}

.tactical-specs {
    border-top: 1px solid var(--color-gray-dark);
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.08em;
    color: var(--color-gray-light);
}

.spec-row .highlight-text {
    color: var(--color-white);
    font-weight: bold;
}

.w-100 { width: 100%; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-15 { margin-top: 15px; }
.mt-10 { margin-top: 10px; }

/* ==========================================================================
   MUSIC & VIDEO HUB SECTION
   ========================================================================== */
.media-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 40px;
}

/* AUDIO DECK PANEL */
.audio-deck-panel {
    background-color: rgba(18, 19, 15, 0.45);
    border: 1px solid var(--color-gray-mid);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.deck-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-gray-dark);
    padding-bottom: 12px;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
}

.deck-logo {
    color: var(--color-military);
    font-weight: 700;
}

.deck-mode-indicator {
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 6px;
}

.active-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-military);
    border-radius: 50%;
    animation: simple-pulse 1.5s infinite;
}

/* EQ Canvas Visualizer */
.eq-canvas {
    width: 100%;
    height: 55px;
    background-color: var(--color-black);
    border: 1px solid var(--color-gray-dark);
    margin-bottom: 20px;
}

.current-track-info {
    margin-bottom: 24px;
}

.track-title-playing {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 4px;
    text-shadow: var(--glow-white);
}

.track-artist-playing {
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    color: var(--color-military);
    letter-spacing: 0.15em;
}

/* Audio Player progress seek bar */
.player-timeline {
    width: 100%;
    height: 4px;
    background-color: var(--color-gray-dark);
    position: relative;
    margin-bottom: 8px;
}

.player-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--color-military);
    box-shadow: var(--glow-military);
}

.time-stamps {
    display: flex;
    justify-content: space-between;
    font-family: 'Outfit', sans-serif;
    font-size: 0.62rem;
    color: var(--color-gray-light);
    margin-bottom: 20px;
}

/* Controls */
.control-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.btn-deck-control {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gray-mid);
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-deck-control:hover {
    border-color: var(--color-military);
    background-color: rgba(var(--color-military-rgb), 0.15);
}

.btn-play-large {
    width: 50px;
    height: 50px;
    border-color: var(--color-military);
    box-shadow: var(--glow-military);
}

.btn-play-large:hover {
    background-color: var(--color-military);
}

/* Custom Vector Arrow drawings in CSS */
.control-arrow-left, .control-arrow-right {
    display: block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
.control-arrow-left {
    border-right: 8px solid var(--color-white);
}
.control-arrow-right {
    border-left: 8px solid var(--color-white);
}

.play-icon {
    display: block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--color-white);
    margin-left: 2px;
}

.play-icon.paused {
    width: 10px;
    height: 12px;
    border: none;
    border-left: 3px solid var(--color-white);
    border-right: 3px solid var(--color-white);
    margin-left: 0;
}

/* Tracklist Rows */
.tracklist-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--color-gray-dark);
    padding-top: 20px;
}

.track-item {
    display: grid;
    grid-template-columns: 35px 1fr 50px;
    padding: 12px 16px;
    background-color: var(--color-black);
    border: 1px solid var(--color-gray-dark);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.track-item .track-number {
    font-family: 'Outfit', sans-serif;
    color: var(--color-military);
}

.track-item .track-name {
    color: var(--color-gray-light);
    font-weight: 500;
}

.track-item .track-duration {
    font-family: 'Outfit', sans-serif;
    text-align: right;
    color: var(--color-gray-light);
}

.track-item:hover {
    border-color: var(--color-military);
    background-color: rgba(var(--color-military-rgb), 0.05);
}

.track-item.active {
    border-color: var(--color-white);
    background-color: rgba(var(--color-military-rgb), 0.15);
    box-shadow: var(--glow-military);
}

.track-item.active .track-name,
.track-item.active .track-duration {
    color: var(--color-white);
    font-weight: bold;
}

/* VIDEO PANEL */
.video-panel {
    background-color: rgba(18, 19, 15, 0.45);
    border: 1px solid var(--color-gray-mid);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-header-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--color-gray-dark);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.terminal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.terminal-dot.red { background-color: var(--color-red-alert); }
.terminal-dot.yellow { background-color: #D4AF37; }
.terminal-dot.green { background-color: var(--color-military); }

.video-source-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    color: var(--color-gray-light);
    letter-spacing: 0.1em;
    margin-left: 6px;
}

.video-container-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background-color: var(--color-black);
    border: 1px solid var(--color-gray-dark);
    overflow: hidden;
}

/* Retro VHS Static screen placeholder */
.video-noise-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.static-vhs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.99' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.18;
    animation: noise-shake 0.1s infinite;
}

@keyframes noise-shake {
    0% { transform: translate(0, 0); }
    10% { transform: translate(-1px, 2px); }
    20% { transform: translate(1px, -1px); }
    30% { transform: translate(-2px, -2px); }
    40% { transform: translate(2px, 1px); }
    50% { transform: translate(-1px, -1px); }
    60% { transform: translate(1px, 2px); }
    70% { transform: translate(-2px, 1px); }
    80% { transform: translate(2px, -2px); }
    90% { transform: translate(-1px, -1px); }
}

.vhs-rec {
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    color: var(--color-red-alert);
    font-weight: 800;
    letter-spacing: 0.1em;
    animation: quick-flash 1.2s infinite;
}

.play-overlay-trigger {
    position: relative;
    z-index: 12;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.play-overlay-trigger:hover {
    transform: scale(1.05);
}

.play-triangle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-black);
    border: 2px solid var(--color-military);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: var(--glow-military);
    transition: all 0.3s ease;
}

.play-overlay-trigger:hover .play-triangle {
    border-color: var(--color-white);
    background-color: var(--color-military);
    box-shadow: var(--glow-white);
}

.play-triangle::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid var(--color-white);
    margin-left: 4px;
}

.trigger-label {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    font-family: 'Outfit', sans-serif;
    color: var(--color-white);
    text-shadow: var(--glow-white);
    border-bottom: 1px solid rgba(254, 254, 254, 0.2);
    padding-bottom: 3px;
}

.video-iframe-container {
    width: 100%;
    height: 100%;
}

.video-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-info-specs {
    margin-top: 20px;
}

.video-info-specs .video-desc {
    color: var(--color-white);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.video-info-specs .video-meta {
    font-size: 0.78rem;
    color: var(--color-gray-light);
}

/* ==========================================================================
   EPK (ELECTRONIC PRESS KIT) SECTION
   ========================================================================== */
.epk-section {
    background-color: var(--color-black);
}

.epk-unlocked-banner {
    background-color: rgba(var(--color-military-rgb), 0.08);
    border: 1px solid var(--color-military);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--color-white);
    margin-bottom: 45px;
    position: relative;
    overflow: hidden;
}

.epk-unlocked-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255,255,255,0) 50%, rgba(255,255,255,0.03) 50%);
    background-size: 100% 4px;
}

.epk-console-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
}

/* Tactical Operator Console Box style */
.console-box {
    background-color: rgba(18, 19, 15, 0.4);
    border: 1px solid var(--color-gray-mid);
    padding: 40px;
    position: relative;
}

.console-box-accent {
    position: absolute;
    top: -1px;
    left: 20px;
    width: 80px;
    height: 3px;
    background-color: var(--color-military);
    box-shadow: var(--glow-military);
}

.console-header-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    color: var(--color-military);
    letter-spacing: 0.22em;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-gray-dark);
    padding-bottom: 10px;
}

.dossier-bio-content p {
    margin-bottom: 20px;
    font-size: 0.88rem;
    text-align: justify;
}

.dossier-bio-content p:last-of-type {
    margin-bottom: 0;
}

/* Large custom first letter dropcap */
.dropcap-text::first-letter {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    float: left;
    margin-right: 12px;
    line-height: 0.85;
    color: var(--color-white);
    text-shadow: var(--glow-white);
    border: 1px solid var(--color-military);
    padding: 6px 10px;
    background-color: rgba(var(--color-military-rgb), 0.15);
    box-shadow: var(--glow-military);
}

/* Downloads wrapper inside bio */
.epk-downloads-box {
    margin-top: 40px;
    border-top: 1px solid var(--color-gray-dark);
    padding-top: 30px;
}

.download-box-title {
    font-size: 0.78rem;
    color: var(--color-white);
    letter-spacing: 0.15em;
    margin-bottom: 18px;
}

.downloads-flex {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.download-item {
    display: flex;
    align-items: center;
    background-color: var(--color-black);
    border: 1px solid var(--color-gray-dark);
    padding: 16px 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.download-item:hover {
    border-color: var(--color-military);
    background-color: rgba(var(--color-military-rgb), 0.1);
    transform: translateX(4px);
}

.download-item .file-icon {
    font-size: 1.5rem;
    margin-right: 18px;
}

.download-item .file-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.download-item .file-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--color-white);
    letter-spacing: 0.05em;
}

.download-item .file-size {
    font-family: 'Outfit', sans-serif;
    font-size: 0.58rem;
    color: var(--color-gray-light);
    letter-spacing: 0.08em;
}

.download-item .file-action-arrow {
    color: var(--color-military);
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.download-item:hover .file-action-arrow {
    color: var(--color-white);
    transform: translate(2px, -2px);
}

/* INTERACTIVE CREW DOSSIER TABS */
.dossier-interactive-wrapper {
    display: flex;
    flex-direction: column;
}

.dossier-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 25px;
}

.tab-btn {
    background-color: var(--color-black);
    border: 1px solid var(--color-gray-dark);
    color: var(--color-gray-light);
    padding: 10px 4px;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--color-military);
    color: var(--color-white);
}

.tab-btn.active {
    background-color: var(--color-military);
    color: var(--color-white);
    border-color: var(--color-military);
    box-shadow: var(--glow-military);
}

.member-panel {
    display: none;
    animation: tab-fade-in 0.5s ease-out forwards;
}

.member-panel.active {
    display: block;
}

@keyframes tab-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.member-profile-layout {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.member-stories-box {
    position: relative;
    width: 160px;
    height: 256px;
    border: 1px solid var(--color-gray-mid);
    background-color: var(--color-black);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--glow-military);
}

.member-stories-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 70%, rgba(86,89,63,0.3) 100%);
    pointer-events: none;
    z-index: 3;
}

.stories-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(110%);
    transition: all 0.5s ease;
}

.member-stories-box:hover .stories-image {
    filter: grayscale(20%) contrast(100%);
}

.member-info-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.avatar-static-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.15;
    background-size: cover;
    background-color: var(--color-gray-dark);
    pointer-events: none;
    z-index: 2;
}

.avatar-tag {
    position: absolute;
    bottom: 2px;
    width: 100%;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.5rem;
    letter-spacing: 0.15em;
    color: var(--color-white);
    background-color: rgba(0,0,0,0.75);
    padding: 2px 0;
    z-index: 4;
}

.member-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(142, 145, 122, 0.1);
    padding-bottom: 4px;
}

.spec-item .label {
    color: var(--color-gray-light);
}

.spec-item .val {
    color: var(--color-white);
    font-weight: 700;
}

.member-lore {
    font-size: 0.85rem;
    color: var(--color-gray-light);
    text-align: justify;
    line-height: 1.6;
}

.member-panel #dossier-vektor {
    display: block;
}

/* HIGH FIDELITY PROMO PHOTO GALLERY */
.gallery-hud-box {
    background-color: rgba(18, 19, 15, 0.4);
    border: 1px solid var(--color-gray-mid);
    padding: 40px;
    position: relative;
}

.gallery-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.gallery-item-wrapper {
    position: relative;
    border: 1px solid var(--color-gray-mid);
    background-color: var(--color-black);
    aspect-ratio: 16/10;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(110%);
    opacity: 0.7;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.8);
    pointer-events: none;
}

.gallery-info {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    border-top: 1px solid var(--color-military);
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    transition: bottom 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-info .title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    color: var(--color-white);
    letter-spacing: 0.1em;
}

.gallery-info .desc {
    font-size: 0.62rem;
    color: var(--color-gray-light);
    margin-top: 2px;
}

/* Hover effects */
.gallery-item-wrapper:hover .gallery-img {
    filter: grayscale(20%) contrast(100%) brightness(105%);
    opacity: 1;
    transform: scale(1.03);
}

.gallery-item-wrapper:hover .gallery-info {
    bottom: 0;
}

/* ==========================================================================
   NEWSLETTER & BOOKINGS / CONTACT SECTION
   ========================================================================== */
.contact-section {
    background-color: var(--color-black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
}

.contact-card {
    background-color: rgba(18, 19, 15, 0.45);
    border: 1px solid var(--color-gray-mid);
    padding: 45px;
    position: relative;
}

.contact-accent {
    position: absolute;
    top: -1px;
    left: 30px;
    width: 60px;
    height: 3px;
    background-color: var(--color-military);
    box-shadow: var(--glow-military);
}

.panel-inner-title {
    font-size: 1.05rem;
    color: var(--color-white);
    margin-bottom: 12px;
    text-shadow: var(--glow-white);
}

.panel-inner-desc {
    font-size: 0.85rem;
    margin-bottom: 30px;
}

/* Tactical military style Form input */
.tactical-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-hud-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.6rem;
    color: var(--color-military);
    letter-spacing: 0.15em;
    font-weight: 700;
}

.input-with-marker {
    display: flex;
    align-items: center;
    background-color: var(--color-black);
    border: 1px solid var(--color-gray-dark);
    padding: 0 16px;
    transition: border-color 0.3s;
}

.input-with-marker .input-marker {
    color: var(--color-military);
    font-family: monospace;
    font-size: 1rem;
    margin-right: 10px;
}

.hud-input {
    width: 100%;
    height: 48px;
    background-color: transparent;
    border: none;
    outline: none;
    color: var(--color-white);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.hud-input::placeholder {
    color: #45473E;
}

.input-with-marker:focus-within {
    border-color: var(--color-military);
    box-shadow: var(--glow-military);
}

.d-none { display: none; }
.text-success {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    color: var(--color-military);
    letter-spacing: 0.05em;
    font-weight: bold;
}

/* Bookings list */
.bookings-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
    border-bottom: 1px solid var(--color-gray-dark);
    padding-bottom: 25px;
}

.booking-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.booking-row .b-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.62rem;
    color: var(--color-military);
    letter-spacing: 0.12em;
    font-weight: 700;
}

.booking-row .b-val {
    font-size: 0.95rem;
    color: var(--color-white);
}

.booking-row .highlight-text {
    font-weight: bold;
    text-shadow: var(--glow-white);
}

/* Social links HUD */
.social-hud-links {
    display: flex;
    gap: 12px;
}

.social-icon-btn {
    border: 1px solid var(--color-gray-mid);
    color: var(--color-gray-light);
    background-color: transparent;
    padding: 10px 16px;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-icon-btn:hover {
    border-color: var(--color-white);
    color: var(--color-white);
    box-shadow: var(--glow-white);
    background-color: rgba(254, 254, 254, 0.05);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: var(--color-black);
    border-top: 1px solid var(--color-gray-dark);
    padding: 35px 0;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.58rem;
    color: var(--color-gray-light);
    letter-spacing: 0.12em;
}

.footer-meta-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* ==========================================================================
   ADVANCED GLITCH SHAKE TEXT ANIMATIONS
   ========================================================================== */
.glitch-text-large {
    position: relative;
}

.glitch-text-large::before,
.glitch-text-large::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
}

.glitch-text-large::before {
    left: 2px;
    text-shadow: -1.5px 0 rgba(var(--color-military-rgb), 0.8);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch-text-large::after {
    left: -2px;
    text-shadow: -1.5px 0 #fff;
    clip: rect(85px, 450px, 140px, 0);
    animation: glitch-anim-2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip: rect(10px, 9999px, 45px, 0); }
    10% { clip: rect(80px, 9999px, 120px, 0); }
    20% { clip: rect(40px, 9999px, 80px, 0); }
    30% { clip: rect(110px, 9999px, 140px, 0); }
    40% { clip: rect(20px, 9999px, 60px, 0); }
    50% { clip: rect(90px, 9999px, 110px, 0); }
    60% { clip: rect(50px, 9999px, 95px, 0); }
    70% { clip: rect(130px, 9999px, 150px, 0); }
    80% { clip: rect(30px, 9999px, 70px, 0); }
    90% { clip: rect(75px, 9999px, 115px, 0); }
    100% { clip: rect(100px, 9999px, 130px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 95px, 0); }
    11% { clip: rect(15px, 9999px, 55px, 0); }
    22% { clip: rect(120px, 9999px, 145px, 0); }
    33% { clip: rect(45px, 9999px, 85px, 0); }
    44% { clip: rect(95px, 9999px, 125px, 0); }
    55% { clip: rect(30px, 9999px, 60px, 0); }
    66% { clip: rect(110px, 9999px, 130px, 0); }
    77% { clip: rect(5px, 9999px, 45px, 0); }
    88% { clip: rect(80px, 9999px, 115px, 0); }
    100% { clip: rect(135px, 9999px, 150px, 0); }
}

/* ==========================================================================
   MOBILE & RESPONSIVE LAYOUT MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .waterfall-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .epk-console-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    
    /* Mobile Menu drawer */
    .tactical-nav {
        position: fixed;
        top: calc(28px + var(--header-height));
        left: -100%;
        width: 100%;
        height: calc(100vh - 28px - var(--header-height));
        background-color: var(--color-black);
        border-right: 1px solid var(--color-gray-dark);
        z-index: 999;
        transition: all 0.4s ease;
    }
    
    .tactical-nav.open {
        left: 0;
    }
    
    .tactical-nav ul {
        flex-direction: column;
        padding: 40px;
        gap: 30px;
    }
    
    .tactical-nav a {
        font-size: 1.1rem;
    }
    
    /* Hamburger button */
    .menu-mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }
    
    .menu-mobile-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--color-white);
        transition: all 0.3s ease;
    }
    
    .menu-mobile-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-mobile-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-mobile-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .hud-top-bar {
        padding: 0 15px;
    }
    .hud-location {
        display: none;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hud-box {
        padding: 25px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-container {
        padding: 0 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .dossier-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 0 20px;
    }
}

/* ==========================================================================
   SPA ROUTER VIEWS & LAYOUT CONTROL
   ========================================================================== */
.page-view {
    display: none;
    animation: fade-page 0.4s ease-out forwards;
}

.page-view.active-page {
    display: block;
}

.hero-section.active-page {
    display: flex !important;
}

@keyframes fade-page {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   PERSISTENT FLOATING CONTROLS & FLOATING AUDIO DECK
   ========================================================================== */
.floating-controls {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    gap: 15px;
    z-index: 1000;
}

.ambient-audio-toggle {
    position: static !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
}

.music-player-toggle {
    background-color: rgba(var(--color-military-rgb), 0.15);
    border: 1px solid var(--color-military);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    backdrop-filter: blur(5px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.music-player-toggle:hover {
    background-color: var(--color-military);
    box-shadow: var(--glow-military);
    border-color: var(--color-white);
}

.music-player-toggle.active {
    border-color: var(--color-white);
    background-color: rgba(var(--color-military-rgb), 0.4);
    box-shadow: var(--glow-military-thick);
}

.floating-audio-deck {
    position: fixed;
    bottom: 85px;
    left: 30px;
    width: 380px;
    background-color: rgba(18, 19, 15, 0.95);
    border: 1px solid var(--color-military);
    box-shadow: var(--glow-military-thick), 0 10px 40px rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    z-index: 1001;
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 15px;
    animation: deck-slide-up 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.floating-audio-deck.open {
    display: flex;
}

@keyframes deck-slide-up {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.deck-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(var(--color-military-rgb), 0.3);
    padding-bottom: 8px;
}

.deck-logo {
    font-size: 0.65rem;
    font-family: 'Outfit', sans-serif;
    color: var(--color-military);
    letter-spacing: 0.15em;
}

.deck-close-btn {
    background: none;
    border: none;
    color: var(--color-gray-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.deck-close-btn:hover {
    color: var(--color-white);
}

/* Contact Section Interactive Links */
.contact-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted rgba(var(--color-military-rgb), 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-link:hover {
    color: var(--color-white);
    border-bottom-color: var(--color-white);
    text-shadow: var(--glow-white);
}

/* ==========================================================================
   CHRONOLOGIA DE MISSÕES (EVENTS SECTION)
   ========================================================================== */
.events-section {
    padding-top: 120px;
}

.events-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--color-gray-dark);
    padding-bottom: 12px;
}

.event-tab-btn {
    background: none;
    border: 1px solid var(--color-gray-mid);
    color: var(--color-gray-light);
    padding: 12px 24px;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-tab-btn:hover, .event-tab-btn.active {
    border-color: var(--color-military);
    color: var(--color-white);
    background-color: rgba(var(--color-military-rgb), 0.15);
    box-shadow: var(--glow-military);
}

.events-panel {
    display: none;
    animation: fade-page 0.3s ease-out forwards;
}

.events-panel.active {
    display: block;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 200px;
}

.event-item {
    display: grid;
    grid-template-columns: 140px 1fr 180px;
    align-items: center;
    gap: 30px;
    background-color: rgba(18, 19, 15, 0.4);
    border: 1px solid var(--color-gray-dark);
    padding: 24px 35px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.event-item:hover {
    border-color: var(--color-military);
    box-shadow: var(--glow-military);
    transform: translateX(6px);
}

.event-item.past {
    cursor: pointer;
}

.event-date-box {
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(var(--color-military-rgb), 0.25);
    padding-right: 25px;
}

.event-day {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--color-white);
    line-height: 0.95;
    letter-spacing: -0.02em;
}

.event-month-year {
    font-size: 0.65rem;
    color: var(--color-military);
    letter-spacing: 0.12em;
    margin-top: 5px;
}

.event-details-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.event-title-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.05em;
}

.event-location-text {
    font-size: 0.8rem;
    color: var(--color-gray-light);
    letter-spacing: 0.05em;
}

.event-action-box .btn-timeline-action {
    pointer-events: none;
}

.event-item.past .event-action-box .btn-timeline-action {
    pointer-events: auto;
}

/* ==========================================================================
   BENTO GRID GALLERY SECTION
   ========================================================================== */
.gallery-section {
    padding-top: 120px;
}

.gallery-filters {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    background-color: rgba(18, 19, 15, 0.3);
    border: 1px solid var(--color-gray-dark);
    padding: 20px 30px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-group label {
    font-size: 0.7rem;
    font-family: 'Outfit', sans-serif;
    color: var(--color-military);
    letter-spacing: 0.15em;
}

.hud-select {
    background-color: var(--color-black);
    border: 1px solid var(--color-gray-mid);
    color: var(--color-white);
    padding: 8px 16px;
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s;
}

.hud-select:focus {
    border-color: var(--color-military);
    box-shadow: var(--glow-military);
    outline: none;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 20px;
    margin-bottom: 60px;
}

.bento-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-gray-dark);
    background-color: var(--color-gray-dark);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Bento skeleton loader pulse */
.bento-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-gray-dark) 25%, var(--color-gray-mid) 50%, var(--color-gray-dark) 75%);
    background-size: 200% 100%;
    animation: bento-skeleton 1.5s infinite;
    z-index: 2;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.bento-item.loaded::before {
    opacity: 0;
}

@keyframes bento-skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.bento-item:hover {
    border-color: var(--color-military);
    box-shadow: var(--glow-military);
}

/* Bento Sizing Modifiers */
.bento-item.w-2 { grid-column: span 2; }
.bento-item.h-2 { grid-row: span 2; }
.bento-item.wh-2 { grid-column: span 2; grid-row: span 2; }

.bento-item img, .bento-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bento-item:hover img, .bento-item:hover video {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    padding: 25px 20px 20px 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}

.bento-item:hover .bento-overlay {
    opacity: 1;
    transform: translateY(0);
}

.bento-caption {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.bento-meta {
    font-size: 0.65rem;
    font-family: 'Outfit', sans-serif;
    color: var(--color-military);
    letter-spacing: 0.08em;
}

.bento-video-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(var(--color-military-rgb), 0.85);
    border: 1px solid var(--color-white);
    color: var(--color-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: var(--glow-military);
    pointer-events: none;
}

/* ==========================================================================
   CARROSSEL DE INTEGRANTES (ABOUT SECTION)
   ========================================================================== */
.about-section {
    padding-top: 120px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: start;
}

.carousel-container {
    position: relative;
    width: 100%;
    margin-top: 20px;
    min-height: 320px;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    display: none;
    width: 100%;
    animation: slide-fade 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.carousel-slide.active {
    display: block;
}

@keyframes slide-fade {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    border-top: 1px solid rgba(var(--color-military-rgb), 0.2);
    padding-top: 20px;
}

.carousel-ctrl-btn {
    background: none;
    border: 1px solid var(--color-gray-mid);
    color: var(--color-gray-light);
    padding: 8px 16px;
    font-size: 0.65rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-ctrl-btn:hover {
    border-color: var(--color-military);
    color: var(--color-white);
    background-color: rgba(var(--color-military-rgb), 0.1);
    box-shadow: var(--glow-military);
}

.carousel-indicator-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: var(--color-military);
    letter-spacing: 0.15em;
}

/* ==========================================================================
   MODAIS DE MÍDIA INTERATIVOS
   ========================================================================== */
.media-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.media-modal.open {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background-color: var(--color-gray-dark);
    border: 1px solid var(--color-military);
    box-shadow: var(--glow-military-thick), 0 10px 50px rgba(0,0,0,0.9);
    width: 90%;
    max-width: 900px;
    z-index: 10001;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: modal-zoom-in 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes modal-zoom-in {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--color-gray-light);
    font-size: 2.2rem;
    cursor: pointer;
    transition: color 0.2s;
    user-select: none;
}

.modal-close:hover {
    color: var(--color-white);
}

.modal-header {
    border-bottom: 1px solid rgba(var(--color-military-rgb), 0.25);
    padding-bottom: 10px;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
}

.modal-subtitle {
    font-size: 0.65rem;
    font-family: 'Outfit', sans-serif;
    color: var(--color-military);
    letter-spacing: 0.1em;
}

.modal-media-container {
    width: 100%;
    height: 500px;
    background-color: var(--color-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    border: 1px solid var(--color-gray-mid);
    padding: 10px;
    gap: 15px;
}

.modal-media-container img, .modal-media-container video {
    max-width: 100%;
    max-height: 440px;
    object-fit: contain;
    border: 1px solid var(--color-gray-dark);
}

.modal-media-caption {
    font-size: 0.85rem;
    color: var(--color-gray-light);
    text-align: center;
    font-family: 'Inter', sans-serif;
}

/* Event Gallery Showcase Modal Styling */
.event-gallery-modal-content {
    max-width: 950px;
    background-color: var(--color-gray-dark);
    border: 1px solid var(--color-military);
    padding: 25px;
    gap: 15px;
}

.event-gallery-showcase {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.showcase-main-viewer {
    position: relative;
    width: 100%;
    height: 480px;
    background-color: var(--color-black);
    border: 1px solid var(--color-gray-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.showcase-media-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.showcase-media-element {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.showcase-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(var(--color-military-rgb), 0.3);
    border: 1px solid var(--color-military);
    color: var(--color-white);
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.showcase-nav-btn:hover {
    background-color: rgba(var(--color-military-rgb), 0.7);
    box-shadow: var(--glow-military);
}

.showcase-nav-btn.prev {
    left: 15px;
}

.showcase-nav-btn.next {
    right: 15px;
}

.showcase-caption {
    font-size: 0.85rem;
    color: var(--color-gray-light);
    text-align: center;
    min-height: 20px;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid rgba(var(--color-military-rgb), 0.15);
    padding-bottom: 10px;
}

.showcase-thumbnails-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0 10px 0;
    scrollbar-width: thin;
}

.showcase-thumb {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border: 2px solid var(--color-gray-dark);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
    background-color: var(--color-black);
}

.showcase-thumb img, .showcase-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.showcase-thumb:hover img, .showcase-thumb:hover video {
    opacity: 0.8;
}

.showcase-thumb.active {
    border-color: var(--color-military);
    box-shadow: var(--glow-military);
}

.showcase-thumb.active img, .showcase-thumb.active video {
    opacity: 1;
}

.showcase-thumb-video-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background-color: rgba(var(--color-military-rgb), 0.85);
    color: var(--color-white);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
}

/* Mobile responsive styling for the showcase */
@media (max-width: 768px) {
    .showcase-main-viewer {
        height: 300px;
    }
    .showcase-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    .showcase-thumb {
        width: 55px;
        height: 55px;
    }
}

/* Edit Event Modal Layout */
.edit-event-modal-content {
    max-width: 850px;
    background-color: var(--color-gray-dark);
    border: 1px solid var(--color-military);
    padding: 25px;
    gap: 15px;
}

.edit-event-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.edit-event-media-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-height: 200px;
    overflow-y: auto;
    background-color: var(--color-black);
    border: 1px solid var(--color-gray-mid);
    padding: 10px;
    margin-top: 8px;
}

.edit-media-thumb-item {
    position: relative;
    width: 60px;
    height: 60px;
    border: 1px solid var(--color-gray-dark);
}

.edit-media-thumb-item .crm-thumb-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-remove-media-item {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--color-red-alert);
    color: var(--color-white);
    border: 1px solid var(--color-white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    z-index: 5;
    transition: all 0.2s;
}

.btn-remove-media-item:hover {
    transform: scale(1.1);
    background-color: #ff0000;
}

.edit-event-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    border-top: 1px solid rgba(var(--color-military-rgb), 0.2);
    padding-top: 20px;
}

@media (max-width: 768px) {
    .edit-event-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================================================
   ADMIN CRM INTERFACE STYLE
   ========================================================================== */
.admin-login-card {
    max-width: 480px;
    margin: 40px auto;
    padding: 40px;
    background-color: rgba(18, 19, 15, 0.6);
    border: 1px solid var(--color-gray-mid);
    backdrop-filter: blur(8px);
}

.admin-login-card .panel-inner-title {
    font-size: 0.95rem;
    color: var(--color-white);
    letter-spacing: 0.15em;
    border-bottom: 1px solid var(--color-gray-dark);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.hud-textarea {
    width: 100%;
    background-color: var(--color-black);
    border: 1px solid var(--color-gray-mid);
    color: var(--color-white);
    padding: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    min-height: 80px;
    resize: vertical;
    transition: all 0.3s;
}

.hud-textarea:focus {
    outline: none;
    border-color: var(--color-military);
    box-shadow: var(--glow-military);
}

.hud-file-input {
    width: 100%;
    color: var(--color-gray-light);
    font-size: 0.8rem;
    margin-top: 8px;
    border: 1px solid var(--color-gray-mid);
    padding: 8px;
    background-color: var(--color-black);
}

.admin-dashboard-panel {
    animation: fade-page 0.3s ease-out forwards;
}

.crm-welcome-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-gray-mid);
    padding-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    color: var(--color-gray-light);
    font-size: 0.85rem;
}

.crm-welcome-header strong {
    color: var(--color-white);
    text-shadow: var(--glow-white);
}

.crm-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}

.crm-table-container {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--color-gray-dark);
    background-color: rgba(18, 19, 15, 0.4);
}

.crm-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.8rem;
}

.crm-table th, .crm-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-gray-dark);
}

.crm-table th {
    font-family: 'Outfit', sans-serif;
    color: var(--color-military);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background-color: var(--color-black);
}

.crm-table td {
    color: var(--color-gray-light);
}

.crm-table tr:hover td {
    color: var(--color-white);
    background-color: rgba(var(--color-military-rgb), 0.05);
}

.crm-thumb-preview {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border: 1px solid var(--color-gray-mid);
}

.btn-danger {
    background-color: var(--color-red-alert);
    border: 1px solid var(--color-red-alert);
    color: var(--color-white);
    padding: 6px 12px;
    font-size: 0.65rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
}

.btn-danger:hover {
    opacity: 0.9;
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.7);
}

.btn-sml {
    padding: 6px 12px;
    font-size: 0.65rem;
}

.progress-bar-container {
    width: 100%;
    background-color: var(--color-gray-dark);
    border: 1px solid var(--color-gray-mid);
    margin-top: 15px;
    height: 20px;
    position: relative;
}

.upload-progress-bar {
    height: 100%;
    background-color: var(--color-military);
    width: 0%;
    color: var(--color-white);
    font-size: 0.68rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.2s ease;
    box-shadow: var(--glow-military);
}

.loading-state {
    font-size: 0.8rem;
    font-family: 'Outfit', sans-serif;
    color: var(--color-military);
    letter-spacing: 0.15em;
    text-align: center;
    padding: 60px 40px;
    width: 100%;
    border: 1px dashed rgba(var(--color-military-rgb), 0.2);
    background-color: rgba(18, 19, 15, 0.1);
}

.admin-setup-option {
    border: 1px dashed rgba(var(--color-military-rgb), 0.4);
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
}

.admin-setup-option p {
    font-size: 0.7rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

/* Responsive adjustments for Bento and CRM */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid, .crm-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .event-item {
        grid-template-columns: 120px 1fr;
        gap: 15px;
    }
    .event-action-box {
        grid-column: span 2;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    .bento-item.w-2, .bento-item.wh-2 {
        grid-column: span 1;
    }
    .bento-item.h-2, .bento-item.wh-2 {
        grid-row: span 1;
    }
    .floating-audio-deck {
        width: calc(100% - 60px);
    }
    .event-item {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .event-date-box {
        border-right: none;
        border-bottom: 1px solid rgba(var(--color-military-rgb), 0.2);
        padding-right: 0;
        padding-bottom: 15px;
    }
    .event-action-box {
        grid-column: span 1;
    }
    .gallery-filters {
        flex-direction: column;
        gap: 15px;
    }
}

/* Homepage scroll prevention and fixed footer */
body.home-page-active {
    overflow: hidden;
    height: 100vh;
}

body.home-page-active .main-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(var(--color-military-rgb), 0.2);
    padding: 15px 0;
    z-index: 10005;
}

body.home-page-active .hero-section {
    height: 100vh;
    min-height: auto;
}

body.home-page-active .scroll-indicator {
    display: none;
}

body.home-page-active .floating-controls {
    bottom: 80px;
}

body.home-page-active .floating-audio-deck {
    bottom: 135px;
}

body.home-page-active .floating-ambient-panel {
    bottom: 135px;
}

/* Floating Ambient Controls Panel */
.floating-ambient-panel {
    position: fixed;
    bottom: 85px;
    left: 30px;
    width: 280px;
    background-color: rgba(18, 19, 15, 0.95);
    border: 1px solid var(--color-military);
    box-shadow: var(--glow-military-thick), 0 10px 40px rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    z-index: 10002;
    padding: 15px 20px;
    display: none;
    flex-direction: column;
    gap: 12px;
    animation: deck-slide-up 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.floating-ambient-panel.open {
    display: flex;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(var(--color-military-rgb), 0.3);
    padding-bottom: 6px;
}

.panel-title {
    font-size: 0.65rem;
    font-family: 'Outfit', sans-serif;
    color: var(--color-military);
    letter-spacing: 0.15em;
    font-weight: 700;
}

.panel-close-btn {
    background: none;
    border: none;
    color: var(--color-gray-light);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s;
}

.panel-close-btn:hover {
    color: var(--color-white);
}

.ambient-status-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    color: var(--color-white);
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.ambient-controls-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 5px 0;
}

.btn-panel-control {
    background: none;
    border: 1px solid var(--color-gray-mid);
    color: var(--color-white);
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-panel-control:hover {
    border-color: var(--color-military);
    background-color: rgba(var(--color-military-rgb), 0.15);
}

.btn-panel-control.btn-play-pause {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    border-color: var(--color-military);
    box-shadow: var(--glow-military);
}

.btn-panel-control.btn-play-pause:hover {
    background-color: var(--color-military);
}

.ambient-volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    color: var(--color-gray-light);
}

.hud-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 3px;
    background: var(--color-gray-mid);
    outline: none;
    border: none;
}

.hud-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 8px;
    height: 14px;
    background: var(--color-military);
    cursor: pointer;
    box-shadow: var(--glow-military);
}

.hud-slider::-moz-range-thumb {
    width: 8px;
    height: 14px;
    background: var(--color-military);
    cursor: pointer;
    box-shadow: var(--glow-military);
}

@media (max-width: 768px) {
    .member-profile-layout {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .member-stories-box {
        width: 150px;
        height: 240px;
    }
}

/* Bento Video Volume Toggle Button */
.bento-volume-toggle {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(var(--color-military-rgb), 0.85);
    border: 1px solid var(--color-white);
    color: var(--color-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: var(--glow-military);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bento-volume-toggle:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    box-shadow: var(--glow-white);
}

/* SVG icon centering for video controls */
.bento-volume-toggle svg,
.bento-video-badge svg {
    display: block;
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
}

/* Fullscreen General Media Modal styling */
#general-media-modal .modal-content {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    background-color: rgba(5, 5, 5, 0.98);
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    animation: modal-fade-in 0.3s ease-out forwards;
}

@keyframes modal-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

#general-media-modal .modal-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.6);
    z-index: 10006;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
    transition: all 0.2s ease;
}

#general-media-modal .modal-close:hover {
    color: var(--color-military);
    transform: scale(1.1);
    text-shadow: var(--glow-military);
}

#general-media-modal .modal-header {
    position: absolute;
    top: 25px;
    left: 30px;
    border: none;
    padding: 0;
    z-index: 10006;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 15px;
    border-left: 3px solid var(--color-military);
    backdrop-filter: blur(5px);
}

#general-media-modal .modal-media-container {
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#general-media-modal .modal-media-container img,
#general-media-modal .modal-media-container video {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
}

#general-media-modal .modal-media-caption {
    position: absolute;
    bottom: 30px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid rgba(var(--color-military-rgb), 0.3);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    z-index: 10006;
    backdrop-filter: blur(5px);
    max-width: 80%;
    text-align: center;
}

/* Dynamic Event Media Registry Previews */
.event-media-wrapper {
    width: 100%;
    max-width: 480px;
    background: rgba(var(--color-military-rgb), 0.05);
    border: 1px solid rgba(var(--color-military-rgb), 0.15);
    padding: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.event-media-wrapper:hover {
    border-color: var(--color-military);
    box-shadow: var(--glow-military);
    background: rgba(var(--color-military-rgb), 0.10);
}

.event-media-preview-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gray-dark);
    margin-bottom: 8px;
}

.event-media-preview-container img, 
.event-media-preview-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-media-wrapper:hover .event-media-preview-container img,
.event-media-wrapper:hover .event-media-preview-container video {
    transform: scale(1.03);
}

.event-media-preview-container .bento-video-badge {
    pointer-events: none;
    z-index: 2;
}

/* Modal Open Scroll Lock */
body.modal-open-lock {
    overflow: hidden !important;
}
