:root {
    --color-bg: #13003e;
    --color-bg-dark: #140035;
    --color-primary: #FB46E4;
    --color-accent: #00ffff;
    --color-muted: #b099ff;

    /* Shared panel/card tokens */
    --panel-bg: rgba(29, 9, 54, 0.5);
    --panel-border: rgba(255, 0, 255, 0.4);
    --text-light: #f0e6ff;
    --card-radius: 15px;
    --card-shadow: 0 0 15px var(--panel-border), inset 0 0 10px var(--panel-border);
    --card-shadow-hover: 0 0 25px var(--panel-border), inset 0 0 15px var(--panel-border);
}

body {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, #050a1a 40%, #0a0f2e 100%);
    background-attachment: fixed;
}

.main {
    overflow: hidden;
    flex: 1;
    position: relative;
    background: transparent;
    z-index: 1;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.russo-one-regular {
    font-family: "Russo One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.bebas-neue-regular {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}



.exo-2-reg {
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


.exo-2-bold {
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.audiowide-regular {
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
}




html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

body {
    margin-bottom: 0;
    background: #13003e;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    /*background-image: url(/img/skyline.png) !important;
    background-position: bottom;
    background-size: 20% auto;
    background-repeat: repeat-x;*/
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}


/* --- Site Header --- */
.site-header {
    position: relative;
    background: rgba(0, 5, 15, 0.95);
    border-bottom: 2px solid var(--color-primary);
    z-index: 100;
    overflow: hidden;
}

.header-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.015) 2px,
        rgba(0, 255, 255, 0.015) 4px
    );
    pointer-events: none;
    z-index: 0;
}

/* Terminal chrome bar */
.header-bar {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 16px;
    background: rgba(0, 255, 255, 0.03);
    border-bottom: 1px solid rgba(0, 255, 255, 0.08);
}

.header-bar-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.header-dot.red { background: #ff5f57; }
.header-dot.yellow { background: #febc2e; }
.header-dot.green { background: #28c840; }

.header-sys-tag {
    font-family: 'Exo 2', monospace;
    font-size: 0.7rem;
    color: var(--color-accent);
    letter-spacing: 2px;
    opacity: 0.4;
    margin-left: 8px;
}

.header-bar-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #28c840;
    box-shadow: 0 0 6px #28c840, 0 0 12px rgba(40, 200, 64, 0.3);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.header-status-text {
    font-family: 'Exo 2', monospace;
    font-size: 0.65rem;
    color: #28c840;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* Main header content */
.header-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding-block: 1rem;
    gap: 2.5rem;
}

/* Brand */
.header-brand {
    text-decoration: none;
    flex-shrink: 0;
}

.header-brand-text {
    font-family: 'Audiowide', sans-serif;
    font-size: 2rem;
    color: var(--color-primary);
    letter-spacing: 3px;
    line-height: 1;
    transition: all 0.3s ease;
    position: relative;
}

.header-brand:hover .header-brand-text {
    color: #fff;
    text-shadow: 0 0 10px var(--color-primary), 0 0 25px rgba(251, 70, 228, 0.4);
}

/* Nav links */
.header-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.header-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    font-family: 'Russo One', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--text-light);
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: all 0.3s ease;
    background:none;
}

.header-link-arrow {
    font-size: 0.55rem;
    color: var(--color-accent);
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-4px);
}

.header-link:hover {
    color: var(--color-accent);
    background: rgba(0, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.15);
}

.header-link:hover .header-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.header-link-sep {
    color: rgba(255, 255, 255, 0.08);
    font-size: 1.2rem;
    user-select: none;
}

/* Mobile toggle */
.header-toggle {
    display: none;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.25);
    border-radius: 2px;
    color: var(--color-accent);
    font-family: 'Exo 2', monospace;
    font-size: 0.8rem;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.3s ease;
}

.header-toggle:hover {
    border-color: var(--color-accent);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

/* Compact nav for medium screens */
@media (max-width: 1400px) {
    .header-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .header-nav {
        gap: 0.25rem;
    }

    .header-link-sep {
        font-size: 1rem;
    }
}

@media (max-width: 1200px) {
    .header-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }

    .header-brand-text {
        font-size: 1.6rem;
    }

    .header-inner {
        gap: 1.5rem;
    }
}

/* Mobile responsive - hamburger menu */
@media (max-width: 1024px) {
    .header-toggle {
        display: block;
    }

    .header-brand-text {
        font-size: 1.5rem;
    }

    .header-nav {
        flex-direction: column;
        width: 100%;
        padding-block: 0.5rem;
        gap: 0;
        margin-left: 0;
    }

    .header-nav {
        display: none;
    }

    .header-nav.show {
        display: flex;
    }

    .header-link-sep {
        display: none;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .header-link {
        width: 100%;
        padding: 0.85rem 1rem;
        font-size: 1.1rem;
        letter-spacing: 2px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .header-link:last-child {
        border-bottom: none;
    }

    .header-link .header-link-arrow {
        opacity: 0.4;
        transform: translateX(0);
    }
}




/* =============================================
   INDEX PAGE — ix-* styles
   ============================================= */

.ix-page {
    background: var(--color-bg-dark);
    color: var(--text-light);
}

/* --- Visualizer Section --- */
.ix-visualizer-section {
    position: relative;
    border-bottom: 2px solid var(--color-primary);
}


#visualizer {
    display: flex;
    width: 100%;
    height: 250px;
    background: none;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.ix-visualizer-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--color-bg-dark), transparent);
    z-index: 3;
    pointer-events: none;
}

/* --- Index Body --- */
.ix-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
    overflow-x: hidden;
}

@media (max-width: 480px) {
    .ix-body {
        padding: 1.5rem 1rem 2rem;
    }
}

/* --- Now Playing Hero --- */
.ix-now-playing {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    background: rgba(0, 5, 15, 0.9);
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    padding: 1.5rem;
    box-shadow: 0 0 30px rgba(251, 70, 228, 0.15), inset 0 0 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.ix-np-art {
    flex-shrink: 0;
    width: 200px;
}

.ix-np-art .cover-art {
    border-radius: 4px;
    border: 1px solid rgba(251, 70, 228, 0.3);
}

.ix-np-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ix-np-tag {
    display: block;
    font-family: 'Exo 2', monospace;
    font-size: 0.7rem;
    color: var(--color-accent);
    letter-spacing: 3px;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.now-playing-details {
    display: flex;
    flex-direction: column;
}

.now-playing-details .np {
    display: block;
    color: var(--color-primary);
    white-space: normal;
}

.now-playing-details .now-playing-song-title {
    font-family: 'Russo One', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.2;
}

.now-playing-details .now-playing-artist {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.1rem;
    color: var(--color-muted);
    margin-bottom: 1rem;
}

/* Scrolling text for long titles on mobile */
@media (max-width: 768px) {
    .now-playing-details .now-playing-song-title,
    .now-playing-details .now-playing-artist {
        overflow: hidden;
        position: relative;
        max-width: 100%;
    }

    .now-playing-details .now-playing-song-title.scrolling,
    .now-playing-details .now-playing-artist.scrolling {
        display: inline-block;
        animation: text-scroll 8s linear infinite;
        animation-delay: 2s;
        padding-right: 50px;
    }

    .now-playing-details .now-playing-song-title.scrolling::after,
    .now-playing-details .now-playing-artist.scrolling::after {
        content: attr(data-text);
        position: absolute;
        left: 100%;
        padding-left: 50px;
        white-space: nowrap;
    }
}

@keyframes text-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* --- Song Progress --- */
.song-progress {
    width: 100%;
}

.song-progress .progress-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.song-progress .progress-container .progress-bar {
    width: 10%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 3px;
    transition: width 0.5s linear;
}

.song-progress .time {
    display: flex;
    justify-content: space-between;
    font-family: 'Exo 2', monospace;
    font-size: 0.7rem;
    color: var(--color-muted);
    opacity: 0.6;
    margin-top: 0.25rem;
}

/* --- Controls --- */
.controlls {
    display: flex;
    justify-content: space-between;
    font-size: 1.75rem;
    padding-block: 0.75rem;
    color: var(--color-primary);
    align-items: center;
}

.controlls .fa-circle-play,
.controlls .fa-circle-pause {
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.2s, text-shadow 0.2s;
}

.controlls .fa-circle-play:hover,
.controlls .fa-circle-pause:hover {
    color: #fff;
    text-shadow: 0 0 15px var(--color-primary);
}

.controlls .like-btn {
    cursor: pointer;
    transition: color 0.2s;
}

.controlls .like-btn:hover {
    color: #fff;
}

/* --- Image Wrappers --- */
.img-wrapper {
    display: block;
    width: 100%;
    height: 100%;
}

.img-wrapper img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
}

.img-wrapper.profile-pic {
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.cover-art {
    border-radius: 4px;
    width: 100%;
}

/* --- Live Stats Bar --- */
.ix-stats-bar {
    margin-bottom: 1.5rem;
}

.stats-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(0, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-item i {
    font-size: 1.2rem;
    color: var(--color-accent);
}

.stat-value {
    font-family: 'Russo One', sans-serif;
    font-size: 1rem;
    color: #fff;
    letter-spacing: 1px;
}

.stat-label {
    font-family: 'Exo 2', monospace;
    font-size: 0.65rem;
    color: var(--color-muted);
    letter-spacing: 2px;
    opacity: 0.7;
}

.stat-dj-status {
    color: #28c840;
}

.stat-dj-status.offline {
    color: var(--color-muted);
}

.stat-divider {
    width: 1px;
    height: 24px;
    background: rgba(0, 255, 255, 0.15);
}

.stat-dj-pic {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .stats-bar-inner {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }

    .stat-divider {
        width: 80%;
        height: 1px;
    }
}

/* --- Carousel --- */
.ix-carousel {
    margin-bottom: 1.5rem;
}

.carousel {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(251, 70, 228, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.carousel-track {
    position: relative;
    height: 260px;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 255, 0.01) 2px,
            rgba(0, 255, 255, 0.01) 4px
        );
    pointer-events: none;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
}

.slide-tag {
    display: inline-block;
    font-family: 'Exo 2', monospace;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 0.3rem 0.6rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 2px;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.slide-tag.hot {
    background: rgba(255, 100, 50, 0.15);
    border-color: rgba(255, 100, 50, 0.4);
    color: #ff6432;
}

.slide-title {
    font-family: 'Russo One', sans-serif;
    font-size: 1.75rem;
    color: #fff;
    letter-spacing: 1px;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-desc {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    color: var(--color-muted);
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.25rem;
    font-family: 'Russo One', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #000;
    background: var(--color-primary);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.slide-cta:hover {
    background: #fff;
    box-shadow: 0 0 25px rgba(251, 70, 228, 0.5);
    transform: translateY(-2px);
}

.slide-graphic {
    position: relative;
    z-index: 1;
    font-size: 6rem;
    color: var(--color-primary);
    opacity: 0.15;
    animation: float-icon 4s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--color-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: rgba(251, 70, 228, 0.2);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-dot.active {
    background: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
}

/* Carousel responsive */
@media (max-width: 768px) {
    .carousel-track {
        height: 220px;
    }

    .carousel-slide {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .slide-content {
        max-width: 100%;
    }

    .slide-title {
        font-size: 1.3rem;
    }

    .slide-desc {
        font-size: 0.8rem;
    }

    .slide-graphic {
        position: absolute;
        right: 1rem;
        bottom: 1rem;
        font-size: 4rem;
        opacity: 0.1;
    }
}

@media (max-width: 480px) {
    .carousel-track {
        height: 240px;
    }

    .slide-title {
        font-size: 1.1rem;
    }

    .slide-cta {
        font-size: 0.65rem;
        padding: 0.5rem 1rem;
    }

    .carousel-arrow {
        width: 28px;
        height: 28px;
    }
}

/* --- Live DJ Section --- */
.ix-live-dj-section {
    margin-bottom: 1.5rem;
}

.live-dj {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.live-dj-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.live-dj-info-name {
    font-family: 'Russo One', sans-serif;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.live-dj-info-stream {
    font-family: 'Exo 2', monospace;
    font-size: 0.8rem;
    color: var(--color-accent);
    letter-spacing: 1px;
}

.live-dj-info-Schedule {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--color-muted);
    font-family: 'Exo 2', sans-serif;
    font-size: 0.8rem;
    gap: 0.25rem;
}

.ldi-time {
    padding-inline: 0.4rem;
}

/* --- Events Accordion --- */
.ix-events {
    margin-bottom: 1.5rem;
}

.events-board {
    background: linear-gradient(135deg, rgba(0, 5, 15, 0.95) 0%, rgba(10, 5, 25, 0.95) 100%);
    border: 1px solid rgba(251, 70, 228, 0.3);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(251, 70, 228, 0.1);
}

.events-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(251, 70, 228, 0.1) 50%,
        transparent 100%);
    border-bottom: 1px solid rgba(251, 70, 228, 0.2);
}

.events-indicator {
    display: flex;
    gap: 4px;
}

.indicator-bar {
    width: 20px;
    height: 3px;
    background: var(--color-primary);
    opacity: 0.3;
    animation: bar-pulse 1.5s ease-in-out infinite;
}

.indicator-bar:nth-child(2) { animation-delay: 0.2s; }
.indicator-bar:nth-child(3) { animation-delay: 0.4s; }

@keyframes bar-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.events-title {
    font-family: 'Russo One', sans-serif;
    font-size: 0.7rem;
    color: var(--color-primary);
    letter-spacing: 3px;
}

.events-accordion {
    display: flex;
    flex-direction: column;
}

.event-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.event-item:last-child {
    border-bottom: none;
}

.event-tab {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.event-tab:hover {
    background: rgba(255, 255, 255, 0.02);
}

.event-item.active .event-tab {
    background: rgba(251, 70, 228, 0.05);
}

.event-tag {
    font-family: 'Exo 2', monospace;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 2px;
    color: var(--color-accent);
    min-width: 50px;
    text-align: center;
}

.event-tag.hot {
    background: rgba(255, 100, 50, 0.15);
    border-color: rgba(255, 100, 50, 0.4);
    color: #ff6432;
}

.event-name {
    flex: 1;
    font-family: 'Russo One', sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.event-arrow {
    font-size: 0.7rem;
    color: var(--color-muted);
    transition: transform 0.3s ease;
}

.event-item.active .event-arrow {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.event-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.event-item.active .event-content {
    max-height: 200px;
}

.event-details {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1.25rem 1.25rem;
}

.event-info {
    flex: 1;
}

.event-desc {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.5;
    margin: 0 0 0.75rem 0;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.event-meta span {
    font-family: 'Exo 2', monospace;
    font-size: 0.7rem;
    color: var(--color-accent);
    opacity: 0.7;
}

.event-meta i {
    margin-right: 0.35rem;
}

.event-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    font-family: 'Russo One', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--color-primary);
    text-decoration: none;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.event-cta:hover {
    background: var(--color-primary);
    color: #000;
    box-shadow: 0 0 20px rgba(251, 70, 228, 0.4);
}

.event-cta i {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.event-cta:hover i {
    transform: translateX(3px);
}

.events-progress {
    display: flex;
    justify-content: center;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.progress-dots {
    display: flex;
    gap: 0.5rem;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-dot:hover {
    background: rgba(255, 255, 255, 0.3);
}

.progress-dot.active {
    background: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
}

/* Events responsive */
@media (max-width: 768px) {
    .event-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .event-cta {
        width: 100%;
        justify-content: center;
    }

    .event-name {
        font-size: 0.85rem;
    }

    .event-desc {
        font-size: 0.8rem;
    }

    .events-title {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .indicator-bar {
        width: 15px;
    }
}

@media (max-width: 480px) {
    .event-tab {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }

    .event-tag {
        font-size: 0.5rem;
        min-width: 40px;
        padding: 0.2rem 0.4rem;
    }

    .event-name {
        font-size: 0.75rem;
    }

    .event-meta {
        flex-direction: column;
        gap: 0.4rem;
    }

    .events-header {
        gap: 0.5rem;
    }

    .events-indicator {
        display: none;
    }
}

/* --- Two-Column Grid --- */
.ix-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

/* History spans full width when alone in row */
.ix-history {
    grid-column: 1 / -1;
}

/* Prevent terminal panels from overflowing */
.ix-schedule,
.ix-top-songs,
.ix-history {
    min-width: 0;
}

.ix-schedule .terminal-panel,
.ix-top-songs .terminal-panel,
.ix-history .terminal-panel {
    max-width: 100%;
    overflow: hidden;
}

.ix-schedule .terminal-body,
.ix-top-songs .terminal-body,
.ix-history .terminal-body {
    overflow: hidden;
}

.ix-section-label {
    display: block;
    font-family: 'Exo 2', monospace;
    font-size: 0.8rem;
    color: var(--color-accent);
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

/* --- Schedule --- */
.schedule-shows {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.show-template {
    display: none;
}

.show {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.06);
    overflow: hidden;
}

.show:last-child {
    border-bottom: none;
}

.show-dj {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.show-dj-avatar {
    width: 28px;
    height: 28px;
    border-radius: 3px;
    object-fit: cover;
    border: 1px solid var(--color-primary);
}

.show-dj-avatar-default {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 70, 228, 0.1);
    color: var(--color-primary);
    font-size: 0.75rem;
}

.show-dj-name {
    font-family: 'Russo One', sans-serif;
    font-size: 0.85rem;
    color: var(--color-primary);
}

.show-title {
    font-family: 'Exo 2', sans-serif;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 400;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.15rem;
}

.show-empty {
    font-family: 'Exo 2', monospace;
    font-size: 0.8rem;
    color: var(--color-muted);
    text-align: center;
    padding: 1rem;
}

.si-day {
    font-family: 'Russo One', sans-serif;
    font-size: 0.7rem;
    color: var(--color-accent);
    letter-spacing: 1px;
    margin-right: 0.5rem;
}

.schedule-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--color-muted);
    font-family: 'Exo 2', sans-serif;
    font-size: 0.8rem;
    gap: 0.25rem;
    margin-top: 0.15rem;
    flex-wrap: wrap;
}

.si-time {
    padding-inline: 0.4rem;
}

@media (max-width: 480px) {
    .schedule-info {
        font-size: 0.7rem;
    }

    .si-time {
        padding-inline: 0.2rem;
    }
}

/* --- Top Songs --- */
.top-songs-list {
    overflow: hidden;
}

.top-song-item-template {
    display: none;
}

.top-song-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.06);
    overflow: hidden;
}

.top-song-item:last-child {
    border-bottom: none;
}

.top-song-rank {
    font-family: 'Russo One', sans-serif;
    font-size: 0.9rem;
    color: var(--color-accent);
    min-width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.top-song-item:nth-child(2) .top-song-rank { color: #ffd700; } /* gold for #1 */
.top-song-item:nth-child(3) .top-song-rank { color: #c0c0c0; } /* silver for #2 */
.top-song-item:nth-child(4) .top-song-rank { color: #cd7f32; } /* bronze for #3 */

.top-song-art {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(251, 70, 228, 0.3);
}

.top-song-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.top-song-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-song-artist {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.75rem;
    color: var(--color-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .top-song-item {
        gap: 0.5rem;
    }

    .top-song-art {
        width: 32px;
        height: 32px;
    }

    .top-song-rank {
        min-width: 24px;
        font-size: 0.8rem;
    }

    .top-song-plays {
        font-size: 0.6rem;
    }

    .song-history-art {
        width: 36px;
        height: 36px;
    }

    .song-history-group {
        gap: 0.5rem;
    }

    .song-history-title {
        font-size: 0.85rem;
    }

    .song-history-artist {
        font-size: 0.7rem;
    }

    .song-history-group .like-btn {
        font-size: 1rem;
    }
}

.top-song-plays {
    font-family: 'Exo 2', monospace;
    font-size: 0.7rem;
    color: var(--color-primary);
    letter-spacing: 1px;
    flex-shrink: 0;
}

/* --- Song History --- */
.song-history-list {
    overflow: hidden;
}

.song-history-group-template {
    display: none;
}

.song-history-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.06);
    overflow: hidden;
}

.song-history-group:last-child {
    border-bottom: none;
}

.song-history-art {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(251, 70, 228, 0.3);
}

.song-history {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.song-history-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-history-artist {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.8rem;
    color: var(--color-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Scrolling effect on hover for truncated text */
.song-history-group:hover .song-history-title,
.song-history-group:hover .song-history-artist {
    overflow: visible;
    text-overflow: unset;
}

@media (max-width: 768px) {
    .song-history {
        overflow: hidden;
        max-width: calc(100% - 90px);
    }
}

.song-history-group .like-btn {
    color: var(--color-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s;
}

.song-history-group .like-btn:hover {
    color: #fff;
}

/* --- Volume Control --- */
.volume-control {
    position: relative;
    display: flex;
    align-items: center;
}

#volume {
    z-index: 10;
    position: relative;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
}

#volume:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--color-primary);
}

.volume-slider-wrapper {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 5, 15, 0.95);
    border: 1px solid var(--color-accent);
    border-radius: 4px;
    padding: 0.5rem;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.volume-slider-wrapper::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--color-accent);
}

.volume-control:hover .volume-slider-wrapper,
.volume-slider-wrapper:hover {
    opacity: 1;
    pointer-events: auto;
}

/* Custom vertical slider - rotated horizontal input */
.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    outline: none;
    transform: rotate(-90deg);
    transform-origin: center center;
    margin: 38px 0;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: var(--color-accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 8px var(--color-accent);
    transition: transform 0.15s, box-shadow 0.15s;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 12px var(--color-accent), 0 0 20px rgba(0, 255, 255, 0.4);
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--color-accent);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 8px var(--color-accent);
}

.volume-slider::-webkit-slider-runnable-track {
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    height: 6px;
    border-radius: 3px;
}

.volume-slider::-moz-range-track {
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 3px;
}

.volume-slider::-moz-range-progress {
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    height: 6px;
    border-radius: 3px;
}

/* --- Mobile Volume: horizontal inline --- */
@media (max-width: 768px) {
    .volume-slider-wrapper {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        display: flex;
        align-items: center;
    }

    .volume-slider-wrapper::after {
        display: none;
    }

    .volume-slider {
        transform: none !important;
        margin: 0 !important;
        width: 70px;
        height: 4px;
    }

    .volume-control {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
}

/* --- Active Operators --- */
.ix-operators {
    margin-bottom: 1.5rem;
}

.operators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.operator-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.operator-card:hover {
    border-color: var(--color-accent);
    background: rgba(0, 255, 255, 0.06);
}

.operator-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    object-fit: cover;
}

.operator-avatar-default {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.05);
    color: var(--color-accent);
    font-size: 1.5rem;
}

.operator-name {
    color: var(--text-light);
    font-family: 'Russo One', sans-serif;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.operator-badge {
    font-family: 'Exo 2', monospace;
    font-size: 0.6rem;
    letter-spacing: 2px;
    margin-top: 0.25rem;
}

.operator-badge.badge-active {
    color: #28c840;
}

.operator-badge.badge-new {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .operators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Partners Radio Dial --- */
.ix-partners {
    margin-bottom: 1.5rem;
}

.radio-dial {
    background: linear-gradient(180deg, #0a0a12 0%, #12121f 50%, #0a0a12 100%);
    border: 2px solid #2a2a3a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.5),
        inset 0 -2px 4px rgba(255, 255, 255, 0.02),
        0 4px 20px rgba(0, 0, 0, 0.4);
}

.dial-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(180deg, #1a1a2a 0%, #0f0f1a 100%);
    border-bottom: 1px solid #2a2a3a;
    font-family: 'Russo One', sans-serif;
    font-size: 1rem;
    color: #fff;
    letter-spacing: 3px;
}

.dial-header i {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.dial-window {
    position: relative;
    padding: 0;
    background: linear-gradient(180deg,
        rgba(0, 10, 20, 0.9) 0%,
        rgba(0, 5, 15, 0.95) 50%,
        rgba(0, 10, 20, 0.9) 100%);
    overflow: hidden;
}

/* Fixed center needle */
.dial-needle {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    transform: translateX(-50%);
    background: linear-gradient(180deg,
        var(--color-primary) 0%,
        #fff 50%,
        var(--color-primary) 100%);
    box-shadow:
        0 0 10px var(--color-primary),
        0 0 25px rgba(251, 70, 228, 0.6),
        0 0 50px rgba(251, 70, 228, 0.3);
    z-index: 10;
}

.dial-needle::before,
.dial-needle::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}

.dial-needle::before {
    top: 0;
    border-top: 10px solid var(--color-primary);
}

.dial-needle::after {
    bottom: 0;
    border-bottom: 10px solid var(--color-primary);
}

/* Frequency scale — wrapper clips + holds border, inner track scrolls */
.dial-scale-wrap {
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.dial-scale {
    display: flex;
    width: max-content;
    padding: 0.75rem 0 0.5rem;
    animation: dial-scroll 18s linear infinite;
}

.dial-window:hover .dial-scale {
    animation-play-state: paused;
}

/* Track wrapper — station track animates independently */
.dial-track-wrapper {
    width: max-content;
    animation: dial-scroll 28s linear infinite;
}

.dial-window:hover .dial-track-wrapper {
    animation-play-state: paused;
}

@keyframes dial-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scale-segment {
    display: flex;
    align-items: flex-end;
}

.freq-num {
    font-family: 'Exo 2', monospace;
    font-size: 0.7rem;
    color: var(--color-accent);
    opacity: 0.8;
    min-width: 28px;
    text-align: center;
    padding-bottom: 4px;
}

.tick-group {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    padding: 0 8px;
}

.tick {
    width: 2px;
    height: 12px;
    background: var(--color-accent);
    opacity: 0.5;
    border-radius: 1px;
}

.tick.md {
    height: 8px;
    opacity: 0.35;
}

.tick.sm {
    height: 5px;
    opacity: 0.25;
}

/* Partner stations track */
.dial-track {
    display: flex;
    gap: 5rem;
    padding: 1rem 0 1.25rem;
}

/* Edge fade */
.dial-window::before,
.dial-window::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    z-index: 5;
    pointer-events: none;
}

.dial-window::before {
    left: 0;
    background: linear-gradient(to right, #0a0a12, transparent);
}

.dial-window::after {
    right: 0;
    background: linear-gradient(to left, #0a0a12, transparent);
}

/* Station cards */
.dial-station {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.6rem 1rem;
    min-width: 130px;
    background: rgba(0, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.12);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dial-station:hover {
    background: rgba(0, 255, 255, 0.08);
    border-color: var(--color-accent);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.15);
}

.dial-station i {
    font-size: 1.3rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.dial-station:hover i {
    color: #fff;
    text-shadow: 0 0 15px var(--color-primary);
}

.station-name {
    font-family: 'Russo One', sans-serif;
    font-size: 0.7rem;
    color: #fff;
    text-align: center;
    white-space: nowrap;
}

.dial-subtitle {
    padding: 0.5rem 1rem;
    background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2a 100%);
    border-top: 1px solid #2a2a3a;
    text-align: center;
    font-family: 'Exo 2', monospace;
    font-size: 0.6rem;
    color: var(--color-muted);
    letter-spacing: 2px;
    opacity: 0.6;
}

/* Radio dial responsive */
@media (max-width: 768px) {
    .dial-header {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .freq-num {
        font-size: 0.6rem;
        min-width: 24px;
    }

    .tick-group {
        gap: 4px;
        padding: 0 6px;
    }

    .tick {
        height: 10px;
    }

    .tick.md {
        height: 6px;
    }

    .tick.sm {
        height: 4px;
    }

    .dial-station {
        min-width: 95px;
        padding: 0.5rem 0.85rem;
    }

    .dial-station i {
        font-size: 1.1rem;
    }

    .station-name {
        font-size: 0.6rem;
    }

    .dial-track {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .dial-header {
        font-size: 0.75rem;
        gap: 0.5rem;
    }

    .freq-num {
        font-size: 0.55rem;
        min-width: 20px;
    }

    .tick-group {
        gap: 3px;
        padding: 0 4px;
    }

    .dial-station {
        min-width: 80px;
        padding: 0.4rem 0.6rem;
    }

    .dial-station i {
        font-size: 1rem;
    }

    .station-name {
        font-size: 0.55rem;
    }

    .dial-window::before,
    .dial-window::after {
        width: 10%;
    }
}

/* --- Socials --- */
.ix-socials {
    text-align: center;
    padding: 1.5rem 0;
}

.ix-social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.ix-social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-muted);
    text-decoration: none;
    font-family: 'Exo 2', monospace;
    font-size: 0.7rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.ix-social-link i {
    font-size: 2rem;
    transition: all 0.3s ease;
}

.ix-social-link:hover {
    color: var(--color-accent);
}

.ix-social-link:hover i {
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
}

.ix-social-link[data-brand="discord"]:hover { color: #5865F2; }
.ix-social-link[data-brand="discord"]:hover i { text-shadow: 0 0 15px rgba(88, 101, 242, 0.4); }

/* --- Song Request Form --- */
.ix-request {
    padding: 0 1rem;
    margin-bottom: 1.5rem;
}

.request-form-panel {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 5, 15, 0.9);
    border: 1px solid rgba(251, 70, 228, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.request-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-family: 'Exo 2', monospace;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--color-primary);
    background: rgba(251, 70, 228, 0.1);
    cursor: pointer;
    transition: all 0.2s;
}

.request-toggle:hover {
    background: rgba(251, 70, 228, 0.15);
}

.request-arrow {
    transition: transform 0.3s;
}

.request-form-panel.expanded .request-arrow {
    transform: rotate(180deg);
}

.request-form-body {
    display: none;
    padding: 1rem;
}

.request-form-panel.expanded .request-form-body {
    display: block;
}

.request-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.request-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.request-label {
    font-family: 'Exo 2', monospace;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--color-accent);
}

.request-input {
    padding: 0.6rem 0.75rem;
    font-family: 'Exo 2', monospace;
    font-size: 0.85rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s;
}

.request-input:focus {
    border-color: var(--color-accent);
}

.request-input::placeholder {
    color: rgba(176, 153, 255, 0.5);
}

.btn-request {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
    font-family: 'Exo 2', monospace;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #fff;
    background: transparent;
    border: 1px solid var(--color-primary);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-request:hover:not(:disabled) {
    background: var(--color-primary);
    color: #000;
}

.btn-request:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.request-result {
    margin-top: 0.75rem;
    padding: 0.6rem 0.75rem;
    font-family: 'Exo 2', monospace;
    font-size: 0.8rem;
    border-radius: 2px;
    display: none;
}

.request-result.success {
    display: block;
    background: rgba(0, 255, 128, 0.1);
    border: 1px solid rgba(0, 255, 128, 0.3);
    color: #00ff80;
}

.request-result.error {
    display: block;
    background: rgba(255, 70, 70, 0.1);
    border: 1px solid rgba(255, 70, 70, 0.3);
    color: #ff4646;
}

/* --- Index Responsive --- */
@media (max-width: 768px) {
    .ix-now-playing {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ix-np-art {
        width: 160px;
    }

    .now-playing-details .now-playing-song-title {
        font-size: 1.4rem;
    }

    .ix-grid {
        grid-template-columns: 1fr;
    }

    .controlls {
        justify-content: center;
        gap: 2rem;
    }
}


/* =============================================
   HOME PAGE REDESIGN — home-page styles
   ============================================= */

.home-page {
    background: var(--color-bg-dark);
    color: var(--text-light);
}

/* --- Hero Section --- */
.home-hero {
    position: relative;
    min-height: calc(100svh - var(--header-height, 90px));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #050008 0%, #0a0015 40%, var(--color-bg-dark) 100%);
    /* Make room for the pinned status bar at bottom */
    padding-bottom: 3.5rem;
}

/* Status bar pinned to hero bottom */
.signal-status-bar.hero-ssb {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: none;
    border-top: 1px solid rgba(0, 255, 255, 0.12);
    background: rgba(0, 0, 8, 0.75);
}

/* Side visualizer canvases */
.hero-viz {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: clamp(140px, 18vw, 280px);
    pointer-events: none;
    z-index: 1;
}

.hero-viz-left {
    left: 0;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 55%, transparent 100%);
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 55%, transparent 100%);
}

.hero-viz-right {
    right: 0;
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 55%, transparent 100%);
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 55%, transparent 100%);
}

@media (max-width: 700px) {
    .hero-viz { display: none; }
}

.hero-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.025) 2px,
        rgba(0, 255, 255, 0.025) 4px
    );
    pointer-events: none;
    z-index: 1;
    animation: scanline-scroll 8s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-tag {
    font-family: 'Exo 2', monospace;
    font-size: 0.85rem;
    color: var(--color-accent);
    letter-spacing: 3px;
    opacity: 0.7;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
}

.hero-tagline {
    font-family: 'Exo 2', monospace;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    color: var(--color-muted);
    letter-spacing: 3px;
    opacity: 0.8;
    margin: 0;
}

.hero-descriptor {
    font-family: 'Exo 2', monospace;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(255, 255, 255, 0.55);
    max-width: 560px;
    line-height: 1.7;
    margin: 0;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Exo 2', monospace;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: var(--color-muted);
    border: 1px solid rgba(176, 153, 255, 0.2);
    padding: 0.25rem 0.65rem;
    border-radius: 2px;
    background: rgba(176, 153, 255, 0.05);
}

.hero-feature i {
    font-size: 0.65rem;
    color: var(--color-accent);
    opacity: 0.8;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.9rem 1.9rem;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.08), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-hero:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.25);
    color: #fff;
}

.btn-hero:hover::before {
    transform: translateX(100%);
}

.btn-discord {
    border-color: #5865F2;
    color: #5865F2;
}

.btn-discord:hover {
    background: rgba(88, 101, 242, 0.15);
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.3);
    color: #fff;
}

.btn-register {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-register:hover {
    background: rgba(251, 70, 228, 0.12);
    box-shadow: 0 0 20px rgba(251, 70, 228, 0.25);
    color: #fff;
}

.hero-scroll {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--color-accent);
    font-size: 1.2rem;
    opacity: 0.5;
    animation: hero-bounce 2s ease-in-out infinite;
}

@keyframes hero-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* --- Signal Status Bar --- */
.signal-status-bar {
    background: rgba(0, 5, 15, 0.95);
    border-bottom: 1px solid rgba(0, 255, 255, 0.15);
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.ssb-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.ssb-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    font-family: 'Exo 2', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    border: 1px solid;
}

.ssb-badge.ssb-live {
    border-color: rgba(40, 200, 64, 0.5);
    color: #28c840;
    background: rgba(40, 200, 64, 0.08);
}

.ssb-badge.ssb-auto {
    border-color: rgba(176, 153, 255, 0.3);
    color: var(--color-muted);
    background: transparent;
}

.ssb-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.ssb-badge.ssb-live .ssb-dot {
    animation: fp-pulse 2s ease-in-out infinite;
}

.ssb-dj-name {
    font-family: 'Russo One', sans-serif;
    font-size: 1.05rem;
    color: #fff;
    letter-spacing: 1px;
}

.ssb-listeners {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Exo 2', monospace;
    color: var(--color-accent);
    font-size: 0.95rem;
}

.ssb-listeners-label {
    font-size: 0.75rem;
    color: var(--color-muted);
    letter-spacing: 1px;
    opacity: 0.7;
}

.ssb-request-btn {
    margin-left: auto;
    background: transparent;
    border: 1px solid rgba(251, 70, 228, 0.4);
    color: var(--color-primary);
    font-family: 'Exo 2', monospace;
    font-size: 0.7rem;
    letter-spacing: 2px;
    padding: 0.3rem 0.75rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ssb-request-btn:hover {
    background: rgba(251, 70, 228, 0.1);
    border-color: var(--color-primary);
    color: #fff;
}

/* --- Home Content container --- */
.home-content {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
}

/* --- Schedule --- */
.home-schedule {
    margin-bottom: 2rem;
}

/* --- Get Involved --- */
.home-get-involved {
    margin-bottom: 2rem;
}

.get-involved-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.get-involved-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    text-decoration: none;
}

/* --- Community Pulse --- */
.home-community-pulse {
    margin-bottom: 2rem;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* --- Mobile Responsive --- */
@media (max-width: 900px) {
    .get-involved-grid {
        grid-template-columns: 1fr;
    }

    .community-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero {
        justify-content: center;
    }

    .ssb-inner {
        gap: 0.75rem;
    }

    .ssb-request-btn {
        margin-left: 0;
    }
}













