/* Reset & Core Config */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

:root {
    --bg-dark: #070709;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
    --color-cyan: #ffffff;
    --color-cyan-glow: rgba(255, 255, 255, 0.25);
    --color-blue: #a1a1aa;
    --color-blue-glow: rgba(161, 161, 170, 0.2);
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --font-outfit: 'Outfit', sans-serif;
    --font-grotesk: 'Space Grotesk', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-grotesk);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    line-height: 1.6;
}

/* Background Glow Effects - Safe for Mobile Viewport */
.glow-bg {
    position: absolute;
    width: min(500px, 80vw);
    height: min(500px, 80vw);
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.12;
    overflow: hidden;
}

.glow-white {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    top: 0;
    left: 0;
}

.glow-silver {
    background: radial-gradient(circle, rgba(200, 200, 200, 0.05) 0%, transparent 70%);
    bottom: 0;
    right: 0;
}

/* Layout & Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

.w-full {
    width: 100%;
}

.text-cyan, .text-white-glow {
    color: #ffffff;
}

.text-white-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-cyan);
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-outfit);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
    background: #f4f4f5;
    color: #000000;
    transform: translateY(-2px);
    border-color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #ffffff;
    box-shadow: none;
}

.btn-outline:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
    object-fit: cover;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-outfit);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #fff 0%, #a5f3fc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.logo-v2 {
    font-size: 12px;
    color: #000000;
    background: #ffffff;
    border: 1px solid #ffffff;
    padding: 2px 7px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-outfit);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-cyan);
}

.nav-action {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

.drawer-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-outfit);
}

/* Hero Section */
.hero-section {
    padding: 160px 0 90px;
    position: relative;
    text-align: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffffff;
    animation: pulse 1.8s infinite;
}

.hero-title {
    font-family: var(--font-outfit);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 38px;
    max-width: 720px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

/* Ultra-Premium Hero Music Spotlight Card */
.hero-player-card {
    width: 100%;
    max-width: 640px;
    background: linear-gradient(135deg, rgba(22, 22, 30, 0.85) 0%, rgba(10, 10, 14, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    transition: all 0.35s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero-player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.hero-player-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85), 0 0 45px rgba(255, 255, 255, 0.08);
}

/* Vinyl Album Art */
.player-left {
    flex-shrink: 0;
}

.vinyl-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #000;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.vinyl-wrapper.spinning {
    animation: spinVinyl 6s linear infinite;
}

@keyframes spinVinyl {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.player-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.vinyl-center-dot {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #000;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.9);
}

/* Player Right Area */
.player-right {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.player-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.player-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3px 9px;
    border-radius: 12px;
    font-size: 10.5px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.8px;
    font-family: var(--font-outfit);
}

.equalizer-bar {
    width: 3px;
    height: 8px;
    background: #ffffff;
    border-radius: 2px;
    display: inline-block;
}

.hero-player-card.is-playing .equalizer-bar {
    animation: eqAnim 0.8s ease-in-out infinite alternate;
}

.hero-player-card.is-playing .equalizer-bar:nth-child(1) { animation-delay: 0.1s; }
.hero-player-card.is-playing .equalizer-bar:nth-child(2) { animation-delay: 0.3s; }
.hero-player-card.is-playing .equalizer-bar:nth-child(3) { animation-delay: 0.5s; }

@keyframes eqAnim {
    0% { height: 4px; }
    100% { height: 14px; }
}

.player-hd-badge {
    font-size: 10px;
    font-weight: 800;
    color: #a1a1aa;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2px 7px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.player-track-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-outfit);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.player-track-artist {
    font-size: 12.5px;
    color: #a1a1aa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Scrubbable Progress Area */
.player-progress-area {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0 2px;
}

.player-time {
    font-size: 11px;
    color: #71717a;
    font-family: 'Space Grotesk', monospace;
    font-weight: 600;
    min-width: 28px;
}

.player-progress-bar-bg {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: height 0.2s ease;
}

.player-progress-bar-bg:hover {
    height: 8px;
}

.player-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #d4d4d8 0%, #ffffff 100%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    transition: width 0.1s linear;
}

/* Playback Controls Row */
.player-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

.player-main-controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.player-btn-icon, .player-btn-ctrl {
    background: transparent;
    border: none;
    color: #a1a1aa;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 6px;
    border-radius: 50%;
}

.player-btn-icon:hover, .player-btn-ctrl:hover {
    color: #ffffff;
    transform: scale(1.15);
}

.player-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.35);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.player-play-btn:hover {
    background: #f4f4f5;
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

.live-sync-pill {
    font-size: 10px;
    font-weight: 700;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    padding: 3px 8px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 640px) {
    .hero-player-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .player-right {
        width: 100%;
        text-align: center;
    }
    .player-track-info {
        text-align: center;
    }
    .player-top-row {
        justify-content: center;
    }
}

/* Hero Interactive Status Bar */
.hero-interactive-pills {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 10px;
}

.floating-pill {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.floating-pill:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.05);
}

.pill-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
}

.pill-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.card-label {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
}

.card-val {
    font-weight: 700;
    font-size: 14px;
    font-family: var(--font-outfit);
    color: #ffffff;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.4) 0%, rgba(15, 23, 42, 0.05) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.stat-card {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.stat-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.stat-card:active {
    transform: translateY(-2px) scale(1.035);
    transition: transform 0.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}


.stat-num {
    font-family: var(--font-outfit);
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-uptime-num {
    font-size: 24px;
    font-family: 'Space Grotesk', monospace;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

/* Live System Performance */
.perf-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 48px;
    margin-bottom: 24px;
}

.perf-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-cyan);
    display: inline-block;
    animation: pulse-white 2s infinite;
}

@keyframes pulse-white {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.15);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.15);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.15);
    }
}

.perf-title {
    font-family: var(--font-outfit);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.perf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.perf-card {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    transition: var(--transition);
}

.perf-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.perf-label {
    font-family: var(--font-outfit);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-cyan);
    display: flex;
    align-items: center;
    gap: 8px;
}

.perf-value {
    font-family: 'Space Grotesk', monospace;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

/* =========================================================
   LIVE DISCORD VOICE BROADCASTS (CLEAN & MOBILE RESPONSIVE)
   ========================================================= */
.live-broadcasts-section {
    margin-top: 35px;
    background: linear-gradient(135deg, rgba(16, 16, 22, 0.85) 0%, rgba(8, 8, 12, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 24px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.live-broadcasts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.6), rgba(56, 189, 248, 0.6), transparent);
}

.broadcast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
    flex-wrap: wrap;
}

.broadcast-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.broadcast-pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #22c55e;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse-green 1.8s infinite;
    flex-shrink: 0;
}

.broadcast-heading {
    font-family: var(--font-outfit);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: #ffffff;
    margin: 0;
}

.broadcast-sub {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 2px;
}

.broadcast-badge-tray {
    display: flex;
    align-items: center;
    gap: 8px;
}

.broadcast-pill {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.broadcast-pill.pill-live {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #22c55e;
}

.broadcast-pill.pill-idle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #a1a1aa;
}

.broadcast-sessions-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.broadcast-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px 20px;
    transition: all 0.25s ease;
    overflow: hidden;
}

.broadcast-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.035);
}

.broadcast-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
    gap: 12px;
}

.broadcast-server-box {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.server-avatar-disc {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 13px;
    overflow: hidden;
    flex-shrink: 0;
}

.server-avatar-disc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.server-text-meta {
    display: flex;
    flex-direction: column;
    text-align: left;
    min-width: 0;
}

.b-server-title {
    font-family: var(--font-outfit);
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.b-server-sub {
    font-size: 11px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.live-eq-badge {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    font-family: var(--font-outfit);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.6px;
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.eq-bars-mini {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    height: 10px;
}

.eq-m {
    width: 2px;
    background: #22c55e;
    border-radius: 1px;
    animation: eq-mini-jump 1.1s ease-in-out infinite alternate;
}

.m1 { height: 3px; animation: eq-mini-jump 0.8s ease-in-out infinite alternate; animation-delay: 0.1s; }
.m2 { height: 9px; animation: eq-mini-jump 0.6s ease-in-out infinite alternate; animation-delay: 0.25s; }
.m3 { height: 6px; animation: eq-mini-jump 0.9s ease-in-out infinite alternate; animation-delay: 0.15s; }
.m4 { height: 10px; animation: eq-mini-jump 0.7s ease-in-out infinite alternate; animation-delay: 0.35s; }

@keyframes eq-mini-jump {
    0% { height: 2px; }
    50% { height: 10px; }
    100% { height: 4px; }
}

@keyframes vinyl-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.idle-spin-icon {
    animation: vinyl-spin 6s linear infinite;
}

.broadcast-simple-body {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.b-art-wrap {
    flex-shrink: 0;
}

.b-vinyl-disc {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
    border: 2.5px solid #18181b;
    overflow: hidden;
    animation: vinyl-spin 8s linear infinite;
}

.b-cover-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.b-center-groove {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #09090b;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.b-details-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
    text-align: left;
}

.b-title-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.b-track-title {
    font-family: var(--font-outfit);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.b-track-artist {
    font-size: 12.5px;
    color: #a1a1aa;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.b-progress-container {
    margin-top: 4px;
    width: 100%;
}

.b-bar-bg {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}

.b-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e 0%, #38bdf8 100%);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
    border-radius: 2px;
    transition: width 1s linear;
}

.b-time-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #71717a;
    gap: 10px;
    flex-wrap: wrap;
}

.b-time-val {
    font-family: 'Space Grotesk', monospace;
    color: #a1a1aa;
    font-size: 11px;
}

.b-requester-val {
    font-size: 11px;
    color: #71717a;
}

.b-requester-val strong {
    color: #e4e4e7;
}

/* =========================================================
   LUXURY AUDIO STANDBY RADAR WIDGET (MODERN & AESTHETIC)
   ========================================================= */
.broadcast-idle-card.luxury-standby-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0%, rgba(13, 14, 24, 0.7) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 22px;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.broadcast-idle-card.luxury-standby-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 16px 36px rgba(0, 0, 0, 0.45);
}

.standby-visual-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.standby-radar-aura {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.standby-core-disc {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #6366f1 0%, #3b82f6 55%, #0f172a 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 17px;
    box-shadow: 0 0 18px rgba(99, 102, 241, 0.45);
    z-index: 2;
    position: relative;
}

.standby-music-icon {
    animation: standby-icon-float 2.5s ease-in-out infinite alternate;
}

@keyframes standby-icon-float {
    0% { transform: scale(0.92) rotate(-5deg); }
    100% { transform: scale(1.08) rotate(5deg); }
}

.standby-pulse-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(99, 102, 241, 0.5);
    pointer-events: none;
    animation: standby-radar-pulse 2.8s cubic-bezier(0.1, 0.8, 0.2, 1) infinite;
    z-index: 1;
}

.standby-pulse-wave.wave-2 {
    animation-delay: 1.4s;
    border-color: rgba(56, 189, 248, 0.4);
}

@keyframes standby-radar-pulse {
    0% {
        width: 46px;
        height: 46px;
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        width: 76px;
        height: 76px;
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.6);
    }
}

.standby-spectrum-mini {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 12px;
}

.s-bar {
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(to top, #6366f1, #38bdf8);
}

.sb1 { height: 4px; animation: standby-bar-jump 1.2s ease-in-out infinite alternate; animation-delay: 0.1s; }
.sb2 { height: 8px; animation: standby-bar-jump 0.9s ease-in-out infinite alternate; animation-delay: 0.3s; }
.sb3 { height: 12px; animation: standby-bar-jump 1.4s ease-in-out infinite alternate; animation-delay: 0.05s; }
.sb4 { height: 7px; animation: standby-bar-jump 1.0s ease-in-out infinite alternate; animation-delay: 0.4s; }
.sb5 { height: 5px; animation: standby-bar-jump 1.3s ease-in-out infinite alternate; animation-delay: 0.2s; }

@keyframes standby-bar-jump {
    0% { height: 3px; opacity: 0.5; }
    50% { height: 11px; opacity: 0.9; }
    100% { height: 4px; opacity: 0.6; }
}

.standby-info-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.standby-status-tag {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.4px;
}

.standby-dot-glow {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    animation: pulse-green 1.8s infinite;
}

.standby-tag-text {
    color: #22c55e;
}

.standby-tag-divider {
    color: rgba(255, 255, 255, 0.2);
}

.standby-quality-text {
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.standby-heading {
    font-family: var(--font-outfit);
    font-size: 16.5px;
    font-weight: 800;
    color: #ffffff;
    margin: 2px 0 0 0;
    letter-spacing: 0.3px;
}

.standby-subtext {
    font-size: 12.5px;
    color: #94a3b8;
    line-height: 1.45;
    margin: 0;
}

.standby-bottom-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.standby-cmd-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 5px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.standby-cmd-pill:hover {
    border-color: rgba(56, 189, 248, 0.45);
    background: rgba(56, 189, 248, 0.08);
    transform: translateY(-1px);
}

.standby-cmd-pill .cmd-pill-label {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.standby-cmd-pill code {
    font-family: 'Space Grotesk', monospace;
    font-size: 12px;
    color: #38bdf8;
    font-weight: 600;
}

.standby-cmd-pill .cmd-copy-btn {
    font-size: 11.5px;
    color: #64748b;
    margin-left: 2px;
    transition: color 0.2s ease;
}

.standby-cmd-pill:hover .cmd-copy-btn {
    color: #38bdf8;
}

.standby-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(88, 101, 242, 0.14);
    border: 1px solid rgba(88, 101, 242, 0.35);
    color: #818cf8;
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.standby-join-btn:hover {
    background: #5865F2;
    color: #ffffff;
    border-color: #5865F2;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(88, 101, 242, 0.4);
}

@media (max-width: 640px) {
    .live-broadcasts-section {
        padding: 16px 14px;
        margin-top: 25px;
        border-radius: 14px;
    }
    .broadcast-card {
        padding: 14px;
    }
    .broadcast-header {
        gap: 10px;
        margin-bottom: 14px;
        padding-bottom: 12px;
    }
    .broadcast-heading {
        font-size: 13.5px;
    }
    .broadcast-sub {
        font-size: 11px;
    }
    .b-vinyl-disc {
        width: 52px;
        height: 52px;
    }
    .b-track-title {
        font-size: 14px;
    }
    .b-track-artist {
        font-size: 11.5px;
    }
    .b-time-labels {
        font-size: 10px;
    }
    .broadcast-idle-card.luxury-standby-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 18px 14px;
        gap: 14px;
    }
    .standby-visual-col {
        margin: 0 auto;
    }
    .standby-info-col {
        align-items: center;
        text-align: center;
    }
    .standby-status-tag {
        justify-content: center;
        flex-wrap: wrap;
    }
    .standby-bottom-bar {
        justify-content: center;
        width: 100%;
        gap: 8px;
    }
    .standby-cmd-pill {
        width: 100%;
        justify-content: center;
    }
    .standby-join-btn {
        width: 100%;
        justify-content: center;
    }
}

.idle-icon-wrap {
    width: 48px;
    height: 48px;
    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;
    font-size: 20px;
    color: #71717a;
    flex-shrink: 0;
}

.idle-title {
    font-family: var(--font-outfit);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}

.idle-desc {
    font-size: 13px;
    color: #71717a;
}

.idle-desc code {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    color: #38bdf8;
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-title {
    font-family: var(--font-outfit);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
}

.features-tabs-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tab-list {
    display: flex;
    justify-content: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    overflow-x: auto;
    width: 100%;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-outfit);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tab-text {
    display: flex;
    flex-direction: column;
}

.tab-tag {
    color: var(--color-cyan);
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.tab-text h3 {
    font-family: var(--font-outfit);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.tab-text p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 24px;
}

.feature-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.tab-visual {
    display: flex;
    justify-content: center;
}

/* =========================================================
   ULTRA-LUXURY FEATURE MUSIC PLAYER CARD
   ========================================================= */
.feature-player-card {
    width: 100%;
    max-width: 460px;
    background: linear-gradient(135deg, rgba(20, 20, 26, 0.95) 0%, rgba(10, 10, 14, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-player-card:hover {
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 45px rgba(255, 255, 255, 0.08);
}

.feat-player-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.feat-player-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.feat-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3px 9px;
    border-radius: 12px;
    font-size: 10.5px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.8px;
    font-family: var(--font-outfit);
}

.feat-eq-bar {
    width: 3px;
    height: 8px;
    background: #ffffff;
    border-radius: 2px;
    display: inline-block;
}

.feature-player-card.is-playing .feat-eq-bar {
    animation: eqAnim 0.8s ease-in-out infinite alternate;
}
.feature-player-card.is-playing .feat-eq-bar:nth-child(1) { animation-delay: 0.1s; }
.feature-player-card.is-playing .feat-eq-bar:nth-child(2) { animation-delay: 0.3s; }
.feature-player-card.is-playing .feat-eq-bar:nth-child(3) { animation-delay: 0.5s; }

.feat-audio-badge {
    font-size: 10px;
    font-weight: 800;
    color: #a1a1aa;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2px 7px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.feat-player-main {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 2;
}

.feat-vinyl-wrapper {
    position: relative;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #000;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.feat-vinyl-wrapper.spinning {
    animation: spinVinyl 6s linear infinite;
}

.feat-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.feat-vinyl-center {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #000;
    border: 2.5px solid rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.9);
}

.feat-track-details {
    flex-grow: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.feat-badge-now-playing {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #a1a1aa;
}

.feat-track-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-outfit);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
}

.feat-track-artist {
    font-size: 13px;
    color: #a1a1aa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.feat-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: #71717a;
    flex-wrap: wrap;
}

.feat-meta-row strong {
    color: #ffffff;
}

.feat-progress-area {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
    position: relative;
    z-index: 2;
}

.feat-time {
    font-size: 11px;
    color: #71717a;
    font-family: 'Space Grotesk', monospace;
    font-weight: 600;
    min-width: 28px;
}

.feat-progress-bar-bg {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: height 0.2s ease;
}

.feat-progress-bar-bg:hover {
    height: 8px;
}

.feat-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #d4d4d8 0%, #ffffff 100%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    transition: width 0.1s linear;
}

.feat-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2px;
    position: relative;
    z-index: 2;
}

.feat-main-controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feat-btn-icon, .feat-btn-ctrl {
    background: transparent;
    border: none;
    color: #a1a1aa;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 6px;
    border-radius: 50%;
}

.feat-btn-icon:hover, .feat-btn-ctrl:hover {
    color: #ffffff;
    transform: scale(1.15);
}

.feat-play-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.35);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.feat-play-btn:hover {
    background: #f4f4f5;
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

.feat-bitrate-pill {
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 3px 8px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* =========================================================
   ULTRA-LUXURY FEATURE SUITE CARDS (TICKETS, STAFF, PERMS, EMBEDS)
   ========================================================= */
.feature-suite-card {
    width: 100%;
    max-width: 480px;
    background: linear-gradient(135deg, rgba(20, 20, 26, 0.95) 0%, rgba(10, 10, 14, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(25px);
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: left;
}

.feature-suite-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 45px rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.suite-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 12px;
    flex-wrap: wrap;
}

.suite-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.suite-badge-pill {
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 12px;
    font-family: var(--font-outfit);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.suite-category-pill {
    font-size: 10px;
    color: #a1a1aa;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3px 8px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.suite-status-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.6px;
    padding: 3px 8px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Space Grotesk', monospace;
}

.status-open {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.status-pending {
    background: rgba(234, 179, 8, 0.1);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.25);
}

.pulse-dot-green {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #22c55e;
    display: inline-block;
    animation: pulse-green 1.8s infinite;
}

.pulse-dot-yellow {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #eab308;
    display: inline-block;
    animation: pulse-yellow 1.8s infinite;
}

@keyframes pulse-yellow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.5); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(234, 179, 8, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(234, 179, 8, 0); }
}

.suite-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Ticket specific */
.ticket-user-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ticket-user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.ticket-user-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ticket-username {
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ticket-user-tag {
    font-size: 9.5px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 1px 6px;
    border-radius: 4px;
}

.ticket-time {
    font-size: 11px;
    color: #71717a;
}

.ticket-query-box {
    background: rgba(0, 0, 0, 0.4);
    border-left: 3px solid #ffffff;
    border-radius: 0 8px 8px 0;
    padding: 10px 14px;
}

.ticket-query-box p {
    font-size: 12.5px;
    color: #d4d4d8;
    line-height: 1.5;
    margin: 0;
}

.ticket-staff-claim {
    font-size: 11px;
    color: #a1a1aa;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ticket-staff-claim strong {
    color: #ffffff;
}

.claim-time {
    color: #71717a;
    font-size: 10px;
}

/* Staff specific */
.staff-applicant-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.staff-avatar-wrap {
    position: relative;
}

.staff-applicant-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.staff-app-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #000;
    border: 1px solid #ffffff;
    color: #fff;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-applicant-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.staff-app-name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.staff-app-score {
    font-size: 9.5px;
    font-weight: 700;
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.25);
    padding: 1px 6px;
    border-radius: 4px;
}

.staff-app-sub {
    font-size: 11px;
    color: #a1a1aa;
}

.staff-qa-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 10px;
    padding: 12px;
}

.qa-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.qa-q {
    font-size: 10.5px;
    font-weight: 700;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qa-a {
    font-size: 12px;
    color: #ffffff;
    line-height: 1.4;
}

/* Permadder specific */
.perm-config-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 10px;
}

.perm-summary-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.p-label {
    font-size: 9.5px;
    font-weight: 700;
    color: #71717a;
    text-transform: uppercase;
}

.p-val {
    font-size: 11.5px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Space Grotesk', monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.perm-switches-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.perm-switch-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 12px;
    color: #d4d4d8;
}

.perm-tag-allow {
    font-size: 9.5px;
    font-weight: 800;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.12);
    padding: 2px 7px;
    border-radius: 4px;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.perm-tag-deny {
    font-size: 9.5px;
    font-weight: 800;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.12);
    padding: 2px 7px;
    border-radius: 4px;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.suite-progress-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
}

.suite-prog-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
}

.suite-prog-fill {
    height: 100%;
    background: linear-gradient(90deg, #a1a1aa 0%, #ffffff 100%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

.suite-prog-text {
    font-size: 11px;
    color: #a1a1aa;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Embed V2 Studio specific */
.luxury-embed-inner {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    overflow: hidden;
}

.embed-accent-bar {
    width: 4px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.embed-content-wrap {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.embed-author-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.embed-author-img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.embed-author-name {
    font-size: 11.5px;
    font-weight: 600;
    color: #a1a1aa;
}

.embed-heading {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-outfit);
    margin: 0;
}

.embed-paragraph {
    font-size: 12px;
    color: #d4d4d8;
    line-height: 1.5;
    margin: 0;
}

.embed-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.embed-field {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.f-title {
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
}

.f-desc {
    font-size: 11px;
    color: #a1a1aa;
}

/* Suite Action Buttons */
.suite-buttons-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
    flex-wrap: wrap;
}

.suite-action-btn {
    flex: 1;
    min-width: 90px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-outfit);
    transition: all 0.25s ease;
}

.btn-claim, .btn-accept {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.btn-claim:hover, .btn-accept:hover {
    background: #f4f4f5;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.btn-transcript, .btn-dm {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-transcript:hover, .btn-dm:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-close, .btn-reject {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.btn-close:hover, .btn-reject:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    transform: translateY(-2px);
}

/* Discord Embed Mockups */
.mock-discord-embed {
    width: 100%;
    max-width: 440px;
    background: #2b2d31;
    border-radius: 8px;
    display: flex;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.embed-border {
    width: 4px;
    background-color: var(--color-cyan);
}

.border-blue {
    background-color: var(--color-blue);
}

.border-green {
    background-color: #57f287;
}

.border-cyan {
    background-color: var(--color-cyan);
}

.embed-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.embed-author {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.embed-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.embed-desc {
    font-size: 13.5px;
    color: #dbdee1;
    line-height: 1.4;
}

.embed-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.time-curr,
.time-total {
    font-size: 11px;
    color: #949ba4;
}

.progress-bar-bg {
    flex-grow: 1;
    height: 4px;
    background: #4e5058;
    border-radius: 2px;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--color-cyan);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--color-cyan);
}

.embed-controls {
    display: flex;
    gap: 14px;
    margin-top: 12px;
}

.ctrl-btn {
    background: transparent;
    border: none;
    color: #b5bac1;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.ctrl-btn:hover {
    color: #fff;
}

.ctrl-btn.active {
    color: var(--color-cyan);
}

.ctrl-btn.pause {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.ctrl-btn.pause:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Discord Buttons inside embed body */
.embed-buttons-row {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.ds-btn {
    border: none;
    border-radius: 3px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-green {
    background-color: #248046;
}

.btn-green:hover {
    background-color: #1a6535;
}

.btn-red {
    background-color: #da373c;
}

.btn-red:hover {
    background-color: #a92b2f;
}

.btn-blue {
    background-color: #5865f2;
}

.btn-blue:hover {
    background-color: #4752c4;
}

.btn-grey {
    background-color: #4e5058;
}

.btn-grey:hover {
    background-color: #6d6f78;
}

.embed-media-banner {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 4px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
}

/* Mock Terminal */
.mock-terminal {
    width: 100%;
    max-width: 440px;
    background: #090d16;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.term-header {
    background: #0f1524;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.term-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red {
    background-color: #ff5f56;
}

.dot-yellow {
    background-color: #ffbd2e;
}

.dot-green {
    background-color: #27c93f;
}

.term-title {
    color: var(--text-secondary);
    font-size: 11px;
    font-family: var(--font-grotesk);
    margin-left: auto;
}

.term-body {
    padding: 16px;
    font-family: monospace;
    font-size: 12.5px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.term-line {
    color: #e5e7eb;
}

.t-cyan {
    color: var(--color-cyan);
}

.t-green {
    color: #57f287;
}

.t-grey {
    color: #6b7280;
}

/* Commands Section */
.commands-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(3, 7, 18, 0) 0%, rgba(15, 23, 42, 0.07) 100%);
    border-top: 1px solid var(--border-color);
}

.commands-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: flex-start;
}

.commands-list-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.panel-header {
    font-family: var(--font-outfit);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cmd-search-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.cmd-search-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.cmd-search-wrapper input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 14px 10px 40px;
    color: #fff;
    font-family: var(--font-grotesk);
    outline: none;
    transition: var(--transition);
}

.cmd-search-wrapper input:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.cmd-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 4px;
}

.cmd-item {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 12px;
    text-align: left;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: var(--transition);
}

.cmd-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.cmd-item.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.15);
}

.cmd-name {
    font-family: monospace;
    font-weight: 700;
    color: var(--color-cyan);
    font-size: 14px;
}

.cmd-short {
    font-size: 12px;
    color: var(--text-secondary);
}

.commands-terminal-panel {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    height: 480px;
    display: flex;
    flex-direction: column;
}

.commands-terminal-panel .term-body {
    flex-grow: 1;
    overflow-y: auto;
    background: #050811;
    padding: 24px;
}

.term-cmd-log {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.cta-container {
    max-width: 800px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(10, 10, 14, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 32px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}

.cta-title {
    font-family: var(--font-outfit);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-desc {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Footer */
.footer {
    background-color: #02040a;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 40px;
}

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

.footer-desc {
    color: var(--text-secondary);
    font-size: 14.5px;
    max-width: 440px;
}

.footer-links-group {
    display: flex;
    justify-content: flex-end;
    gap: 80px;
}

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

.footer-column h4 {
    font-family: var(--font-outfit);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13.5px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--color-cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #4b5563;
    font-size: 12px;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Drawer Defaults */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(3, 7, 18, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    flex-direction: column;
    gap: 20px;
    z-index: 99;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.mobile-drawer.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.navbar.drawer-open .nav-action,
body.drawer-open .nav-action {
    display: none !important;
}

@media (max-width: 1100px) {
    .nav-links {
        gap: 16px;
    }
    .nav-link {
        font-size: 14px;
    }
    .nav-action {
        gap: 10px;
    }
    .btn-primary {
        padding: 8px 14px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        align-items: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tab-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .commands-layout {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-group {
        justify-content: flex-start;
    }

    .floating-card {
        transform: scale(0.85);
    }
}

@media (max-width: 880px) {
    .navbar {
        height: 70px;
    }

    .mobile-drawer {
        display: flex;
        top: 70px;
    }

    .logo-text {
        font-size: 18px;
    }

    .nav-links {
        display: none;
    }

    /* Hide navbar theme icon on mobile so it doesn't push/hide the mobile drawer hamburger toggle */
    .navbar #theme-toggle {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 22px;
        margin-left: 8px;
        border-radius: 8px;
        background: transparent;
        border: none;
        color: var(--text-primary);
        flex-shrink: 0;
        z-index: 105;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

    .mobile-menu-toggle:active {
        transform: scale(0.92);
    }

    .nav-action {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
        margin-left: auto;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        width: 100%;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .navbar #theme-toggle {
        display: none !important;
    }

    .nav-action {
        margin-left: auto;
        gap: 6px;
    }

    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        font-size: 19px;
        margin-left: 4px;
        flex-shrink: 0;
        z-index: 105;
    }

    .nav-action .btn-primary {
        padding: 6px 10px;
        font-size: 12px;
    }

    .user-capsule {
        padding: 3px 8px 3px 4px;
    }

    .user-capsule-name {
        max-width: 70px;
        font-size: 11.5px;
    }

    .btn-discord-login {
        padding: 6px 12px;
        font-size: 12px;
    }

    .floating-card {
        display: none;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-interactive-pills {
        gap: 10px;
    }

    .floating-pill {
        width: 100%;
        justify-content: flex-start;
        padding: 10px 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .perf-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 13.5px;
    }

    .tab-list {
        justify-content: flex-start;
        padding-bottom: 8px;
        gap: 8px;
    }

    .tab-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .commands-terminal-panel {
        height: 380px;
    }
}

/* Floating Live Player Bar */
.live-player-bar {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 360px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.15);
    z-index: 1000;
    overflow: hidden;
    transform: translateY(150px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.live-player-bar.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.live-player-border {
    height: 4px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-blue));
}

.live-player-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.live-indicator {
    font-family: var(--font-outfit);
    font-size: 11px;
    font-weight: 700;
    color: #ef4444;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 1px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 8px #ef4444;
    animation: pulse 1.5s infinite;
}

.live-track-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.live-track-title {
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-track-author {
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-player-actions {
    display: flex;
    justify-content: flex-end;
}

.live-play-btn {
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    color: #030712;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.live-play-btn:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.live-play-btn.playing {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.live-play-btn.playing:hover {
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

@media (max-width: 576px) {
    .live-player-bar {
        width: calc(100% - 32px);
        bottom: 16px;
        right: 16px;
        left: 16px;
    }
}

/* Clickable Stat Card */
#stat-servers-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

#stat-servers-card::before {
    content: '🔍 Click to view list';
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 11px;
    color: var(--color-cyan);
    transition: all 0.3s ease;
    opacity: 0;
}

#stat-servers-card:hover::before {
    bottom: 8px;
    opacity: 1;
}

#stat-servers-card:hover {
    border-color: var(--color-cyan);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
}

/* Server List Neon Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(15px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.neon-modal {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    width: calc(100% - 32px);
    max-width: 550px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.open .neon-modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.modal-header h3 {
    font-family: var(--font-outfit);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.modal-close-btn:hover {
    color: #ef4444;
}

.modal-body {
    padding: 20px 24px;
    max-height: 380px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-server-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 18px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.modal-server-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.server-item-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.server-badge {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-cyan);
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 11px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.server-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.server-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.server-id {
    font-size: 11px;
    color: var(--text-secondary);
}

.server-item-right {
    display: flex;
    align-items: center;
}

.server-members {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.loading-spinner-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    padding: 30px 0;
}

/* =========================================================
   ULTRA-LUXURY EXECUTIVE TEAM PROFILES
   ========================================================= */
.team-section {
    padding: 110px 0 120px 0;
    position: relative;
    overflow: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
    max-width: 1550px;
    margin-left: auto;
    margin-right: auto;
}

.team-card.luxury-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(175deg, rgba(17, 19, 28, 0.9) 0%, rgba(8, 9, 14, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.team-card.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    transform: skewX(-25deg);
    transition: left 0.75s ease;
    pointer-events: none;
    z-index: 10;
}

.team-card.luxury-card:hover::before {
    left: 150%;
}

/* Luxury Micro-Zoom & Lift on Hover & Active Click */
.team-card.luxury-card:hover {
    transform: translateY(-10px) scale(1.025);
}

.team-card.luxury-card:active {
    transform: translateY(-5px) scale(1.045);
    transition: transform 0.12s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.12s ease;
}

/* Card Ambient Underglow Orbs */
.card-ambient-glow {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 140px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.4s ease, filter 0.4s ease;
}

.exec-card-owner .card-ambient-glow {
    background: radial-gradient(circle, #ef4444 0%, rgba(239, 68, 68, 0) 70%);
}

.exec-card-dev .card-ambient-glow {
    background: radial-gradient(circle, #00f0ff 0%, rgba(0, 240, 255, 0) 70%);
}

.exec-card-host .card-ambient-glow {
    background: radial-gradient(circle, #3b82f6 0%, rgba(59, 130, 246, 0) 70%);
}

.exec-card-wellwisher .card-ambient-glow {
    background: radial-gradient(circle, #f59e0b 0%, rgba(245, 158, 11, 0) 70%);
}

.team-card.luxury-card:hover .card-ambient-glow,
.team-card.luxury-card:active .card-ambient-glow {
    opacity: 0.75;
    filter: blur(35px);
}

/* Specific Card Hover Borders & Shadows */
.exec-card-owner:hover,
.exec-card-owner:active {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.95), 0 0 45px rgba(239, 68, 68, 0.25);
}

.exec-card-dev:hover,
.exec-card-dev:active {
    border-color: rgba(0, 240, 255, 0.5);
    box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.95), 0 0 45px rgba(0, 240, 255, 0.25);
}

.exec-card-host:hover,
.exec-card-host:active {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.95), 0 0 45px rgba(59, 130, 246, 0.25);
}

.exec-card-wellwisher:hover,
.exec-card-wellwisher:active {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.95), 0 0 45px rgba(245, 158, 11, 0.25);
}

/* Avatar scale on card hover/click */
.team-card.luxury-card:hover .avatar-img,
.team-card.luxury-card:active .avatar-img {
    transform: scale(1.06);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card.luxury-card:hover .avatar-halo,
.team-card.luxury-card:active .avatar-halo {
    transform: scale(1.12);
    opacity: 0.9;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


/* Card Header Banner */
.team-card-header {
    height: 155px;
    background: linear-gradient(135deg, rgba(30, 32, 45, 0.8) 0%, rgba(12, 14, 20, 0.95) 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.team-card-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(8, 9, 14, 0.9) 100%);
    pointer-events: none;
}

/* Top-Left Executive Rank Capsule */
.exec-rank-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 5px 11px;
    border-radius: 20px;
    font-family: var(--font-outfit);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.rank-owner {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(185, 28, 28, 0.15) 100%);
    border: 1px solid rgba(239, 68, 68, 0.45);
    color: #fca5a5;
    text-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}

.rank-dev {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2) 0%, rgba(2, 132, 199, 0.15) 100%);
    border: 1px solid rgba(0, 240, 255, 0.45);
    color: #7dd3fc;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
}

.rank-host {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(37, 99, 235, 0.15) 100%);
    border: 1px solid rgba(59, 130, 246, 0.5);
    color: #93c5fd;
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

/* Top-Right Badges Tray */
.card-badges-tray {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    display: flex;
    gap: 7px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.discord-badge {
    font-size: 12.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.discord-badge:hover {
    transform: scale(1.25);
}

.badge-purple { color: #c084fc; filter: drop-shadow(0 0 8px rgba(192, 132, 252, 0.6)); }
.badge-cyan { color: #38bdf8; filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.6)); }
.badge-pink { color: #f472b6; filter: drop-shadow(0 0 8px rgba(244, 114, 182, 0.6)); }
.badge-gold { color: #f59e0b; filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.7)); }

/* 3D Floating Avatar Showcase */
.avatar-wrapper {
    position: absolute;
    bottom: -48px;
    width: 96px;
    height: 96px;
    z-index: 4;
}

.avatar-halo {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
    animation: halo-pulse 3s infinite alternate;
}

.halo-owner {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.35) 0%, rgba(239, 68, 68, 0) 70%);
}

.halo-dev {
    background: radial-gradient(circle, rgba(0, 240, 255, 0.35) 0%, rgba(0, 240, 255, 0) 70%);
}

.halo-host {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, rgba(59, 130, 246, 0) 70%);
}

.halo-wellwisher {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.4) 0%, rgba(245, 158, 11, 0) 70%);
}

@keyframes halo-pulse {
    0% { transform: scale(0.95); opacity: 0.6; }
    100% { transform: scale(1.15); opacity: 1; }
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3.5px solid #090a0f;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.9), 0 0 15px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    background: #111218;
    position: relative;
    z-index: 1;
}

.team-card.luxury-card:hover .avatar-img {
    border-color: #1a1c26;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.95), 0 0 25px rgba(255, 255, 255, 0.25);
}

.avatar-decoration {
    position: absolute;
    top: -12%;
    left: -12%;
    width: 124%;
    height: 124%;
    pointer-events: none;
    z-index: 5;
    object-fit: contain;
    -webkit-user-select: none;
    user-select: none;
}

/* Status Dot with Live Radar Wave */
.status-dot {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #090a0f;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-dot.online {
    background-color: #22c55e;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
}

.status-dot.idle {
    background-color: #eab308;
    box-shadow: 0 0 12px rgba(234, 179, 8, 0.8);
}

.status-dot.dnd {
    background-color: #ef4444;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.8);
}

.status-dot.offline {
    background-color: #71717a;
}

.status-radar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    position: absolute;
    animation: status-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes status-ping {
    0% { transform: scale(1); opacity: 0.8; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(2.2); opacity: 0; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(2.4); opacity: 0; }
}

/* Card Body Typography & Identity */
.team-card-body {
    padding: 64px 22px 24px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.identity-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.member-name {
    font-size: 23px;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-outfit);
    letter-spacing: 0.4px;
}

.verify-badge-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.verify-badge {
    font-size: 16px;
    color: #ffffff;
}

.verify-owner { color: #fca5a5; filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.7)); }
.verify-dev { color: #7dd3fc; filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.7)); }
.verify-host { color: #93c5fd; filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.8)); }
.verify-wellwisher { color: #fde68a; filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.8)); }

/* Meta Pills Row (Handle + Clan Tag) */
.meta-pills-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.member-tag {
    font-size: 12px;
    color: #d4d4d8;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3px 10px;
    border-radius: 12px;
    font-family: var(--font-grotesk);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}



/* 3D Metallic Role Badge */
.role-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-outfit);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.role-badge.owner-badge {
    border: 1px solid rgba(239, 68, 68, 0.4);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(185, 28, 28, 0.06) 100%);
    color: #fca5a5;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.15);
}

.role-badge.dev-badge {
    border: 1px solid rgba(0, 240, 255, 0.4);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.16) 0%, rgba(2, 132, 199, 0.06) 100%);
    color: #7dd3fc;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.15);
}

.role-badge.host-badge {
    border: 1px solid rgba(59, 130, 246, 0.45);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.06) 100%);
    color: #93c5fd;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.role-badge.wellwisher-badge {
    border: 1px solid rgba(245, 158, 11, 0.45);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.06) 100%);
    color: #fde68a;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
}

/* Inset Discord About Me Card */
.discord-about-box {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 18px;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(14px);
    transition: border-color 0.3s ease;
}

.discord-about-box:hover {
    border-color: rgba(255, 255, 255, 0.14);
}

.member-desc {
    font-size: 13px;
    color: #d4d4d8;
    line-height: 1.6;
    margin-bottom: 14px;
    font-weight: 400;
}

.discord-roles-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.role-chip {
    font-size: 11.5px;
    font-weight: 700;
    font-family: var(--font-outfit);
    letter-spacing: 0.4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    padding: 4px 12px;
    border-radius: 20px;
    color: #e4e4e7;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    user-select: none;
}

.role-chip:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 255, 255, 0.08);
}

.chip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* Dynamic Live Activity Box */
.discord-activity-box {
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid #22c55e;
    border-radius: 12px;
    padding: 11px 14px;
    width: 100%;
    text-align: left;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    animation: fadeIn 0.4s ease;
}

.discord-activity-box.spotify-activity {
    border-left-color: #1db954;
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.12) 0%, rgba(8, 12, 10, 0.7) 100%);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4), 0 0 20px rgba(29, 185, 84, 0.15);
}

.discord-activity-box.vscode-activity {
    border-left-color: #007acc;
    background: linear-gradient(135deg, rgba(0, 122, 204, 0.12) 0%, rgba(8, 10, 15, 0.7) 100%);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 122, 204, 0.15);
}

.discord-activity-box.game-activity {
    border-left-color: #a855f7;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(12, 8, 18, 0.7) 100%);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4), 0 0 20px rgba(168, 85, 247, 0.15);
}

.discord-activity-box.stream-activity {
    border-left-color: #9146ff;
    background: linear-gradient(135deg, rgba(145, 70, 255, 0.12) 0%, rgba(12, 8, 20, 0.7) 100%);
}

.discord-activity-box.watch-activity {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12) 0%, rgba(18, 8, 8, 0.7) 100%);
}

.discord-activity-box.custom-status-activity {
    border-left-color: #e4e4e7;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(12, 12, 15, 0.7) 100%);
}

.activity-header {
    font-size: 10px;
    font-weight: 800;
    color: #a1a1aa;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-outfit);
}

.activity-vscode-svg {
    filter: drop-shadow(0 0 6px rgba(0, 122, 204, 0.6));
}

.vscode-badge-tag {
    font-size: 8.5px;
    font-weight: 800;
    background: rgba(0, 122, 204, 0.2);
    border: 1px solid rgba(0, 122, 204, 0.4);
    color: #7dd3fc;
    padding: 1px 6px;
    border-radius: 4px;
    margin-left: auto;
    letter-spacing: 0.5px;
}

/* Spotify Animated Equalizer Bars */
.spotify-eq-bars {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
    margin-left: auto;
}

.eq-b {
    width: 2.5px;
    background-color: #1db954;
    border-radius: 1px;
    box-shadow: 0 0 6px rgba(29, 185, 84, 0.7);
    animation: eq-bounce 1.2s ease-in-out infinite alternate;
}

.b1 { height: 4px; animation-delay: 0.1s; }
.b2 { height: 11px; animation-delay: 0.3s; }
.b3 { height: 7px; animation-delay: 0.2s; }

@keyframes eq-bounce {
    0% { height: 3px; }
    50% { height: 12px; }
    100% { height: 6px; }
}

.activity-title {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-outfit);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.activity-details {
    font-size: 11.5px;
    color: #d4d4d8;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.activity-state {
    font-size: 11px;
    color: #71717a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Floating Interactive Social Dock */
.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    width: 100%;
    margin-top: auto;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d4d4d8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.1);
}

.icon-discord:hover {
    background: #5865f2;
    border-color: #5865f2;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.45);
}

.icon-profile:hover {
    background: #a855f7;
    border-color: #a855f7;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.45);
}

.icon-github:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}

.icon-globe:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.45);
}

.icon-email:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.45);
}

/* =========================================================
   LEGAL PAGES (TERMS OF SERVICE & PRIVACY POLICY)
   ========================================================= */
.legal-page-header {
    padding: 120px 0 40px 0;
    text-align: center;
    position: relative;
}

.legal-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: var(--font-outfit);
}

.legal-page-title {
    font-family: var(--font-outfit);
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.legal-page-subtitle {
    color: #a1a1aa;
    font-size: 15px;
    max-width: 650px;
    margin: 0 auto;
}

.legal-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px 100px 24px;
}

.legal-card {
    background: linear-gradient(175deg, rgba(17, 19, 28, 0.9) 0%, rgba(8, 9, 14, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 48px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.legal-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    gap: 12px;
}

.legal-date-tag {
    font-size: 12px;
    color: #71717a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.legal-date-tag strong {
    color: #ffffff;
}

.legal-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-outfit);
    transition: var(--transition);
}

.legal-back-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(-3px);
}

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

.clause-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.clause-num {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-outfit);
    flex-shrink: 0;
}

.clause-title {
    font-family: var(--font-outfit);
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
}

.clause-body {
    font-size: 14px;
    color: #d4d4d8;
    line-height: 1.7;
    padding-left: 44px;
}

.clause-body p {
    margin-bottom: 10px;
}

.clause-body ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.clause-body li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #a1a1aa;
}

.clause-body li i {
    color: #ffffff;
    margin-top: 4px;
    font-size: 11px;
}

.clause-body strong {
    color: #ffffff;
}

.legal-contact-box {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-box-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-box-left h4 {
    font-family: var(--font-outfit);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.contact-box-left p {
    font-size: 13px;
    color: #a1a1aa;
}

@media (max-width: 768px) {
    .legal-card {
        padding: 24px 20px;
    }
    .legal-page-title {
        font-size: 30px;
    }
    .clause-body {
        padding-left: 0;
    }
}



/* =========================================================
   COMMUNITY FEEDBACK PORTAL
   ========================================================= */
.feedback-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.feedback-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #fde68a;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    font-family: var(--font-outfit);
}

.feedback-layout {
    max-width: 680px;
    margin: 40px auto 0 auto;
    width: 100%;
}

.feedback-form-card {
    position: relative;
    background: linear-gradient(175deg, rgba(17, 19, 28, 0.95) 0%, rgba(8, 9, 14, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
}

/* =========================================================
   NAVBAR COMPACT USER DOCK (CHOTU SA LOGIN BUTTON & CAPSULE)
   ========================================================= */
.nav-user-dock {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-discord-login {
    background: #5865f2;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-outfit);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(88, 101, 242, 0.35);
}

.btn-discord-login:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.55);
}

.user-capsule {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 4px 10px 4px 5px;
    backdrop-filter: blur(10px);
}

.user-capsule-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid #22c55e;
    object-fit: cover;
}

.user-capsule-name {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-outfit);
    max-width: 110px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-capsule-logout {
    background: transparent;
    border: none;
    color: #a1a1aa;
    font-size: 12px;
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 50%;
    transition: color 0.2s ease;
}

.user-capsule-logout:hover {
    color: #ef4444;
}

/* =========================================================
   COMPACT INLINE AUTH BAR (FEEDBACK CARD)
   ========================================================= */
.feedback-compact-auth-row {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-unauthed-inline, .user-authed-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
    flex-wrap: wrap;
}

.unauth-pill-text {
    font-size: 12px;
    color: #a1a1aa;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.unauth-pill-text strong {
    color: #d4d4d8;
}

.btn-discord-mini {
    background: #5865f2;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 5px 12px;
    font-size: 11.5px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-outfit);
    transition: all 0.2s ease;
}

.btn-discord-mini:hover {
    background: #4752c4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.authed-mini-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.authed-mini-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid #22c55e;
    object-fit: cover;
}

.authed-mini-name {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-outfit);
}

.verified-mini-badge {
    font-size: 11px;
    font-weight: 700;
    color: #86efac;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-outfit);
}

.fb-label {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-outfit);
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
}

.fb-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fb-char-count {
    font-size: 11px;
    color: #71717a;
    font-family: 'Space Grotesk', monospace;
}

/* Star Rating Widget */
.star-rating-widget {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    user-select: none;
    padding: 6px 0;
}

.star-btn {
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 30px !important;
    color: #27272a;
    transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.15s ease, filter 0.15s ease !important;
    padding: 4px 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none !important;
    position: relative;
    z-index: 5;
}

.star-btn i {
    pointer-events: none;
    transition: all 0.15s ease;
    color: inherit;
}

/* Active / Filled State */
.star-btn.is-active, 
.star-btn.is-hovered, 
.star-btn.active, 
.star-btn.hovered {
    color: #f59e0b !important;
    filter: drop-shadow(0 0 12px rgba(245, 158, 11, 0.85)) !important;
    transform: scale(1.18);
}

/* Inactive / Unfilled State */
.star-btn.is-inactive,
.star-btn.inactive {
    color: #27272a !important;
    filter: none !important;
    transform: scale(1) !important;
}

.star-btn:hover {
    transform: scale(1.28) !important;
}

.rating-text-feedback {
    font-size: 13px;
    font-weight: 700;
    color: #fde68a;
    font-family: var(--font-outfit);
    display: block;
    margin-top: 4px;
}

/* Category Pills */
.fb-category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fb-cat-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d4d4d8;
    padding: 7px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-outfit);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}

.fb-cat-pill:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: translateY(-2px);
}

.fb-cat-pill.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Comment Box */
.fb-textarea {
    width: 100%;
    min-height: 110px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 14px;
    color: #ffffff;
    font-family: var(--font-grotesk);
    font-size: 13.5px;
    line-height: 1.5;
    outline: none;
    resize: vertical;
    transition: var(--transition);
}

.fb-textarea:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.25);
}

.fb-action-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.fb-submit-btn {
    padding: 12px 24px;
    font-size: 14px;
}

.fb-status-msg {
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-outfit);
}

.fb-status-msg.success { color: #22c55e; }
.fb-status-msg.error { color: #ef4444; }



@media (max-width: 992px) {
    .feedback-layout {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   AUTH TOAST NOTIFICATION
   ========================================================= */
.auth-toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: rgba(15, 17, 26, 0.95);
    border: 1px solid rgba(34, 197, 94, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(34, 197, 94, 0.25);
    backdrop-filter: blur(16px);
    color: #ffffff;
    font-family: var(--font-outfit);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 99999;
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.auth-toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

@media (max-width: 576px) {
    .auth-toast {
        bottom: 20px;
        right: 16px;
        left: 16px;
        justify-content: center;
        font-size: 13px;
        padding: 10px 16px;
    }
}

/* =========================================================
   THEME TOGGLE BUTTON COMPONENT
   ========================================================= */
.theme-toggle-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f3f4f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    color: #ffffff;
}

.icon-sun {
    display: none;
    color: #f59e0b;
}

.icon-moon {
    display: inline-block;
    color: #38bdf8;
}

/* Drawer Theme Toggle Box */
.drawer-theme-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 8px;
    box-sizing: border-box;
}

.drawer-theme-label {
    font-family: var(--font-outfit);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.drawer-theme-btn {
    width: auto;
    height: 34px;
    padding: 0 12px;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    font-family: var(--font-outfit);
}

/* =========================================================
   LIGHT THEME COMPLETE MASTER DESIGN SYSTEM (ULTRA-LUXURY MONOCHROME & TITANIUM)
   ========================================================= */
[data-theme="light"] {
    --bg-dark: #f8fafc;
    --bg-card: #ffffff;
    --border-color: rgba(0, 0, 0, 0.08);
    --color-cyan: #09090b;
    --color-cyan-glow: rgba(9, 9, 11, 0.12);
    --color-blue: #64748b;
    --color-blue-glow: rgba(100, 116, 139, 0.1);
    --text-primary: #09090b;
    --text-secondary: #52525b;
}

[data-theme="light"] body {
    background-color: #f8fafc !important;
    color: #09090b !important;
}

[data-theme="light"] .glow-bg {
    opacity: 0.03;
    filter: blur(80px);
}

[data-theme="light"] .glow-white {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.08) 0%, transparent 70%);
}

[data-theme="light"] .glow-silver {
    background: radial-gradient(circle, rgba(100, 116, 139, 0.08) 0%, transparent 70%);
}

/* Light Navbar */
[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.92) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
}

[data-theme="light"] .logo-text {
    background: linear-gradient(135deg, #09090b 0%, #3f3f46 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

[data-theme="light"] .logo-v2 {
    background: #09090b !important;
    color: #ffffff !important;
    border-color: #09090b !important;
}

[data-theme="light"] .logo-img {
    border-color: rgba(0, 0, 0, 0.12) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .nav-link {
    color: #52525b !important;
}

[data-theme="light"] .nav-link:hover {
    color: #09090b !important;
}

[data-theme="light"] .mobile-menu-toggle {
    color: #09090b !important;
}

/* Light Drawer */
[data-theme="light"] .mobile-drawer {
    background: rgba(255, 255, 255, 0.98) !important;
    border-left: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .drawer-link {
    color: #09090b !important;
}

[data-theme="light"] .drawer-theme-box {
    background: #f1f5f9 !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .drawer-theme-label {
    color: #09090b !important;
}

/* Light Theme Toggle Button */
[data-theme="light"] .theme-toggle-btn {
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
    color: #09090b !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .theme-toggle-btn:hover {
    background: #f1f5f9 !important;
    border-color: rgba(0, 0, 0, 0.22) !important;
    color: #09090b !important;
}

[data-theme="light"] .icon-sun {
    display: inline-block !important;
}

[data-theme="light"] .icon-moon {
    display: none !important;
}

/* Light Buttons */
[data-theme="light"] .btn-primary {
    background: #09090b !important;
    color: #ffffff !important;
    border-color: #09090b !important;
    box-shadow: 0 4px 14px rgba(9, 9, 11, 0.18) !important;
}

[data-theme="light"] .btn-primary:hover {
    background: #27272a !important;
    border-color: #27272a !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(9, 9, 11, 0.28) !important;
}

[data-theme="light"] .btn-secondary {
    background: #ffffff !important;
    color: #09090b !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .btn-secondary:hover {
    background: #f1f5f9 !important;
    border-color: rgba(0, 0, 0, 0.22) !important;
}

[data-theme="light"] .btn-outline {
    border-color: rgba(0, 0, 0, 0.22) !important;
    color: #09090b !important;
}

[data-theme="light"] .btn-outline:hover {
    background: #09090b !important;
    color: #ffffff !important;
    border-color: #09090b !important;
}

/* Light User Capsule */
[data-theme="light"] .user-capsule {
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    color: #09090b !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .user-capsule-name {
    color: #09090b !important;
}

/* Light Hero Section */
[data-theme="light"] .hero-badge {
    background: rgba(9, 9, 11, 0.05) !important;
    border-color: rgba(9, 9, 11, 0.12) !important;
    color: #09090b !important;
}

[data-theme="light"] .badge-dot {
    background-color: #09090b !important;
    box-shadow: 0 0 8px rgba(9, 9, 11, 0.4) !important;
}

[data-theme="light"] .hero-title {
    color: #09090b !important;
}

[data-theme="light"] .text-white-gradient {
    background: linear-gradient(135deg, #09090b 0%, #3f3f46 60%, #71717a 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

[data-theme="light"] .hero-subtitle {
    color: #52525b !important;
}

/* Hero Spotlight Player Card in Light */
[data-theme="light"] .hero-player-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

[data-theme="light"] .player-status-badge {
    background: #f1f5f9 !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    color: #09090b !important;
}

[data-theme="light"] .equalizer-bar {
    background: #09090b !important;
}

[data-theme="light"] .player-hd-badge {
    background: #f8fafc !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    color: #71717a !important;
}

[data-theme="light"] .player-track-title {
    color: #09090b !important;
}

[data-theme="light"] .player-track-artist {
    color: #71717a !important;
}

[data-theme="light"] .player-time {
    color: #71717a !important;
}

[data-theme="light"] .player-progress-bar-bg {
    background: #e2e8f0 !important;
}

[data-theme="light"] .player-progress-fill {
    background: linear-gradient(90deg, #09090b 0%, #52525b 100%) !important;
    box-shadow: 0 0 10px rgba(9, 9, 11, 0.25) !important;
}

[data-theme="light"] .player-btn-icon,
[data-theme="light"] .player-btn-ctrl {
    color: #71717a !important;
}

[data-theme="light"] .player-btn-icon:hover,
[data-theme="light"] .player-btn-ctrl:hover {
    color: #09090b !important;
}

[data-theme="light"] .player-play-btn {
    background: #09090b !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(9, 9, 11, 0.25) !important;
}

[data-theme="light"] .player-play-btn:hover {
    background: #27272a !important;
    color: #ffffff !important;
}

/* Floating Status Pills */
[data-theme="light"] .floating-pill {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .pill-icon {
    background: #f1f5f9 !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    color: #09090b !important;
}

[data-theme="light"] .card-label {
    color: #71717a !important;
}

[data-theme="light"] .card-val {
    color: #09090b !important;
}

/* Light Stats & Performance */
[data-theme="light"] .stats-section {
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.6) 0%, rgba(248, 250, 252, 0.4) 100%) !important;
    border-color: rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .stat-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .stat-num {
    background: linear-gradient(135deg, #09090b 0%, #3f3f46 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

[data-theme="light"] .stat-label {
    color: #71717a !important;
}

[data-theme="light"] .perf-title {
    color: #09090b !important;
}

[data-theme="light"] .perf-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03) !important;
}

[data-theme="light"] .perf-label {
    color: #52525b !important;
    font-weight: 700 !important;
}

[data-theme="light"] .perf-value {
    color: #09090b !important;
}

/* Light Live Voice Broadcasts Section */
[data-theme="light"] .live-broadcasts-section {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .broadcast-heading {
    color: #09090b !important;
}

[data-theme="light"] .broadcast-sub {
    color: #71717a !important;
}

[data-theme="light"] .broadcast-card {
    background: #f8fafc !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .b-server-title {
    color: #09090b !important;
}

[data-theme="light"] .b-server-sub {
    color: #71717a !important;
}

[data-theme="light"] .b-track-title {
    color: #09090b !important;
}

[data-theme="light"] .b-track-artist {
    color: #71717a !important;
}

[data-theme="light"] .b-bar-bg {
    background: #e2e8f0 !important;
}

[data-theme="light"] .b-time-labels,
[data-theme="light"] .b-time-val,
[data-theme="light"] .b-requester-val {
    color: #71717a !important;
}

[data-theme="light"] .b-requester-val strong {
    color: #09090b !important;
}

/* Light Standby Card */
[data-theme="light"] .broadcast-idle-card.luxury-standby-card {
    background: #f8fafc !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03) !important;
}

[data-theme="light"] .standby-heading {
    color: #09090b !important;
}

[data-theme="light"] .standby-subtext {
    color: #52525b !important;
}

[data-theme="light"] .standby-quality-text {
    color: #52525b !important;
}

[data-theme="light"] .standby-cmd-pill {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #09090b !important;
}

[data-theme="light"] .standby-cmd-pill .cmd-pill-label {
    color: #71717a !important;
}

[data-theme="light"] .standby-cmd-pill code {
    color: #09090b !important;
    font-weight: 700 !important;
}

/* Light Features Section & Tabs */
[data-theme="light"] .section-title {
    color: #09090b !important;
}

[data-theme="light"] .section-subtitle {
    color: #71717a !important;
}

[data-theme="light"] .tab-list {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .tab-btn {
    color: #52525b !important;
}

[data-theme="light"] .tab-btn:hover {
    color: #09090b !important;
    background: #f1f5f9 !important;
}

[data-theme="light"] .tab-btn.active {
    background: #09090b !important;
    color: #ffffff !important;
    border-color: #09090b !important;
    box-shadow: 0 4px 14px rgba(9, 9, 11, 0.18) !important;
}

[data-theme="light"] .tab-tag {
    color: #09090b !important;
    font-weight: 700 !important;
}

[data-theme="light"] .tab-text h3 {
    color: #09090b !important;
}

[data-theme="light"] .tab-text p {
    color: #52525b !important;
}

[data-theme="light"] .feature-bullets li {
    color: #27272a !important;
}

[data-theme="light"] .feature-bullets li i {
    color: #09090b !important;
}

/* Feature Player Card in Light */
[data-theme="light"] .feature-player-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

[data-theme="light"] .feat-status-tag {
    background: #f1f5f9 !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    color: #09090b !important;
}

[data-theme="light"] .feat-eq-bar {
    background: #09090b !important;
}

[data-theme="light"] .feat-audio-badge {
    background: #f8fafc !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    color: #71717a !important;
}

[data-theme="light"] .feat-badge-now-playing {
    color: #71717a !important;
}

[data-theme="light"] .feat-track-title {
    color: #09090b !important;
}

[data-theme="light"] .feat-track-artist {
    color: #71717a !important;
}

[data-theme="light"] .feat-time {
    color: #71717a !important;
}

[data-theme="light"] .feat-progress-bar-bg {
    background: #e2e8f0 !important;
}

[data-theme="light"] .feat-progress-fill {
    background: linear-gradient(90deg, #09090b 0%, #52525b 100%) !important;
    box-shadow: 0 0 10px rgba(9, 9, 11, 0.25) !important;
}

[data-theme="light"] .feat-btn-icon,
[data-theme="light"] .feat-btn-ctrl {
    color: #71717a !important;
}

[data-theme="light"] .feat-btn-icon:hover,
[data-theme="light"] .feat-btn-ctrl:hover {
    color: #09090b !important;
}

[data-theme="light"] .feat-play-btn {
    background: #09090b !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(9, 9, 11, 0.25) !important;
}

[data-theme="light"] .feat-play-btn:hover {
    background: #27272a !important;
    color: #ffffff !important;
}

[data-theme="light"] .feat-bitrate-pill {
    background: #f1f5f9 !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    color: #09090b !important;
}

/* Feature Suite Cards (Ticket, Staff, Perms, Embeds) in Light */
[data-theme="light"] .feature-suite-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

[data-theme="light"] .suite-card-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .suite-badge-pill {
    background: #f1f5f9 !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    color: #09090b !important;
}

[data-theme="light"] .suite-category-pill {
    background: #f8fafc !important;
    border-color: rgba(0, 0, 0, 0.06) !important;
    color: #71717a !important;
}

[data-theme="light"] .ticket-user-avatar {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

[data-theme="light"] .ticket-username {
    color: #09090b !important;
}

[data-theme="light"] .ticket-user-tag {
    background: rgba(9, 9, 11, 0.06) !important;
    color: #09090b !important;
}

[data-theme="light"] .ticket-time {
    color: #71717a !important;
}

[data-theme="light"] .ticket-query-box {
    background: #f8fafc !important;
    border-left: 3px solid #09090b !important;
}

[data-theme="light"] .ticket-query-box p {
    color: #27272a !important;
}

[data-theme="light"] .ticket-staff-claim {
    color: #52525b !important;
}

[data-theme="light"] .ticket-staff-claim strong {
    color: #09090b !important;
}

[data-theme="light"] .staff-applicant-avatar {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

[data-theme="light"] .staff-app-name {
    color: #09090b !important;
}

[data-theme="light"] .staff-app-sub {
    color: #71717a !important;
}

[data-theme="light"] .staff-app-sub strong {
    color: #09090b !important;
}

[data-theme="light"] .staff-qa-list {
    background: #f8fafc !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .qa-q {
    color: #09090b !important;
    font-weight: 700 !important;
}

[data-theme="light"] .qa-a {
    color: #27272a !important;
}

[data-theme="light"] .perm-config-summary {
    background: #f8fafc !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .p-label {
    color: #71717a !important;
}

[data-theme="light"] .p-val {
    color: #09090b !important;
}

[data-theme="light"] .perm-switch-row {
    background: #f8fafc !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    color: #09090b !important;
}

[data-theme="light"] .suite-prog-bar {
    background: #e2e8f0 !important;
}

[data-theme="light"] .suite-prog-fill {
    background: linear-gradient(90deg, #09090b, #52525b) !important;
}

[data-theme="light"] .suite-prog-text {
    color: #71717a !important;
}

[data-theme="light"] .luxury-embed-inner {
    background: #f8fafc !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .embed-accent-bar {
    background: #09090b !important;
    box-shadow: 0 0 10px rgba(9, 9, 11, 0.3) !important;
}

[data-theme="light"] .embed-author-name {
    color: #71717a !important;
}

[data-theme="light"] .embed-heading {
    color: #09090b !important;
}

[data-theme="light"] .embed-paragraph {
    color: #27272a !important;
}

[data-theme="light"] .embed-fields-grid {
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .f-title {
    color: #09090b !important;
}

[data-theme="light"] .f-desc {
    color: #71717a !important;
}

[data-theme="light"] .btn-claim,
[data-theme="light"] .btn-accept {
    background: #09090b !important;
    color: #ffffff !important;
    border-color: #09090b !important;
}

[data-theme="light"] .btn-claim:hover,
[data-theme="light"] .btn-accept:hover {
    background: #27272a !important;
}

[data-theme="light"] .btn-transcript,
[data-theme="light"] .btn-dm {
    background: #f1f5f9 !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #09090b !important;
}

[data-theme="light"] .btn-transcript:hover,
[data-theme="light"] .btn-dm:hover {
    background: #e2e8f0 !important;
}

/* Light Commands Section */
[data-theme="light"] .commands-section {
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.5) 0%, rgba(248, 250, 252, 0.3) 100%) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .commands-list-panel {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .panel-header {
    color: #09090b !important;
}

[data-theme="light"] .cmd-search-wrapper input {
    background: #f8fafc !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #09090b !important;
}

[data-theme="light"] .cmd-search-wrapper input::placeholder {
    color: #94a3b8 !important;
}

[data-theme="light"] .cmd-item {
    color: #27272a !important;
}

[data-theme="light"] .cmd-item:hover {
    background: #f8fafc !important;
}

[data-theme="light"] .cmd-item.active {
    background: #f1f5f9 !important;
    border: 1px solid rgba(9, 9, 11, 0.2) !important;
}

[data-theme="light"] .cmd-name {
    color: #09090b !important;
    font-weight: 700 !important;
}

[data-theme="light"] .cmd-short {
    color: #71717a !important;
}

[data-theme="light"] .commands-terminal-panel {
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .commands-terminal-panel .term-body {
    background: #09090b !important;
    color: #f8fafc !important;
}

[data-theme="light"] .term-header {
    background: #18181b !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

/* Light Executive Team Cards */
[data-theme="light"] .team-section {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.3) 0%, rgba(241, 245, 249, 0.6) 100%) !important;
}

[data-theme="light"] .team-card.luxury-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .team-card.luxury-card:hover {
    transform: translateY(-10px) scale(1.025) !important;
    border-color: rgba(0, 0, 0, 0.18) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .team-card.luxury-card:active {
    transform: translateY(-5px) scale(1.045) !important;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12) !important;
}


[data-theme="light"] .team-card-header {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .team-card-header::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(255, 255, 255, 0.4) 100%) !important;
}

[data-theme="light"] .card-badges-tray {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

[data-theme="light"] .avatar-img {
    border: 3.5px solid #ffffff !important;
    background: #ffffff !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

[data-theme="light"] .status-dot {
    border: 3px solid #ffffff !important;
}

[data-theme="light"] .member-name {
    color: #09090b !important;
}

[data-theme="light"] .member-tag {
    background: #f1f5f9 !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    color: #52525b !important;
}

[data-theme="light"] .discord-about-box {
    background: #f8fafc !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.03) !important;
}

[data-theme="light"] .member-desc {
    color: #27272a !important;
}

[data-theme="light"] .role-chip {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    color: #09090b !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
}

[data-theme="light"] .role-chip:hover {
    background: #f1f5f9 !important;
    color: #09090b !important;
}

[data-theme="light"] .social-icon {
    background: #f1f5f9 !important;
    color: #52525b !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .social-icon:hover {
    background: #09090b !important;
    color: #ffffff !important;
}

/* Light Feedback Section */
[data-theme="light"] .feedback-section {
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.6) 0%, rgba(248, 250, 252, 0.4) 100%) !important;
}

[data-theme="light"] .feedback-form-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .feedback-compact-auth-row {
    background: #f8fafc !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .unauth-pill-text {
    color: #52525b !important;
}

[data-theme="light"] .unauth-pill-text strong {
    color: #09090b !important;
}

[data-theme="light"] .authed-mini-name {
    color: #09090b !important;
}

[data-theme="light"] .fb-label {
    color: #09090b !important;
}

[data-theme="light"] .star-btn.is-inactive,
[data-theme="light"] .star-btn.inactive {
    color: #cbd5e1 !important;
}

[data-theme="light"] .rating-text-feedback {
    color: #b45309 !important;
}

[data-theme="light"] .fb-cat-pill {
    background: #f8fafc !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    color: #52525b !important;
}

[data-theme="light"] .fb-cat-pill:hover {
    background: #f1f5f9 !important;
    color: #09090b !important;
}

[data-theme="light"] .fb-cat-pill.active {
    background: #09090b !important;
    color: #ffffff !important;
    border-color: #09090b !important;
    box-shadow: 0 4px 14px rgba(9, 9, 11, 0.18) !important;
}

[data-theme="light"] .fb-textarea {
    background: #f8fafc !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    color: #09090b !important;
}

[data-theme="light"] .fb-textarea:focus {
    background: #ffffff !important;
    border-color: #09090b !important;
}

[data-theme="light"] .fb-char-count {
    color: #71717a !important;
}

[data-theme="light"] .fb-submit-btn {
    background: #09090b !important;
    color: #ffffff !important;
    border-color: #09090b !important;
}

[data-theme="light"] .fb-submit-btn:hover {
    background: #27272a !important;
}

/* Light About / CTA Section */
[data-theme="light"] .cta-section {
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .cta-container {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .cta-title {
    color: #09090b !important;
}

[data-theme="light"] .cta-desc {
    color: #52525b !important;
}

/* Light Footer */
[data-theme="light"] .footer {
    background: #ffffff !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    color: #71717a !important;
}

[data-theme="light"] .footer-desc,
[data-theme="light"] .footer-column a {
    color: #52525b !important;
}

[data-theme="light"] .footer-column a:hover {
    color: #09090b !important;
}

[data-theme="light"] .footer-column h4 {
    color: #09090b !important;
}

[data-theme="light"] .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .footer-bottom p {
    color: #71717a !important;
}

/* Light Server List Modal */
[data-theme="light"] .neon-modal {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12) !important;
    color: #09090b !important;
}

[data-theme="light"] .modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .modal-header h3 {
    color: #09090b !important;
}

[data-theme="light"] .modal-close-btn {
    color: #71717a !important;
}

[data-theme="light"] .modal-server-item {
    background: #f8fafc !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .server-name {
    color: #09090b !important;
}

[data-theme="light"] .server-members {
    background: #ffffff !important;
    color: #52525b !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .loading-spinner-wrapper {
    color: #71717a !important;
}

/* Light Auth Toast */
[data-theme="light"] .auth-toast {
    background: #ffffff !important;
    color: #09090b !important;
    border: 1px solid rgba(34, 197, 94, 0.5) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* ==========================================================================
   LUXURY SCROLL-TRIGGERED REVEAL ANIMATIONS (AOS ENGINE) - ULTRA FAST & SNAPPY
   ========================================================================== */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal {
    transform: translateY(18px);
}

.reveal-left {
    transform: translateX(-20px);
}

.reveal-right {
    transform: translateX(20px);
}

.reveal-scale {
    transform: scale(0.96) translateY(12px);
}

/* Active State when in Viewport */
.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Stagger Delays for Grid Elements (Fast & Snappy) */
.reveal-delay-1 { transition-delay: 0.04s; }
.reveal-delay-2 { transition-delay: 0.08s; }
.reveal-delay-3 { transition-delay: 0.12s; }
.reveal-delay-4 { transition-delay: 0.16s; }
.reveal-delay-5 { transition-delay: 0.20s; }
.reveal-delay-6 { transition-delay: 0.24s; }

/* Accessibility fallback */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}