/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #1a1a1a;
    color: #fff;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    position: relative;
    cursor: none;
}

 /* ========================================
    LOADING INTRO SCREEN
    ======================================== */
 .loading-intro {
     position: fixed;
     inset: 0;
     background: #000;
     z-index: 10000;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 1;
     transition: opacity 0.8s ease, filter 0.8s ease;
 }

 .loading-intro.fade-out {
     opacity: 0;
     filter: blur(6px);
 }

 .loading-intro-content {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 28px;
     animation: loading-fade-in 1s ease forwards;
 }

 @keyframes loading-fade-in {
     from {
         opacity: 0;
         transform: translateY(10px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .loading-intro-text {
     font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
     font-size: 28px;
     font-weight: 300;
     color: #ffffff;
     letter-spacing: 0.3em;
     text-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.15);
 }

 .loading-bar-track {
     width: 200px;
     height: 2px;
     background: rgba(20, 125, 255, 0.1);
     border-radius: 2px;
     overflow: hidden;
     position: relative;
 }

 .loading-bar-fill {
     width: 0%;
     height: 100%;
     background: #147DFF;
     border-radius: 2px;
     box-shadow:  0 0 8px rgba(20, 125, 255, 0.6), 0 0 16px rgba(20, 125, 255, 0.3);
     transition: width 0.1s linear;
 }

 /* ========================================
    PREMIUM HUD INTRO OVERLAY
    ======================================== */
 .intro-overlay {
     position: fixed;
     inset: 0;
     background: transparent;
     z-index: 9999;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     opacity: 1;
     transition: opacity 520ms ease;
     overflow: hidden;
 }

 /* Film Grain */
 .intro-overlay::before {
     content: '';
     position: fixed;
     inset: 0;
     background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" result="noise"/></filter><rect width="100" height="100" fill="white" filter="url(%23noise)" opacity="0.02"/></svg>');
     pointer-events: none;
     z-index: 1;
     animation: grain-shift 8s linear infinite;
 }

 @keyframes grain-shift {
     0% { transform: translate(0, 0); }
     100% { transform: translate(100px, 100px); }
 }

 /* HUD Grid Background */
 .hud-grid {
     position: absolute;
     inset: 0;
     background-image:
         radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
     background-size: 40px 40px;
     pointer-events: none;
     z-index: 2;
 }

 /* HUD Corner Brackets */
 .hud-corner {
     position: absolute;
     width: 40px;
     height: 40px;
     border: 1px solid rgba(255, 255, 255, 0.3);
     pointer-events: none;
     z-index: 3;
 }

 .hud-corner-tl {
     top: 40px;
     left: 40px;
     border-right: none;
     border-bottom: none;
 }

 .hud-corner-tr {
     top: 40px;
     right: 40px;
     border-left: none;
     border-bottom: none;
 }

 .hud-corner-bl {
     bottom: 40px;
     left: 40px;
     border-right: none;
     border-top: none;
 }

 .hud-corner-br {
     bottom: 40px;
     right: 40px;
     border-left: none;
     border-top: none;
 }

 
 /* Scanning Lines */
 .hud-scanlines {
     position: absolute;
     inset: 0;
     background: repeating-linear-gradient(
         0deg,
         rgba(255, 255, 255, 0.03) 0px,
         rgba(255, 255, 255, 0.03) 1px,
         transparent 1px,
         transparent 2px
     );
     pointer-events: none;
     z-index: 5;
     animation: scanlines-move 8s linear infinite;
 }

 @keyframes scanlines-move {
     0% { transform: translateY(0); }
     100% { transform: translateY(10px); }
 }

 .intro-overlay.fade-out {
     opacity: 0;
     animation: overlay-fade-out 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
     pointer-events: none;
 }

 .intro-overlay.reveal {
     animation: overlay-fade-in 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
     pointer-events: auto;
 }

 @keyframes overlay-fade-out {
     0% {
         opacity: 1;
         backdrop-filter: blur(0px);
     }
     100% {
         opacity: 0;
         backdrop-filter: blur(2px);
     }
 }

 @keyframes overlay-fade-in {
     0% {
         opacity: 0;
         backdrop-filter: blur(10px);
     }
     100% {
         opacity: 1;
         backdrop-filter: blur(0px);
     }
 }

 .intro-overlay.fade-out .intro-overlay-inner {
     animation: intro-text-exit 400ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
 }

 .intro-overlay.reveal .intro-overlay-inner {
     animation: intro-text-reveal 450ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
 }

 /* Center Content */
 .intro-overlay-inner {
     position: relative;
     z-index: 10;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 24px;
     animation: intro-content-fade-in 1.2s ease forwards;
 }

 @keyframes intro-content-fade-in {
     from {
         opacity: 0;
         transform: translateY(20px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* 337 Number */
 .intro-number {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
     font-size: 96px;
     font-weight: 300;
     letter-spacing: 8px;
     color: #ffffff;
     text-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.15);
     animation: number-breathe 4s ease-in-out infinite;
 }

 @keyframes number-breathe {
     0%, 100% {
         opacity: 0.75;
         text-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.15);
     }
     50% {
         opacity: 0.95;
         text-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 60px rgba(255, 255, 255, 0.25);
     }
 }

 @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@300;400;500&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap');

 /* 337 Number */
 .intro-number {
     font-family: 'Orbitron', 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
     font-size: 82px;
     font-weight: 300;
     letter-spacing: 10px;
     color: #147DFF;
     text-shadow: 
          0 0 10px rgba(20, 125, 255, 0.65), 0 0 22px rgba(20, 125, 255, 0.35);
    animation: number-breathe 4s ease-in-out infinite;
 }

@keyframes number-breathe {
     0%, 100% {
         opacity: 0.8;
 
     }
     50% {
         opacity: 0.95;
 
     }
 }

 /* Text */
 .intro-enter-text {
     font-family: 'Orbitron', 'Space Grotesk', 'Syncopate', ui-monospace, SFMono-Regular, monospace;
     font-weight: 400;
     font-size: 18px;
     letter-spacing: 14px;
     color: rgba(255, 255, 255, 0.9);
     text-shadow: 0 0 12px rgba(255, 255, 255, 0.25), 0 0 24px rgba(255, 255, 255, 0.1);
     text-transform: uppercase;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
     cursor: pointer;
     transition: all 250ms ease-out;
 }

 .intro-enter-text:hover {
     color: #ffffff;
     letter-spacing: 16px;
     transform: scale(1.03);
     text-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.15);
 }

.enter-text-label {
    display: block;
    transition: all 250ms ease-out;
}

.enter-text-underline {
     display: block;
     width: 0%;
     height: 1px;
     background: rgba(255, 255, 255, 0.5);
     box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
     transition: width 250ms ease-out;
 }

 .intro-enter-text:hover .enter-text-underline {
     width: 100%;
 }

 .intro-subtitle {
     font-family: 'Orbitron', 'Space Grotesk', 'Syncopate', ui-monospace, SFMono-Regular, monospace;
     font-weight: 300;
     font-size: 10px;
     letter-spacing: 10px;
     color: rgba(255, 255, 255, 0.25);
     text-transform: uppercase;
     transition: all 250ms ease-out;
 }

 /* Intro Music Player */
 .intro-music-player {
     margin-top: 102px;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 18px;
     animation: intro-content-fade-in 1.2s ease 0.2s forwards;
     opacity: 0;
 }

 .intro-music-controls {
     display: flex;
     align-items: center;
     gap: 24px;
 }

 .intro-control-btn {
     background: none;
     border: none;
     color: rgba(255, 255, 255, 0.7);
     cursor: none;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     transition: all 180ms ease;
     padding: 0;
     font-family: 'Orbitron', 'Space Grotesk', ui-monospace, SFMono-Regular, monospace;
     font-size: 22px;
     font-weight: 300;
     letter-spacing: 3px;
     text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
 }

 .intro-control-btn:hover {
     color: #ffffff;
     transform: scale(1.08);
     text-shadow: 0 0 16px rgba(255, 255, 255, 0.5), 0 0 32px rgba(255, 255, 255, 0.2);
 }

.intro-control-btn:active {
    transform: scale(1);
}

.intro-control-btn.active { color: #fff; text-shadow: 0 0 18px rgba(255, 255, 255, 0.7); }
.intro-control-btn .fa-key { font-size: 17px; transform: rotate(-8deg); }
.intro-admin-login { width: min(390px, calc(100vw - 32px)); margin-top: -5px; animation: introAdminReveal 200ms ease-out; }
.intro-admin-login[hidden] { display: none; }
.intro-admin-login label { display: block; margin: 0 0 9px 2px; color: rgba(255,255,255,.38); font: 600 8px 'Orbitron',ui-monospace,monospace; letter-spacing: 4px; }
.intro-admin-field { display: flex; height: 42px; border: 1px solid rgba(255,255,255,.16); background: rgba(0,0,0,.58); box-shadow: inset 0 0 18px rgba(255,255,255,.025), 0 0 24px rgba(0,0,0,.55); }
.intro-admin-field:focus-within { border-color: rgba(255,255,255,.42); box-shadow: 0 0 20px rgba(255,255,255,.07); }
.intro-admin-field input { min-width: 0; flex: 1; padding: 0 13px; color: #eee; border: 0; outline: 0; background: transparent; font: 500 11px ui-monospace,SFMono-Regular,monospace; letter-spacing: 1.4px; }
.intro-admin-field input::placeholder { color: rgba(255,255,255,.2); }
.intro-admin-field button { width: 104px; color: rgba(255,255,255,.72); border: 0; border-left: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.035); cursor: none; font: 600 8px 'Orbitron',ui-monospace,monospace; letter-spacing: 1.5px; transition: color 160ms ease,background 160ms ease; }
.intro-admin-field button:hover { color: #fff; background: rgba(255,255,255,.09); }
.intro-admin-field button:disabled { opacity: .5; }
.intro-admin-message { height: 14px; padding-top: 7px; text-align: center; color: rgba(255,255,255,.45); font: 600 8px ui-monospace,monospace; letter-spacing: 1px; }
.intro-admin-message.error { color: #e28b93; }
.intro-admin-message.success { color: #82d6a0; }
@keyframes introAdminReveal { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

 .intro-control-btn .btn-icon {
     font-size: 22px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
 }

 .intro-controls-divider {
     width: 200px;
     height: 1px;
     background: rgba(255, 255, 255, 0.1);
     box-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
     transition: all 200ms ease;
 }

 .intro-controls-divider:hover {
     background: rgba(255, 255, 255, 0.2);
     box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
 }

 /* Progress Bar */
 .intro-progress-container {
     width: 300px;
     cursor: none;
 }

 .intro-progress-track {
     position: relative;
     width: 100%;
     height: 1px;
     background: rgba(255, 255, 255, 0.15);
     border-radius: 1px;
     overflow: visible;
 }

 .intro-progress-fill {
     position: absolute;
     height: 100%;
     background: #ffffff;
     border-radius: 1px;
     width: 0%;
     transition: width 50ms linear;
     box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
 }

 .intro-progress-dot {
     position: absolute;
     width: 4px;
     height: 4px;
     background: #ffffff;
     border-radius: 50%;
     top: 50%;
     transform: translate(-50%, -50%);
     left: 0%;
     opacity: 0;
     box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
     transition: opacity 200ms ease;
 }

 .intro-progress-track:hover .intro-progress-dot {
     opacity: 1;
 }

 @keyframes intro-text-exit {
     0% {
         opacity: 1;
         transform: scale(1);
     }
     100% {
         opacity: 0;
         transform: scale(0.95);
     }
 }

 @keyframes intro-text-reveal {
     0% {
         opacity: 0;
         transform: scale(1.02);
     }
     100% {
         opacity: 1;
         transform: scale(1);
     }
 }

 .intro-particles {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
     opacity: 0.6;
 }

 /* Floating Names */
 .floating-names {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
     pointer-events: none;
     overflow: hidden;
 }

 .floating-name {
     position: absolute;
     font-family: 'IBM Plex Mono', 'JetBrains Mono', 'Space Grotesk', 'Sora', monospace;
     font-weight: 400;
     color: #147DFF;
     letter-spacing: 0.12em;
     white-space: nowrap;
     text-shadow:  0 0 10px rgba(20, 125, 255, 0.65), 0 0 22px rgba(20, 125, 255, 0.35);
     will-change: opacity, transform;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.7s ease-in-out;
     transform: translate3d(0, 0, 0);
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
 }

 .floating-name.visible {
     opacity: var(--name-opacity, 0.4);
     animation: name-drift 4s ease-in-out infinite alternate;
 }

 .floating-name.hiding {
     opacity: 0;
 }

 @keyframes name-drift {
     0% {
         transform: translate3d(0, 0, 0);
     }
     100% {
         transform: translate3d(var(--drift-x, 10px), var(--drift-y, 10px), 0);
     }
 }

 .intro-overlay-inner {
     position: relative;
     z-index: 1;
     padding: 24px;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 16px;
     animation: intro-fade-in 1.5s ease forwards;
 }

 @keyframes intro-fade-in {
     from {
         opacity: 0;
         transform: translateY(20px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @media (prefers-reduced-motion: reduce) {
     .intro-enter-text {
         animation: none;
     }
     .intro-overlay {
         transition: none;
     }
     .page {
         transition: none;
     }
 }

 .page {
     position: relative;
     z-index: 1;
     width: 100%;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 40px 20px;
     opacity: 0;
     transform: scale(0.98);
 }

 .page.visible {
     animation: page-entrance 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
 }

 .page.exit {
     animation: page-exit 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
     filter: blur(10px);
     pointer-events: none;
 }

 @keyframes page-entrance {
     0% {
         opacity: 0;
         transform: scale(0.98);
     }
     100% {
         opacity: 1;
         transform: scale(1);
     }
 }

 @keyframes page-exit {
     0% {
         opacity: 1;
         transform: scale(1);
         filter: blur(0px);
     }
     100% {
         opacity: 0;
         transform: scale(0.98);
         filter: blur(10px);
     }
 }

.profile {
     width: min(520px, calc(100vw - 40px));
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 18px;
 }

 .page.visible .avatar-wrapper {
     animation: profile-element-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 200ms forwards;
     opacity: 0;
 }

 .page.visible .username-section {
     animation: profile-element-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 250ms forwards;
     opacity: 0;
 }

 .page.visible .presence-bar {
     animation: profile-element-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 300ms forwards;
     opacity: 0;
 }

 .page.visible .custom-status {
     animation: profile-element-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 350ms forwards;
     opacity: 0;
 }

 .page.visible .profile-links {
     animation: profile-element-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 400ms forwards;
     opacity: 0;
 }

 .page.visible .spotify-music-player {
     animation: profile-element-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 500ms forwards;
     opacity: 0;
 }

 .page.visible .view-counter {
     animation: profile-element-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 550ms forwards;
     opacity: 0;
 }

 @keyframes profile-element-in {
     0% {
         opacity: 0;
         transform: translateY(30px);
     }
     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }

/* ========================================
   FULLSCREEN BACKGROUND
   Replaceable animated GIF or video
   ======================================== */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.background-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    filter: brightness(0.8) saturate(0.9);
    transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1), filter 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.background-container.reveal .background-media {
    transform: scale(1.00);
    filter: brightness(0.8) saturate(0.9);
}

#bg-video {
    min-width: 100%;
    min-height: 100%;
}

#bg-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay above the blurred background to maintain readability */
.background-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
    z-index: 1;
}

/* ========================================
   CONTAINER & GLASS CARD
   ======================================== */
.container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1;
}

.glass-card {
    width: 420px;
    max-width: 90%;
    background: rgba(30, 35, 32, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(120, 140, 130, 0.15),
        0 0 60px rgba(60, 120, 80, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

/* Soft glow around card - muted green-gray */
.glass-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(100, 140, 120, 0.08), rgba(80, 120, 100, 0.08));
    z-index: -1;
    opacity: 0.7;
    filter: blur(10px);
}

/* ========================================
   AVATAR
   ======================================== */
.avatar {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

/* ========================================
   USERNAME SECTION
   ======================================== */
.username-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.username {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.discriminator {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.badges-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.badge-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.2s ease;
}

.badge-icon:hover {
    transform: scale(1.2);
}

.badge-icon i {
    font-size: 20px;
}

.badge-icon.verified i {
    color: #5865f2;
}

.badge-icon.developer i {
    color: #5865f2;
}

.badge-icon.staff i {
    color: #ed4245;
}

.badge-icon.partner i {
    color: #5865f2;
}

.badge-icon.premium i {
    color: #faa61a;
}

/* ========================================
   DISCORD PRESENCE BAR
   ======================================== */
.presence-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 100%;
}

.status-dot-container {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6b7280;
    transition: all 0.3s ease;
}

.status-dot.online {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

.status-dot.idle {
    background: #f59e0b;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

.status-dot.dnd {
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
}

.status-dot.offline {
    background: #6b7280;
}

.status-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   CUSTOM STATUS
   ======================================== */
.custom-status {
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 0;
    font-style: italic;
}

 .custom-status-card {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     padding: 8px 14px;
     border-radius: 12px;
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     color: rgba(255, 255, 255, 0.55);
     font-size: 12px;
     letter-spacing: 0.3px;
     margin-top: 8px;
 }

 .custom-status-card-icon {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 18px;
     height: 18px;
     color: rgba(255, 255, 255, 0.45);
 }

 .custom-status-card-label {
     line-height: 1;
 }

.custom-status.hidden {
    display: none;
}

.discord-link-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-style: italic;
    text-decoration: none;
    cursor: none;
    transition: all 200ms ease;
    position: relative;
}

.discord-link-text:hover {
    color: #ffffff;
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ========================================
   SPOTIFY MUSIC PLAYER
   ======================================== */
.spotify-music-player {
    width: min(560px, 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 18px;
}

 .view-counter {
     width: min(560px, 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     margin-top: 10px;
     color: rgba(255, 255, 255, 0.35);
     font-size: 12px;
     letter-spacing: 0.2px;
     user-select: none;
 }

 .view-counter-text.location-loaded {
     animation: location-fade-in 0.5s ease-out forwards;
 }

 @keyframes location-fade-in {
     0% {
         opacity: 0;
         transform: translateY(4px);
     }
     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .view-counter-icon {
     width: 14px;
     height: 14px;
     opacity: 0.85;
 }

/* Album Cover Container - Glassmorphism */
.album-cover-container {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(1) contrast(1.05) brightness(0.95);
}

.album-cover.hidden {
    display: none;
}

.album-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 18px;
}

/* Song Info */
.song-info {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

 .spotify-meta {
     flex: 1;
     min-width: 0;
     display: flex;
     flex-direction: column;
     gap: 6px;
 }

.song-title {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-align: left;
    min-height: 22px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: -0.3px;
}

.song-artist {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    text-align: left;
    min-height: 20px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

 .track-progress {
     width: 100%;
     height: 2px;
     background: rgba(255, 255, 255, 0.12);
     border-radius: 999px;
     overflow: hidden;
 }

 .track-progress-bar {
     height: 100%;
     width: 0%;
     background: rgba(255, 255, 255, 0.55);
     border-radius: 999px;
     transition: width 0.35s linear;
 }

/* Music Controls - Minimal Circular */
.music-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding-top: 0;
}

.music-btn {
    width: auto;
    height: auto;
    border-radius: 10px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: all 0.25s ease;
    box-shadow: none;
}

.music-btn:hover {
    color: rgba(255, 255, 255, 0.92);
    transform: translateY(-1px);
}

.music-btn:active {
    transform: translateY(0px);
}

.music-btn.play-pause {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
}

.music-btn.play-pause:hover {
    color: rgba(255, 255, 255, 0.95);
}

.music-btn.play-pause.playing {
    color: rgba(255, 255, 255, 0.95);
}

.music-btn i {
    transition: opacity 0.2s ease;
}

.hidden {
    display: none !important;
}

/* ========================================
   SOCIAL ICONS
   ======================================== */
.profile-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 6px;
    padding-top: 4px;
}

.profile-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.profile-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.2);
}

/* Minimal monochrome icons - subtle hover effects */
.profile-link[href*="discord"]:hover {
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.2);
}

.profile-link[href*="spotify"]:hover {
    border-color: rgba(29, 185, 84, 0.4);
    box-shadow: 0 4px 12px rgba(29, 185, 84, 0.2);
}

.profile-link[href*="instagram"]:hover {
    border-color: rgba(225, 48, 108, 0.4);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.2);
}

/* ========================================
   AVATAR RAINBOW RING & INTERACTION
   ======================================== */
.avatar-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 4px;
}

.avatar-rainbow-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #ffffff;
    z-index: 0;
    opacity: 0.85;
    transition: opacity 0.4s ease, transform 0.4s ease;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.5), 0 0 32px rgba(255, 255, 255, 0.3);
}

.avatar-rainbow-ring::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #1a1a1a;
}

.avatar-wrapper:hover .avatar-rainbow-ring {
    opacity: 1;
    transform: scale(1.06);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.6), 0 0 48px rgba(255, 255, 255, 0.35);
}

.avatar-wrapper:hover .avatar {
    transform: scale(1.04);
}

.avatar-wrapper:active .avatar-rainbow-ring {
    transform: scale(0.96);
}

.avatar-container {
    position: relative;
    z-index: 1;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0;
}

/* White glow pulse */
@keyframes white-glow {
    0%   { box-shadow: 0 0 14px rgba(255, 255, 255, 0.3); }
    50%  { box-shadow: 0 0 22px rgba(255, 255, 255, 0.5); }
    100% { box-shadow: 0 0 14px rgba(255, 255, 255, 0.3); }
}

.avatar-wrapper {
    animation: white-glow 3s ease-in-out infinite;
    border-radius: 50%;
}

/* ========================================
   SECRET MENU OVERLAY
   ======================================== */
.secret-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.secret-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.secret-video-player {
    width: 85%;
    max-width: 900px;
    max-height: 75vh;
    border-radius: 16px;
    object-fit: contain;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.secret-menu-overlay.active .secret-video-player {
    transform: scale(1);
    opacity: 1;
}

/* Navigation Arrows */
.secret-menu-nav {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    pointer-events: none;
}

.secret-nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.secret-nav-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.4);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.secret-nav-btn:active {
    transform: scale(0.95);
}

/* Video title above the player */
.secret-video-title {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.4), 0 0 24px rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.secret-menu-overlay.active .secret-video-title {
    opacity: 1;
}

/* ========================================
   CUSTOM CURSOR GLOW
   ======================================== */
.cursor-glow {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    width: 6px;
    height: 6px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 16px rgba(255, 255, 255, 0.35);
    user-select: none;
    animation: cursor-glow-pulse 2.5s ease-in-out infinite;
}

.cursor-glow.active {
    opacity: 1;
}

.cursor-glow.hovering {
    transform: translate(-50%, -50%) scale(1.35);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 24px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.15);
}

@keyframes cursor-glow-pulse {
    0%, 100% {
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 16px rgba(255, 255, 255, 0.35);
    }
    50% {
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.9), 0 0 24px rgba(255, 255, 255, 0.45);
    }
}

.cursor-trail-container {
    display: none;
}

.cursor-trail-dot {
    display: none;
}

/* ========================================
   VIDEO PLAYER BACKGROUND
   ======================================== */
.video-player-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 700ms ease;
    pointer-events: none;
}

.video-player-bg.active {
    opacity: 1;
}

.musical-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

/* Video Player Controls (Spotify-style) */
.video-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.video-control-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    cursor: none;
    transition: all 200ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.video-control-btn:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.video-control-btn:active {
    transform: scale(0.95);
}

.video-control-btn.hidden {
    display: none;
}

.video-counter-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    letter-spacing: 0.5px;
    text-align: center;
    margin-top: 8px;
}

/* ========================================
   BACK BUTTON
   ======================================== */
.admin-account {
    position: fixed;
    top: 26px;
    right: 30px;
    z-index: 80;
    width: 214px;
    color: #edf3ff;
    font-family: Inter, "Segoe UI", sans-serif;
}

/* Main view is intentionally clean: only the back button and video remain. */
.page .profile,
.admin-account {
    display: none !important;
}

.public-roster { position: fixed; inset: 115px 0 70px; z-index: 12; display: flex; flex-direction: column; justify-content: center; gap: 28px; overflow: hidden; pointer-events: none; }
.public-roster[hidden] { display: none; }
.roster-lane { position: relative; width: 100%; overflow: hidden; padding: 8px 0; pointer-events: auto; mask-image: linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent); }
.roster-track { display: flex; width: max-content; will-change: transform; }
.roster-sequence { display: flex; gap: 20px; padding-right: 20px; }
.public-member-card { position: relative; width: 260px; height: 210px; flex: 0 0 auto; overflow: hidden; color: #edf8ff; border: 1px solid rgba(42,104,145,.5); border-radius: 15px; outline: none; background: rgba(4,17,28,.94); box-shadow: 0 16px 35px rgba(0,0,0,.42); cursor: none; transition: transform 180ms ease,border-color 180ms ease,box-shadow 180ms ease; }
.public-member-card:hover,.public-member-card:focus,.public-member-card.is-paused { z-index: 3; transform: translateY(-5px) scale(1.025); border-color: rgba(48,163,222,.85); box-shadow: 0 20px 45px rgba(0,0,0,.58),0 0 24px rgba(20,129,188,.14); }
.public-member-card.is-paused:after { content:'DURAKLATILDI'; position:absolute; top:10px; right:10px; z-index:4; padding:5px 7px; color:#bdeaff; border:1px solid rgba(66,161,211,.45); border-radius:5px; background:rgba(3,19,31,.8); font:700 7px ui-monospace,monospace; letter-spacing:1px; }
.public-member-banner { position:absolute; inset:0 0 auto; height:105px; background-position:center; background-size:cover; }
.public-member-banner:after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(1,6,10,.08),#061521 100%); }
.public-member-body { position:relative; display:flex; flex-direction:column; align-items:center; padding:55px 14px 13px; text-align:center; }
.public-member-avatar { width:65px; height:65px; object-fit:cover; border:4px solid #061521; border-radius:19px; background:#061521; box-shadow:0 6px 18px #0009; }
.public-member-name { max-width:100%; margin-top:6px; overflow:hidden; font-size:15px; text-overflow:ellipsis; white-space:nowrap; }
.public-member-handle { max-width:100%; margin-top:2px; overflow:hidden; color:#71899c; font-size:9px; text-overflow:ellipsis; white-space:nowrap; }
.public-member-role { width:100%; margin-top:10px; padding:7px 10px; border:1px solid color-mix(in srgb,var(--member-role-color) 45%,#17344d); border-radius:999px; background:color-mix(in srgb,var(--member-role-color) 12%,#071725); font-size:9px; font-weight:700; }
.public-member-role:before { content:''; display:inline-block; width:7px; height:7px; margin-right:7px; border-radius:50%; background:var(--member-role-color); box-shadow:0 0 9px var(--member-role-color); }
.public-member-card.is-paused:after { color:#fff; border-color:rgba(255,255,255,.55); background:rgba(3,10,16,.82); }
@media(max-width:600px){.public-roster{inset:90px 0 35px;gap:16px}.public-member-card{width:210px;height:184px}.public-member-banner{height:88px}.public-member-body{padding-top:45px}.public-member-avatar{width:57px;height:57px}.roster-sequence{gap:13px;padding-right:13px}}

/* Wide cinematic roster layout */
.public-roster {
    inset: 0;
    justify-content: space-between;
    gap: 0;
    padding: 24px 0 22px;
}

.roster-lane {
    flex: 0 0 auto;
    padding: 6px 0;
}

.roster-lane-left {
    width: calc(100% - 108px);
    margin-left: 108px;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 94%, transparent);
}

.public-member-card {
    width: 390px;
    height: 148px;
    border-color: rgba(255, 255, 255, .62);
    border-radius: 13px;
}

.public-member-card:hover,
.public-member-card:focus,
.public-member-card.is-paused {
    transform: scale(1.025);
    border-color: rgba(255, 255, 255, .95);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .58), 0 0 24px rgba(255, 255, 255, .14);
}

.public-member-banner {
    inset: 0;
    height: 100%;
}

.public-member-banner:after {
    background: linear-gradient(90deg, rgba(1, 7, 12, .72), rgba(3, 13, 22, .34) 50%, rgba(1, 7, 12, .72)),
                linear-gradient(180deg, rgba(1, 5, 9, .12), rgba(2, 10, 17, .65));
    backdrop-filter: blur(1px);
}

.public-member-body {
    height: 100%;
    justify-content: center;
    padding: 10px 24px;
}

.public-member-avatar {
    width: 58px;
    height: 58px;
    border: 3px solid rgba(7, 25, 39, .9);
    border-radius: 17px;
}

.public-member-name {
    margin-top: 4px;
    font-size: 14px;
    text-shadow: 0 2px 8px #000;
}

.public-member-handle {
    margin-top: 1px;
    color: rgba(211, 230, 243, .65);
    text-shadow: 0 2px 7px #000;
}

.public-member-role {
    width: auto;
    min-width: 142px;
    max-width: 85%;
    margin-top: 6px;
    padding: 5px 14px;
    overflow: hidden;
    --member-role-color: #ffffff !important;
    border-color: rgba(255, 255, 255, .58);
    background: rgba(3, 10, 16, .72);
    text-overflow: ellipsis;
    white-space: nowrap;
    backdrop-filter: blur(7px);
}

@media (max-width: 600px) {
    .public-roster { inset: 0; padding: 16px 0 14px; }
    .roster-lane-left { width: calc(100% - 76px); margin-left: 76px; }
    .public-member-card { width: 300px; height: 125px; }
    .public-member-avatar { width: 48px; height: 48px; border-radius: 14px; }
    .public-member-name { font-size: 12px; }
    .public-member-role { min-width: 120px; padding: 4px 11px; }
}

/* HOOWERS cinematic player */
.hoowers-cinema { position:fixed; inset:0; z-index:24; display:grid; place-content:center; pointer-events:none; transition:all .65s cubic-bezier(.2,.8,.2,1); }
.hoowers-title { margin:0 0 24px; color:#fff; font:italic 800 clamp(42px,6vw,86px) 'Arial Black',Impact,sans-serif; letter-spacing:.08em; text-align:center; transform:skewX(-9deg); text-shadow:0 0 8px #fff,0 0 22px rgba(255,255,255,.72),0 0 50px rgba(255,255,255,.28); transition:opacity .45s ease,transform .65s ease,filter .45s ease; }
.hoowers-launch { display:flex; justify-content:center; pointer-events:auto; transition:opacity .35s ease,transform .55s ease; }
.hoowers-play { display:flex; align-items:center; gap:13px; padding:11px 21px; color:#fff; border:1px solid rgba(255,255,255,.55); border-radius:4px; background:rgba(0,0,0,.38); box-shadow:0 0 20px rgba(255,255,255,.08); cursor:none; font:700 11px ui-monospace,monospace; letter-spacing:.24em; backdrop-filter:blur(8px); transition:background .18s ease,box-shadow .18s ease,transform .18s ease; }
.hoowers-play:hover { background:rgba(255,255,255,.1); box-shadow:0 0 24px rgba(255,255,255,.18); transform:scale(1.04); }
.hoowers-controls { position:fixed; left:50%; bottom:30px; width:min(680px,calc(100vw - 32px)); padding:15px 18px 13px; color:#fff; border:1px solid rgba(255,255,255,.32); border-radius:12px; background:rgba(2,7,11,.7); box-shadow:0 18px 50px #0009,0 0 28px rgba(255,255,255,.06); opacity:0; pointer-events:none; transform:translate(-50%,70px); backdrop-filter:blur(14px); transition:opacity .45s ease .15s,transform .65s cubic-bezier(.18,.8,.2,1) .1s; }
.hoowers-cinema.video-mode .hoowers-title { opacity:0; filter:blur(8px); transform:skewX(-9deg) translateY(45px) scale(.88); }
.hoowers-cinema.video-mode .hoowers-launch { opacity:0; pointer-events:none; transform:translateY(35px); }
.hoowers-cinema.video-mode .hoowers-controls { opacity:1; pointer-events:auto; transform:translate(-50%,0); }
.hoowers-main-controls { display:flex; justify-content:center; align-items:center; gap:24px; }
.hoowers-controls button { display:grid; place-items:center; width:34px; height:34px; padding:0; color:rgba(255,255,255,.76); border:0; background:transparent; cursor:none; transition:color .16s ease,transform .16s ease,text-shadow .16s ease; }
.hoowers-controls button:hover { color:#fff; transform:scale(1.12); text-shadow:0 0 12px #fff; }
.hoowers-controls .hoowers-toggle { width:44px; height:44px; border:1px solid rgba(255,255,255,.48); border-radius:50%; }
.hoowers-sliders { display:grid; grid-template-columns:86px 1fr 30px 105px; align-items:center; gap:11px; margin-top:10px; }
.hoowers-sliders span { color:rgba(255,255,255,.58); font:600 9px ui-monospace,monospace; text-align:center; }
.hoowers-sliders input { height:3px; padding:0; border:0; border-radius:999px; outline:0; background:rgba(255,255,255,.24); cursor:none; accent-color:#fff; }
.hoowers-controls .hoowers-return { width:auto; height:25px; margin:9px auto 0; display:flex; gap:8px; color:rgba(255,255,255,.5); font:700 8px ui-monospace,monospace; letter-spacing:.16em; }
.hoowers-active { z-index:8; }.hoowers-active .musical-video { filter:saturate(.85) contrast(1.06); transition:opacity .18s ease; }.hoowers-active .musical-video.switching { opacity:0; }
.public-roster .roster-lane { transition:transform .75s cubic-bezier(.7,0,.2,1),opacity .45s ease; }
.public-roster.cinema-hidden { pointer-events:none; }
.public-roster.cinema-hidden .roster-lane-left { opacity:0; transform:translateY(-180%); }
.public-roster.cinema-hidden .roster-lane-right { opacity:0; transform:translateY(180%); }
@media(max-width:600px){.hoowers-title{margin-bottom:18px}.hoowers-controls{bottom:14px;padding:12px}.hoowers-sliders{grid-template-columns:65px 1fr 28px 65px;gap:7px}.hoowers-controls .hoowers-toggle{width:40px;height:40px}}

/* Compact roster, boss cards and premium controller refinements */
.page { z-index: 20; }
.public-member-card { width: 210px; height: 78px; border-radius: 9px; }
.public-member-body { padding: 5px 10px; }
.public-member-avatar { width: 34px; height: 34px; border-width: 2px; border-radius: 10px; }
.public-member-name { margin-top: 1px; font-size: 10px; }
.public-member-handle { display: none; }
.public-member-role { min-width: 105px; max-width: 90%; margin-top: 3px; padding: 2px 9px; font-size: 7px; }
.public-member-role:before { width: 5px; height: 5px; margin-right: 5px; }
.public-roster { padding: 18px 0 16px; }
.roster-sequence { gap: 13px; padding-right: 13px; }
.hoowers-stage { display:grid; grid-template-columns:190px auto 190px; align-items:center; gap:28px; }
.hoowers-title { margin:0; }
.hoowers-boss { min-height:130px; display:grid; place-items:center; }
.hoowers-boss-card { width:170px; min-height:124px; padding:12px; display:flex; flex-direction:column; align-items:center; justify-content:center; color:#fff; border:1px solid rgba(255,255,255,.38); border-radius:13px; background-color:#000; background-position:center; background-size:cover; box-shadow:0 15px 38px #0008,0 0 20px rgba(255,255,255,.06); text-align:center; backdrop-filter:blur(5px); animation:bossReveal .55s ease both; }
.hoowers-boss-right .hoowers-boss-card { animation-delay:.12s; }
.hoowers-boss-card img { width:48px; height:48px; object-fit:cover; border:2px solid rgba(255,255,255,.7); border-radius:14px; box-shadow:0 7px 17px #000a; }
.hoowers-boss-card strong { max-width:100%; margin-top:5px; overflow:hidden; font-size:11px; text-overflow:ellipsis; white-space:nowrap; }
.hoowers-boss-card span { color:rgba(255,255,255,.58); font-size:7px; }
.hoowers-boss-card small { margin-top:7px; padding:3px 10px; border:1px solid rgba(255,255,255,.45); border-radius:999px; font-size:6px; letter-spacing:.15em; }
@keyframes bossReveal{from{opacity:0;filter:blur(8px);transform:translateY(12px) scale(.92)}to{opacity:1;filter:none;transform:none}}
.hoowers-cinema.video-mode .hoowers-stage { opacity:0; filter:blur(7px); transform:translateY(35px) scale(.9); transition:opacity .4s,filter .4s,transform .55s; }
.hoowers-controls { bottom:22px; width:min(720px,calc(100vw - 30px)); padding:0; border:0; border-radius:0; background:transparent; box-shadow:none; backdrop-filter:none; filter:drop-shadow(0 5px 14px #000); }
.hoowers-main-controls { gap:32px; }
.hoowers-controls button { color:rgba(255,255,255,.88); font-size:16px; }
.hoowers-controls .hoowers-toggle { width:48px; height:48px; border:1px solid rgba(255,255,255,.75); background:rgba(0,0,0,.15); box-shadow:0 0 20px rgba(255,255,255,.1); }
.hoowers-sliders { margin-top:13px; }
.hoowers-sliders input { background:rgba(255,255,255,.35); }
.hoowers-controls .hoowers-return { color:rgba(255,255,255,.72); }
@media(max-width:700px){.hoowers-stage{grid-template-columns:90px auto 90px;gap:8px}.hoowers-boss-card{width:88px;min-height:96px;padding:7px}.hoowers-boss-card img{width:38px;height:38px}.hoowers-boss-card span{display:none}.hoowers-title{font-size:34px}.public-member-card{width:180px;height:72px}.hoowers-sliders{grid-template-columns:60px 1fr 26px 55px}}

/* Three large boss positions around HOOWERS */
.hoowers-stage { grid-template-columns:380px minmax(390px,auto) 380px; grid-template-areas:". top ." "left title right"; column-gap:24px; row-gap:16px; }
.hoowers-title { grid-area:title; }.hoowers-boss-left { grid-area:left; }.hoowers-boss-top { grid-area:top; }.hoowers-boss-right { grid-area:right; }
.hoowers-boss:empty { min-height:0; }
.hoowers-boss-card { width:360px; min-height:145px; padding:14px 20px; border-radius:15px; }
.hoowers-boss-card img { width:62px; height:62px; border-radius:17px; }
.hoowers-boss-card strong { margin-top:6px; font-size:14px; }.hoowers-boss-card span { font-size:9px; }.hoowers-boss-card small { margin-top:8px; padding:4px 15px; font-size:7px; }
.hoowers-boss-top .hoowers-boss-card { animation-delay:.06s; }
@media(max-width:1250px){.hoowers-stage{grid-template-columns:280px minmax(330px,auto) 280px}.hoowers-boss-card{width:270px;min-height:125px}.hoowers-boss-card img{width:52px;height:52px}}
@media(max-width:850px){.hoowers-stage{grid-template-columns:110px minmax(190px,auto) 110px;column-gap:7px;row-gap:8px}.hoowers-boss-card{width:105px;min-height:95px;padding:7px}.hoowers-boss-card img{width:42px;height:42px}.hoowers-boss-card strong{font-size:9px}.hoowers-boss-card span{display:none}.hoowers-boss-card small{padding:3px 7px;font-size:5px}.hoowers-title{font-size:32px}}

/* Boss cards match the compact moving roster cards. */
.hoowers-stage { grid-template-columns:230px minmax(390px,auto) 230px; row-gap:10px; }
.hoowers-boss-card { width:210px; min-height:78px; height:78px; padding:5px 10px; border-radius:9px; }
.hoowers-boss-card img { width:34px; height:34px; border-width:2px; border-radius:10px; }
.hoowers-boss-card strong { margin-top:1px; font-size:10px; }
.hoowers-boss-card span { display:none; }
.hoowers-boss-card small { margin-top:3px; min-width:105px; padding:2px 9px; font-size:7px; }
@media(max-width:850px){.hoowers-stage{grid-template-columns:112px minmax(185px,auto) 112px}.hoowers-boss-card{width:105px;min-height:68px;height:68px;padding:4px}.hoowers-boss-card img{width:29px;height:29px}.hoowers-boss-card small{min-width:78px;font-size:5px}}

/* Boss positions are controlled independently from the admin layout editor. */
.hoowers-boss { position:fixed; z-index:2; min-height:0; transform:translate(-50%,-50%); }

.admin-account[hidden], .admin-account-menu[hidden] { display: none; }

.admin-account-trigger {
    width: 100%;
    height: 52px;
    padding: 6px 11px 6px 7px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    background: rgba(7, 17, 29, 0.92);
    border: 1px solid rgba(72, 126, 168, 0.55);
    border-radius: 14px;
    box-shadow: 0 9px 30px rgba(0, 0, 0, 0.35);
    cursor: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.admin-account-trigger:hover, .admin-account.menu-open .admin-account-trigger {
    background: rgba(10, 25, 40, 0.96);
    border-color: rgba(83, 184, 238, 0.75);
    box-shadow: 0 0 18px rgba(45, 157, 220, 0.13);
}

.admin-account-avatar { width: 38px; height: 38px; border-radius: 10px; object-fit: cover; }
.admin-account-copy { min-width: 0; flex: 1; display: grid; text-align: left; line-height: 1.15; }
.admin-account-copy strong { overflow: hidden; color: #f7f9ff; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.admin-account-copy small { margin-top: 4px; overflow: hidden; color: #8290a4; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.admin-account-chevron { color: #8d9caf; font-size: 10px; transition: transform 180ms ease; }
.admin-account.menu-open .admin-account-chevron { transform: rotate(180deg); }

.admin-account-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 260px;
    padding: 10px;
    background: rgba(5, 14, 24, 0.98);
    border: 1px solid rgba(63, 111, 148, 0.52);
    border-radius: 13px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.58);
    animation: adminMenuIn 160ms ease-out;
}

@keyframes adminMenuIn { from { opacity: 0; transform: translateY(-6px) scale(.98); } to { opacity: 1; transform: none; } }
.admin-menu-identity { display: flex; align-items: center; gap: 11px; padding: 8px 9px 11px; }
.admin-menu-identity img { width: 38px; height: 38px; border-radius: 10px; object-fit: cover; }
.admin-menu-identity div { min-width: 0; display: grid; }
.admin-menu-identity strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.admin-menu-identity span { margin-top: 4px; overflow: hidden; color: #7f8da1; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.admin-menu-divider { height: 1px; margin: 0 4px 7px; background: rgba(95, 142, 178, 0.22); }
.admin-menu-link { display: flex; align-items: center; gap: 12px; padding: 10px 8px; color: #aeb9ca; border-radius: 9px; text-decoration: none; transition: color 150ms ease, background 150ms ease; }
.admin-menu-link:hover { color: #f3f7ff; background: rgba(63, 139, 190, 0.12); }
.admin-menu-icon { width: 31px; height: 31px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(69, 119, 155, 0.46); border-radius: 8px; color: #9eacbf; font-size: 12px; }
.admin-menu-link > span:nth-child(2) { min-width: 0; flex: 1; display: grid; }
.admin-menu-link strong { font-size: 12px; }.admin-menu-link small { margin-top: 3px; color: #66758a; font-size: 9px; font-weight: 500; }
.admin-menu-arrow { color: #526176; font-size: 9px; }.admin-menu-logout { margin-top: 3px; color: #e89ca2; }
.admin-menu-logout .admin-menu-icon { color: #df8790; border-color: rgba(166, 62, 73, 0.45); }

.back-button {
    position: fixed;
    top: 40px;
    left: 40px;
    z-index: 50;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 200ms ease;
}

.back-button:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

.back-button:active {
    transform: scale(0.95);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 480px) {
    .admin-account { top: 18px; right: 16px; width: 52px; }
    .admin-account-trigger { width: 52px; padding: 6px; }
    .admin-account-copy, .admin-account-chevron { display: none; }
    .admin-account-menu { width: min(260px, calc(100vw - 32px)); }

    .avatar-wrapper {
        width: 104px;
        height: 104px;
    }

    .avatar-container {
        width: 96px;
        height: 96px;
    }

    .avatar {
        width: 96px;
        height: 96px;
    }

    .username {
        font-size: 20px;
    }

    .spotify-music-player {
        gap: 10px;
        margin-top: 16px;
    }

    .view-counter {
        margin-top: 8px;
        font-size: 12px;
    }

    .album-cover-container {
        width: 40px;
        height: 40px;
    }

    .profile-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .secret-video-player {
        width: 95%;
        max-height: 60vh;
        border-radius: 12px;
    }

    .secret-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .secret-menu-nav {
        padding: 0 12px;
    }

    .secret-menu-hint {
        gap: 16px;
        font-size: 11px;
        bottom: 16px;
    }

    .cursor-glow,
    .cursor-trail-container {
        display: none;
    }
}

/* Screen-specific backgrounds */
.intro-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    filter: blur(12px);
    z-index: -1;
    pointer-events: none;
}

.intro-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    pointer-events: none;
}

* { cursor: none !important; }

.hoowers-music-player {
    pointer-events: auto;
    width: min(440px, calc(100vw - 40px));
    margin-top: 22px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.55);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.hoowers-music-player:hover {
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.16);
    transform: scale(1.01);
}

.hoowers-music-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.hoowers-music-controls button {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    padding: 0;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: transparent;
    font-size: 11px;
    transition: background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.hoowers-music-controls button:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
    transform: scale(1.08);
}

.hoowers-music-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hoowers-music-title {
    font: 700 11px ui-monospace, monospace;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}

.hoowers-music-progress-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hoowers-music-seek {
    flex: 1;
    min-width: 0;
    height: 3px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    outline: 0;
    background: rgba(255, 255, 255, 0.24);
    accent-color: #fff;
}

.hoowers-music-time {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.75);
    font: 600 9px ui-monospace, monospace;
}

.hoowers-cinema.video-mode .hoowers-music-player {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.45s ease, pointer-events 0s 0.35s;
}

@media (max-width: 700px) {
    .hoowers-music-player {
        margin-top: 16px;
        padding: 9px 12px;
        gap: 10px;
    }
    .hoowers-music-controls button {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
    .hoowers-music-title {
        font-size: 10px;
    }
    .hoowers-music-time {
        font-size: 8px;
    }
}

.hoowers-music-player {
    justify-self: center;
    width: min(380px, calc(100vw - 40px));
    margin-top: 55px;
    padding: 8px 12px;
    gap: 10px;
}

.hoowers-music-controls button {
    width: 28px;
    height: 28px;
    font-size: 10px;
}

.hoowers-music-title {
    font-size: 10px;
}

.hoowers-music-time {
    font-size: 8px;
}

.hoowers-music-volume {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: 2px;
}

#hoowers-music-volume-icon {
    width: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 10px;
    text-align: center;
}

input.hoowers-music-volume {
    width: 80px;
    height: 3px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    outline: 0;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    cursor: none;
}

input.hoowers-music-volume::-webkit-slider-runnable-track {
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    transition: background 0.16s ease, box-shadow 0.16s ease;
}

input.hoowers-music-volume:hover::-webkit-slider-runnable-track {
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.18);
}

input.hoowers-music-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    margin-top: -3.5px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

input.hoowers-music-volume:hover::-webkit-slider-thumb {
    transform: scale(1.15);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

input.hoowers-music-volume::-moz-range-track {
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    transition: background 0.16s ease, box-shadow 0.16s ease;
}

input.hoowers-music-volume:hover::-moz-range-track {
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.18);
}

input.hoowers-music-volume::-moz-range-thumb {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

input.hoowers-music-volume:hover::-moz-range-thumb {
    transform: scale(1.15);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

.hoowers-music-player {
    margin-top: 0;
}

.hoowers-hwmd-wrap {
    text-align: center;
    margin: 18px 0;
}

.hoowers-hwmd-link {
    display: inline-block;
    position: relative;
    padding: 10px 15px;
    margin: -10px -15px;
    text-decoration: none;
    font-size: 22px;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.45), 0 0 18px rgba(255, 255, 255, 0.2);
    transition: all 200ms ease-out;
    cursor: pointer !important;
    pointer-events: auto;
    z-index: 9999;
    user-select: none;
}

.hoowers-hwmd-link:hover {
    opacity: 1;
    filter: brightness(1.1);
    transform: scale(1.03);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.6), 0 0 28px rgba(255, 255, 255, 0.3);
}

.intro-enter-text {
    cursor: default !important;
}

.intro-enter-text:hover {
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 14px;
    transform: none;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.25), 0 0 24px rgba(255, 255, 255, 0.1);
}

.enter-text-label {
    display: block;
    cursor: pointer !important;
    transition: all 200ms ease-out;
}

.enter-text-label:hover {
    color: #ffffff;
    filter: brightness(1.1);
    transform: scale(1.02);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.15);
}

.enter-text-label:hover + .enter-text-underline {
    width: 100%;
}


.hoowers-boss,
.hoowers-boss * {
    pointer-events: none !important;
}
