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

:root {
    --bg-dark: #0a0a0f;
    --bg-card: #14141f;
    --bg-card-hover: #1c1c2e;
    --accent: #e63946;
    --accent-glow: rgba(230, 57, 70, 0.4);
    --text: #f1f1f1;
    --text-dim: #8888aa;
    --header-h: 64px;
    --nav-h: 48px;
    --player-h: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    min-height: 100vh;
    padding-bottom: calc(var(--player-h) + 16px);
}

/* TOPBAR */
.topbar {
    position: sticky;
    top: 0;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 32px;
    background: rgba(10, 10, 15, 0.98);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.75rem;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-social {
    color: var(--text-dim);
    font-size: 0.8rem;
    transition: color 0.2s;
}

.topbar-social:hover {
    color: var(--accent);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-link {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.topbar-link:hover {
    color: var(--text);
}

.lang-switch {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.lang-current:hover {
    color: var(--text);
    border-color: var(--accent);
}

.lang-current .fa-chevron-down {
    font-size: 0.7rem;
}

.lang-list {
    position: absolute;
    top: 100%;
    right: 0;
    margin: 4px 0 0;
    padding: 4px 0;
    list-style: none;
    background: #232a36;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    min-width: 190px;
    max-height: 360px;
    overflow-y: auto;
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.lang-switch:hover .lang-list,
.lang-switch:focus-within .lang-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-list li a {
    display: block;
    padding: 8px 14px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
}

.lang-list li a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.lang-list li a.active {
    color: var(--accent);
    font-weight: 700;
}

.lang-list li a.active::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    font-size: 0.7rem;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--header-h);
    padding: 0 32px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-banner {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    height: 56px;
    max-width: 420px;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.3s;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

.header-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.header-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--accent);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 6px 16px;
    transition: border 0.3s;
}

.search-box:focus-within {
    border-color: var(--accent);
}

.search-box i {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.search-box input {
    background: none;
    border: none;
    outline: none;
    color: var(--text);
    font-size: 0.9rem;
    width: 180px;
    font-family: inherit;
}

.search-box input::placeholder {
    color: var(--text-dim);
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: var(--header-h);
    z-index: 99;
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    height: var(--nav-h);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 32px;
    overflow-x: auto;
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 1100px;
}

.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: color 0.2s, border-bottom 0.2s;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

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

.nav-link.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* HERO */
.hero {
    position: relative;
    height: 420px;
    background: url('../assets/radio.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,15,0.5) 0%, rgba(10,10,15,0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s, box-shadow 0.3s;
}

.hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--accent-glow);
}

/* MAIN */
.main-content {
    padding: 40px 32px;
    max-width: 1100px;
    margin: 0 auto;
}

/* GENRE SECTION */
.genre-section {
    margin-bottom: 50px;
}

.genre-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.genre-title i {
    color: var(--accent);
}

/* RADIO GRID */
.radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 18px;
}

.radio-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
}

.radio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.radio-card.playing {
    box-shadow: 0 0 0 2px var(--accent), 0 12px 40px var(--accent-glow);
}

.card-img {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.radio-card:hover .card-img img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.radio-card:hover .card-overlay {
    opacity: 1;
}

.play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.play-btn:hover {
    transform: scale(1.15);
}

.play-btn i {
    margin-left: 3px;
}

.card-info {
    padding: 12px;
}

.card-info h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.card-info p {
    font-size: 0.72rem;
    color: var(--text-dim);
}

/* STATION RANK LIST */
.station-rank {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.station-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    background: var(--bg-card);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255,255,255,0.05);
}

.station-row:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.station-row.playing {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent);
}

.station-row .row-rank {
    min-width: 34px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dim);
}

.station-row.top-three .row-rank {
    color: var(--accent);
}

.station-row .row-img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg);
}

.station-row .row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.station-row .row-info {
    flex: 1;
    min-width: 0;
}

.station-row .row-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.station-row .row-info p {
    font-size: 0.78rem;
    color: var(--text-dim);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.station-row .row-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.station-row .stat-cell {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.station-row .stat-cell i {
    color: var(--accent);
    font-size: 0.85rem;
}

.station-row .listener-count,
.station-row .total-count,
.station-row .today-count {
    font-weight: 700;
    color: var(--accent);
    min-width: 16px;
    text-align: right;
}

.station-row .listener-count.zero,
.station-row .total-count.zero,
.station-row .today-count.zero {
    color: var(--text-dim);
}

.station-row .row-play .play-btn {
    width: 38px;
    height: 38px;
}

@media (max-width: 480px) {
    .station-row {
        padding: 8px 10px;
        gap: 8px;
    }
    .station-row .row-rank {
        min-width: 20px;
        font-size: 0.9rem;
    }
    .station-row .row-img {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    .station-row .row-info p {
        font-size: 0.7rem;
    }
    .station-row .row-stats {
        gap: 8px;
    }
    .station-row .stat-cell {
        font-size: 0.75rem;
        gap: 4px;
    }
    .station-row .stat-cell i {
        font-size: 0.7rem;
    }
    .station-row .listener-count,
    .station-row .total-count,
    .station-row .today-count {
        font-size: 0.75rem;
        min-width: 12px;
    }
    .station-row .row-play .play-btn {
        width: 30px;
        height: 30px;
    }
}

/* STICKY PLAYER */
.sticky-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--player-h);
    background: rgba(14, 14, 22, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 200;
}

.player-inner {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 24px;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    flex-shrink: 0;
}

.player-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.player-meta {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.player-title {
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-artist {
    font-size: 0.75rem;
    color: var(--text-dim);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.ctrl-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: var(--text);
    border: none;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

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

.play-main {
    width: 44px;
    height: 44px;
    background: var(--accent);
    font-size: 1rem;
}

.play-main:hover {
    background: #c62e3a;
}

.play-main i {
    margin-left: 2px;
}

.play-main.playing i {
    margin-left: 0;
}

/* PROGRESS */
.player-progress-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.time-current, .time-total {
    font-size: 0.7rem;
    color: var(--text-dim);
    font-variant-numeric: tabular-nums;
    min-width: 36px;
    text-align: center;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-bar:hover {
    height: 6px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.3s;
}

/* VOLUME */
.player-volume {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    min-width: 140px;
}

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 90px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
    .topbar {
        padding: 0 16px;
    }

    .topbar-right {
        gap: 12px;
    }

    .topbar-link {
        font-size: 0.7rem;
    }

    .lang-current {
        font-size: 0.7rem;
        padding: 3px 8px;
        gap: 5px;
    }

    .lang-current .lang-current-name {
        max-width: 70px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .header {
        padding: 10px 16px;
    }

    .header-banner {
        display: none;
    }

    .search-box input {
        width: 120px;
    }

    .nav-container {
        padding: 0 12px;
    }

    .nav-link {
        padding: 0 14px;
        font-size: 0.78rem;
    }

    .hero {
        height: 320px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .main-content {
        padding: 24px 16px;
    }

    .radio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .player-progress-wrap,
    .player-volume {
        display: none;
    }

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

    .player-controls {
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .radio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

/* COUNTRY GRID */
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}

.country-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.country-flag {
    width: 100%;
    height: 140px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-name {
    padding: 16px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.country-count {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-weight: 400;
    display: block;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .country-flag {
        height: 100px;
    }

    .country-name {
        font-size: 0.85rem;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .country-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .country-flag {
        height: 80px;
    }

    .country-name {
        font-size: 0.8rem;
        padding: 10px;
    }
}

.coming-soon {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px dashed rgba(255,255,255,0.15);
    border-radius: 16px;
    color: var(--text-dim);
    font-size: 1.05rem;
    text-align: center;
    justify-content: center;
}

.coming-soon i {
    font-size: 1.6rem;
    color: var(--accent);
}

/* TOP 100 LIST */
.top-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: var(--bg-card);
    border-radius: 12px;
    transition: background 0.2s;
}

.top-item:hover {
    background: var(--bg-card-hover);
}

.top-rank {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    min-width: 40px;
    text-align: center;
}

.top-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.top-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.top-artist {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* PODCAST GRID */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.podcast-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
}

.podcast-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.podcast-card .card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.podcast-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.podcast-card:hover .card-img img {
    transform: scale(1.05);
}

/* CONTACT */
.contact-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border 0.3s;
    resize: vertical;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--accent);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
.contact-submit-btn {
    display: block;
    margin: 12px auto 0;
    padding: 7px 18px;
    font-size: 0.75rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
    transition: transform 0.2s, box-shadow 0.3s;
}

.contact-submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--accent-glow);
}

.contact-wrap {
        grid-template-columns: 1fr;
    }
}

/* YOUTUBE PLAYER */
.youtube-player-wrap {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.06);
}

.youtube-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.now-playing-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(255,255,255,0.03);
    font-weight: 600;
    font-size: 0.9rem;
}

.top-item.playing {
    background: var(--bg-card-hover);
    box-shadow: inset 3px 0 0 var(--accent);
}

/* SIDE BANNERS */
.side-ad {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: min(140px, calc((100vw - 1100px) / 2 - 16px));
    display: none;
    text-align: center;
}

.side-ad-left {
    left: 16px;
}

.side-ad-right {
    right: 16px;
}

.side-ad-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.side-ad-box {
    position: relative;
    aspect-ratio: 1 / 3;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: var(--bg-card);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.side-ad-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.side-ad-box a {
    display: block;
    height: 100%;
}

.side-ad-box .side-ad-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(160deg, rgba(10,10,15,0.35), rgba(10,10,15,0.85));
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    padding: 12px;
}

.side-ad-box .side-ad-text i {
    font-size: 1.6rem;
    color: var(--accent);
}

.side-ad-box .side-ad-text span {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.8;
}

@media (min-width: 1280px) {
    .side-ad {
        display: block;
    }
}

/* SITE FOOTER */
.site-footer-bottom {
    background: rgba(10, 10, 15, 0.98);
    border-top: 1px solid rgba(255,255,255,0.04);
    text-align: center;
    padding: 14px 20px;
    font-size: 0.72rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.site-footer-bottom .footer-brand {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}

.footer-apps {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-apps-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
}

.footer-apps-badges {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-apps-badges img {
    height: 44px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.3s;
}

.footer-apps-badges a:hover img {
    transform: scale(1.05);
    box-shadow: 0 0 16px var(--accent-glow);
}

/* ===== KONTAKTFORMULAR (Dodadi radio) ===== */
.kf-form {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px;
    max-width: 820px;
    margin: 0 auto;
}

.kf-alert {
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 22px;
    font-size: 0.9rem;
}

.kf-alert-ok {
    background: rgba(76,175,80,0.12);
    color: #4caf50;
    border: 1px solid rgba(76,175,80,0.35);
}

.kf-alert-error {
    background: rgba(229,57,53,0.12);
    color: #e53935;
    border: 1px solid rgba(229,57,53,0.35);
}

.kontaktformular {
    display: block;
}

.kf-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 18px;
    gap: 18px;
}

.kf-col {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 0;
    min-width: 0;
    position: relative;
}

.kf-col-8 {
    flex-basis: 100%;
    flex: 1 1 100%;
}

.kf-col-4 {
    flex-basis: calc(50% - 9px);
    flex: 1 1 calc(50% - 9px);
}

.kf-label {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card-hover);
    border: 1px solid rgba(255,255,255,0.08);
    border-right: none;
    border-radius: 10px 0 0 10px;
    color: var(--accent);
    font-size: 0.95rem;
}

.kf-field {
    background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0 10px 10px 0;
    padding: 10px 14px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
    box-shadow: 0 0 1px rgba(0,0,0,0.4);
    min-height: 42px;
}

textarea.kf-field {
    border-radius: 10px;
    resize: vertical;
}

.kf-field:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.kf-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M0 0l5 6 5-6z' fill='%238888aa'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 32px;
    cursor: pointer;
}

.kf-select option {
    background: var(--bg-card);
    color: var(--text);
}

.kf-info {
    width: 100%;
    background: var(--bg-card-hover);
    border: 1px solid rgba(230,57,70,0.25);
    border-left: 4px solid var(--accent);
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.kf-info p {
    color: var(--text-dim);
    margin-top: 8px;
}

.kf-upload-row .kf-col {
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.kf-upload-row input[type="file"] {
    color: var(--text-dim);
    font-size: 0.8rem;
    max-width: 100%;
}

.kf-upload-row input[type="file"]::file-selector-button {
    background: var(--bg-card-hover);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 8px 14px;
    margin-right: 10px;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s;
}

.kf-upload-row input[type="file"]::file-selector-button:hover {
    border-color: var(--accent);
}

.kf-captcha-row .kf-col {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.kf-captcha {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.kf-captcha img {
    height: 48px;
    width: 170px;
    border-radius: 10px;
    display: block;
}

.kf-captcha-reload {
    color: var(--text-dim);
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s, transform 0.3s;
}

.kf-captcha-reload:hover {
    color: var(--accent);
    transform: rotate(180deg);
}

.kf-hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 28px 0 24px;
}

.kf-btn {
    display: block;
    margin: 0 auto;
    padding: 13px 34px;
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--accent), #ff5a5f);
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-family: inherit;
    transition: transform 0.2s, box-shadow 0.3s;
}

.kf-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 24px var(--accent-glow);
}

.kf-row#send p {
    color: var(--text-dim);
    font-size: 0.85rem;
}

@media (max-width: 640px) {
    .kf-col-4 {
        flex-basis: 100%;
        flex: 1 1 100%;
    }
    .kf-form {
        padding: 18px;
    }
}

/* SHARE */
.card-overlay {
    gap: 12px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
    backdrop-filter: blur(4px);
}

.share-btn:hover {
    transform: scale(1.12);
    background: rgba(255,255,255,0.32);
}

.station-row .row-play {
    display: flex;
    align-items: center;
    gap: 8px;
}

.station-row .row-play .share-btn {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.16);
    color: var(--text-dim);
    backdrop-filter: none;
}

.station-row:hover .row-play .share-btn {
    background: var(--bg-card-hover);
    color: #cfcfd8;
}

@media (max-width: 480px) {
    .station-row .row-play .share-btn {
        width: 30px;
        height: 30px;
    }
}

/* SHARE MODAL */
.share-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

.share-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.share-modal {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    max-width: 380px;
    width: 100%;
    padding: 20px;
    transform: translateY(12px);
    transition: transform 0.25s;
    max-height: 90vh;
    overflow-y: auto;
}

.share-modal-overlay.open .share-modal {
    transform: translateY(0);
}

.share-modal-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.share-modal-head img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 10px;
    background: #222;
}

.share-modal-head h3 {
    margin: 0 0 2px;
    font-size: 0.95rem;
}

.share-modal-head p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-dim);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
}

.share-modal-close {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
}

.share-modal-close:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.share-socials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.share-social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 10px;
    border: none;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.15s;
}

.share-social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.share-social-btn i {
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.share-copy {
    display: flex;
    gap: 8px;
}

.share-copy input {
    flex: 1;
    min-width: 0;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: #eee;
    border-radius: 8px;
    padding: 9px 10px;
    font-size: 0.8rem;
    outline: none;
}

.share-copy-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

.share-copy-btn:hover {
    opacity: 0.9;
}

/* COOKIE BANNER */
.footer-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.footer-menu a {
    color: var(--text-dim);
    font-size: 0.8rem;
    text-decoration: underline;
}

.footer-menu a:hover {
    color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: calc(var(--player-h) + 12px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 300;
    max-width: 560px;
    width: calc(100% - 24px);
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: cookieFadeIn 0.4s ease;
}

@keyframes cookieFadeIn {
    from { opacity: 0; transform: translate(-50%, 8px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner-text {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-dim);
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-banner-more {
    color: var(--accent);
    font-size: 0.8rem;
    text-decoration: underline;
    margin-right: auto;
}

.cookie-banner-more:hover {
    opacity: 0.85;
}

.cookie-banner-btn {
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

.cookie-banner-accept {
    background: var(--accent);
    color: #fff;
}

.cookie-banner-accept:hover {
    opacity: 0.9;
}

.cookie-banner-reject {
    background: rgba(255,255,255,0.1);
    color: #ddd;
}

.cookie-banner-reject:hover {
    background: rgba(255,255,255,0.2);
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: calc(var(--player-h) + 8px);
    }
}
