/* ===== FM Station - Custom Styles ===== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;600;700;800&family=Roboto+Condensed:wght@400;700&display=swap');

:root {
    --primary: #00a8ff;
    --primary-2: #00d4ff;
    --primary-deep: #0051ff;
    --primary-rgb: 0, 168, 255;
    --primary2-rgb: 0, 212, 255;
    --bg: #1a1a2e;
    --surface: #16213e;
    --bg-deep: #0f0c29;
    --surface-2: #302b63;
    --surface-3: #24243e;
    --bg-deep-rgb: 15, 12, 41;
    --surface2-rgb: 48, 43, 99;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    background: linear-gradient(-45deg, var(--bg-deep), var(--surface-2), var(--surface-3), var(--primary));
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
    overflow-x: hidden;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes letBounceBaby {
    0% { transform: scale(0.98); }
    20% { transform: scale(1); }
    40% { transform: scale(0.96); }
    60% { transform: scale(1); }
    80% { transform: scale(0.96); }
    100% { transform: scale(0.98); }
}

@keyframes flash {
    from { color: #d9534f; }
    to { color: #fff; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== Hero Section ===== */
.main_header {
    background: linear-gradient(135deg, var(--bg-deep) 0%, var(--surface-2) 50%, var(--surface-3) 100%);
    width: 100%;
    height: 700px;
    padding: 50px;
    overflow: hidden;
    position: relative;
}

.main_header .row,
.main_header [class*="col-"] {
    position: static;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hero-logo {
    max-width: 320px;
    max-height: 320px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(var(--primary-rgb), 0.45));
    animation: letBounceBaby 2s ease infinite;
}

.navbar-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.logo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(var(--primary-rgb), 0.5), 0 0 120px rgba(var(--primary-rgb), 0.2);
    animation: letBounceBaby 2s ease infinite;
}

.logo-inner {
    text-align: center;
    color: #fff;
}

.logo-fm {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.logo-station {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 8px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-marquee {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    z-index: 10;
    overflow: hidden;
}

.header-title {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    text-shadow: 1px 1px 4px #000;
    white-space: nowrap;
    animation: scrollText 15s linear infinite;
}

@keyframes scrollText {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ===== Fluid Container ===== */
.fluid-container {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%230f0c29" width="100" height="100" opacity="0.05"/></svg>');
    background-size: cover;
    background-attachment: fixed;
}

.container {
    max-width: 1300px;
}

/* ===== Cards ===== */
.card {
    background: linear-gradient(135deg, rgba(var(--bg-deep-rgb), 0.95), rgba(var(--surface2-rgb), 0.95));
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 12px;
    padding: 0;
    margin-bottom: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(var(--primary-rgb), 0.2);
}

.card-body {
    padding: 15px !important;
}

.card-header {
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.3), transparent);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.2);
    padding: 15px;
}

.card-header h2 {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-weight: 800;
    margin-bottom: 0;
    text-shadow: 0 0 5px rgba(var(--primary-rgb), 0.5);
}

/* ===== Navbar ===== */
.navbar {
    background: rgba(var(--bg-deep-rgb), 0.95);
    backdrop-filter: blur(10px);
    padding: 8px !important;
    z-index: 99;
    border-bottom: 2px solid rgba(var(--primary-rgb), 0.3);
}

.navbar-nav li {
    padding: 0 5px;
}

.nav-item a {
    font-size: 15px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 12px 15px !important;
    transition: all 0.3s ease;
    color: #fff;
    border-radius: 5px;
}

.nav-item a:hover, .nav-item.active a {
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.3), rgba(var(--primary-rgb), 0.1));
    color: var(--primary-2);
}

.nav-item a i {
    margin-right: 5px;
}

.navbar-toggler {
    background: rgba(var(--primary-rgb), 0.2) !important;
    border: 1px solid rgba(var(--primary-rgb), 0.5) !important;
    color: #fff !important;
}

.navbar-toggler i {
    color: #fff;
}

/* ===== No Gutter ===== */
.no-gutter.row {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-top: 0;
}

.no-gutter > [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}

/* ===== Banner Slider ===== */
.banner-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface);
    height: 350px;
    width: 100%;
    margin: 20px 0;
}

.banner-slider .banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    visibility: hidden;
}

.banner-slider .banner-slide.active {
    opacity: 1;
    visibility: visible;
}

.banner-slider .banner-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-slider .banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.banner-slider-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 5;
}

.banner-slider-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.banner-slider-dots .dot.active {
    background: var(--primary);
}

/* ===== Now Playing Banner ===== */
.now-playing-banner .card-body {
    padding: 0 !important;
}

.album-bg {
    background: url("uploads/album/default-album.png") center / cover no-repeat;
    background-color: var(--surface);
    overflow: hidden;
    position: relative;
    height: 200px;
    border-radius: 12px;
}

.now-playing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(var(--bg-deep-rgb), 0.9) 0%, rgba(var(--bg-deep-rgb), 0.5) 50%, transparent 100%);
    display: flex;
    align-items: center;
}

.np-content {
    padding: 25px;
}

.np-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--primary-deep));
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: pulse 2s ease infinite;
    margin-bottom: 10px;
}

.np-badge i {
    margin-right: 5px;
}

.np-song {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.np-artist {
    color: var(--primary-2);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

/* ===== Player Card ===== */
.player-card {
    text-align: center;
}

.player-wrapper {
    padding: 10px;
}

.player-cover {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(var(--primary-rgb), 0.5);
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.3);
    animation: spin 8s linear infinite;
    animation-play-state: paused;
}

.player-cover.playing {
    animation-play-state: running;
}

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

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

.player-info {
    margin-bottom: 15px;
}

.player-artist {
    color: var(--primary-2);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.player-title {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
}

.player-controls {
    margin-bottom: 15px;
}

.btn-player {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-play {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.4);
}

.btn-play:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(var(--primary-rgb), 0.6);
}

.btn-stop {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 65, 108, 0.4);
}

.btn-stop:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 65, 108, 0.6);
}

.volume-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.volume-control i {
    color: var(--primary);
}

.slider {
    -webkit-appearance: none;
    width: 120px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.2);
    outline: none;
    transition: opacity 0.2s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.5);
}

.slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
}

.listeners-badge {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    background: rgba(var(--primary-rgb), 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

.listeners-badge i {
    color: var(--primary);
    margin-right: 3px;
}

/* ===== Time / Clock ===== */
.time-frame {
    color: #fff;
    width: 100%;
    text-align: center;
}

#date-part {
    font-size: 1.2em;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    opacity: 0.8;
}

#time-part {
    font-size: 2.8em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-2);
    text-shadow: 0 0 20px rgba(var(--primary2-rgb), 0.5);
}

/* ===== Schedule ===== */
.schedule-header {
    margin-bottom: 15px;
}

.section-title {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-weight: 800;
    margin-bottom: 0;
    text-shadow: 0 0 5px rgba(var(--primary-rgb), 0.5);
}

.schedule-list {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 5px;
}

.schedule-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.schedule-item.active {
    background: rgba(var(--primary-rgb), 0.15);
    border-left: 3px solid var(--primary);
}

.schedule-time {
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    min-width: 140px;
    font-family: 'Montserrat', sans-serif;
}

.schedule-details {
    flex: 1;
}

.schedule-details h4 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    margin-bottom: 2px;
}

.schedule-details p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 0;
}

.schedule-status {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-status.live {
    background: #28a745;
    color: #fff;
    animation: pulse 1.5s ease infinite;
}

.schedule-status.upcoming {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.schedule-list::-webkit-scrollbar {
    width: 6px;
}

.schedule-list::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgb), 0.3);
    border-radius: 3px;
}

/* ===== DJ Card ===== */
.dj-card {
    padding: 0 !important;
}

.dj-profile {
    text-align: center;
    padding: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><circle fill="%2300a8ff" cx="100" cy="100" r="80" opacity="0.05"/></svg>') repeat;
    background-size: 200px;
}

.dj-image-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
}

.dj-profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid rgba(var(--primary-rgb), 0.5);
    object-fit: cover;
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.3);
}

.live-badge {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.flash-dot {
    animation: flash 1s linear infinite;
}

.ob-djname {
    display: block;
    color: #fff !important;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    font-size: 1.5rem;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 5px;
}

.ob-djprog {
    display: block;
    font-size: 12px;
    color: var(--primary-2) !important;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

/* ===== Recent Tracks ===== */
.track-item {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 8px;
    background: rgba(255, 100, 50, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.track-item:hover {
    background: rgba(255, 100, 50, 0.25);
    transform: translateX(5px);
}

.track-item.now {
    background: linear-gradient(90deg, rgba(253, 117, 48, 0.4), rgba(253, 117, 48, 0.1));
    border-left: 3px solid #fd7530;
    animation: pulse 2s ease infinite;
}

.track-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: rgba(253, 117, 48, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fd7530;
    font-size: 12px;
    margin-right: 10px;
    flex-shrink: 0;
}

.track-item.now .track-icon {
    background: #fd7530;
    color: #fff;
}

.track-info {
    flex: 1;
    min-width: 0;
}

.track-title {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-artist {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#recent-tracks::-webkit-scrollbar {
    width: 6px;
}

#recent-tracks::-webkit-scrollbar-thumb {
    background: rgba(253, 117, 48, 0.3);
    border-radius: 3px;
}

/* ===== Chat ===== */
.chat-card {
    padding: 0 !important;
}

.chat-container {
    display: flex;
    flex-direction: column;
    height: 530px;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.chat-message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    max-width: 80%;
}

.chat-message.user {
    background: rgba(var(--primary-rgb), 0.2);
    margin-left: auto;
    border-bottom-right-radius: 2px;
}

.chat-message.other {
    background: rgba(255, 255, 255, 0.08);
    border-bottom-left-radius: 2px;
}

.chat-message.system {
    background: rgba(255, 165, 0, 0.15);
    max-width: 100%;
    text-align: center;
    border-radius: 8px;
}

.chat-system-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-style: italic;
}

.chat-username {
    color: var(--primary-2);
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 2px;
    display: block;
}

.chat-text {
    color: #fff;
    font-size: 0.85rem;
    word-wrap: break-word;
}

.chat-time {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.65rem;
    display: block;
    margin-top: 3px;
}

.chat-input-area {
    display: flex;
    padding: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 8px 18px;
    color: #fff;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s;
}

.chat-input:focus {
    border-color: var(--primary);
}

.chat-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-chat-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    margin-left: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-chat-send:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.4);
}

.chat-card {
    position: relative;
}

.chat-auth {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--bg-deep-rgb), 0.98), rgba(var(--surface2-rgb), 0.98));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    z-index: 5;
    text-align: center;
}

.chat-auth-head i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.chat-auth-head h4 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 4px;
}

.chat-auth-head p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    margin-bottom: 18px;
}

.chat-auth-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.06);
    padding: 4px;
    border-radius: 25px;
}

.chat-auth-tab {
    padding: 7px 22px;
    border-radius: 20px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.chat-auth-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
}

.chat-auth-form {
    width: 100%;
    max-width: 300px;
}

.chat-auth-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 9px 14px;
    color: #fff;
    font-size: 0.85rem;
    margin-bottom: 9px;
    outline: none;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.chat-auth-input:focus {
    border-color: var(--primary);
}

.chat-auth-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.chat-auth-btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.2s, box-shadow 0.3s;
}

.chat-auth-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.4);
}

.chat-auth-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    margin: 16px 0 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chat-auth-divider::before,
.chat-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.chat-auth-friendstag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 300px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.chat-auth-friendstag:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    color: #fff;
    text-decoration: none;
}

.chat-auth-msg {
    margin-top: 12px;
    font-size: 0.8rem;
    display: none;
    padding: 7px 12px;
    border-radius: 8px;
}

.chat-auth-msg.error {
    background: rgba(239, 68, 68, 0.15);
    color: #ff7b8c;
}

.chat-auth-msg.success {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.chat-user-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary-2);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    max-width: 110px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex-shrink: 0;
}

.btn-chat-logout {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.15);
    color: #ff7b8c;
    font-size: 0.95rem;
    cursor: pointer;
    margin-left: 6px;
    flex-shrink: 0;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-chat-logout:hover {
    background: #ef4444;
    color: #fff;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgb), 0.3);
    border-radius: 3px;
}

/* ===== Social Card ===== */
.social-card {
    padding: 15px !important;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 15px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 0.7rem;
    font-weight: 600;
}

.social-link i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.social-link.facebook { background: rgba(66, 103, 178, 0.3); }
.social-link.facebook:hover { background: #4267B2; }
.social-link.twitter { background: rgba(29, 161, 242, 0.3); }
.social-link.twitter:hover { background: #1DA1F2; }
.social-link.instagram { background: rgba(225, 48, 108, 0.3); }
.social-link.instagram:hover { background: #E1306C; }
.social-link.youtube { background: rgba(255, 0, 0, 0.3); }
.social-link.youtube:hover { background: #FF0000; }

.social-feed {
    max-height: 350px;
    overflow-y: auto;
}

.feed-item {
    display: flex;
    padding: 10px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feed-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.feed-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-right: 10px;
    flex-shrink: 0;
}

.feed-content {
    flex: 1;
    min-width: 0;
}

.feed-text {
    color: #fff;
    font-size: 0.8rem;
    margin-bottom: 3px;
}

.feed-time {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
}

.feed-time i {
    margin-right: 3px;
}

.social-feed::-webkit-scrollbar {
    width: 6px;
}

.social-feed::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgb), 0.3);
    border-radius: 3px;
}

/* ===== Sponsor Slider ===== */
.sponsor-slider {
    overflow: hidden;
    padding: 10px 0;
}

.sponsor-track {
    display: flex;
    animation: sponsorScroll 20s linear infinite;
}

.sponsor-item {
    flex-shrink: 0;
    padding: 15px 40px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sponsor-item i {
    color: var(--primary);
    font-size: 1.5rem;
}

@keyframes sponsorScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Footer ===== */
.footer {
    color: #fff;
    padding: 50px 0 30px;
    background: rgba(var(--bg-deep-rgb), 0.95);
    border-top: 2px solid rgba(var(--primary-rgb), 0.3);
}

.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(var(--primary-rgb), 0.5);
    color: var(--primary-2);
}

.footer p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer p i {
    margin-right: 8px;
    color: var(--primary);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.4);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 0;
}

.footer a {
    color: var(--primary-2);
    transition: color 0.3s;
}

.footer a:hover {
    color: #fff;
    text-decoration: none;
}

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

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--primary-deep));
    border-radius: 4px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .main_header {
        height: 350px;
        padding: 20px;
    }

    .logo {
        width: 180px;
        height: 180px;
    }

    .logo-fm {
        font-size: 3.5rem;
    }

    .logo-station {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }

    .hero-marquee {
        bottom: 30px;
    }

    .header-title {
        font-size: 1rem;
    }

    #time-part {
        font-size: 2em;
    }

    .np-song {
        font-size: 1.3rem;
    }

    .chat-container {
        height: 350px;
    }

    .social-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .logo {
        width: 140px;
        height: 140px;
    }

    .logo-fm {
        font-size: 2.8rem;
    }

    .logo-station {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .main_header {
        height: 280px;
    }
}
