@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:700,400&subset=latin,cyrillic);
@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700&subset=latin,cyrillic);
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Condensed&subset=latin,cyrillic);
@import url(https://fonts.googleapis.com/css?family=Comfortaa:400,700,300&subset=latin,cyrillic);
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Tahoma, Verdana, Helvetica, sans-serif;
}

:root {
    --primary-color: #6366f1; 
    --accent-color: #ff4757;  
    --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    --card-bg: rgba(255, 255, 255, 0.85);
    --text-main: #1e293b;
    --text-muted: #64748b;
    --nav-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

body {
    background: var(--bg-gradient);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
 
}


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--nav-shadow);
   z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
width: 293px;
float: left;
background: url(logo-26.png);
height:80px;
}

.logo span {
    color: var(--primary-color);
}

.logo .material-icons-round {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
   background: rgba(0, 0, 0, 0.11);
 ///background: #000000;
    padding: 10px;
    border-radius: 30px;
}

.nav-menu a {
font-family: "Roboto Condensed", Arial;
    text-decoration: none;
    color: #000;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 19px;
    font-weight: 500;
    transition: all 0.5s ease;
}


.nav-menu a:hover, .nav-menu a.active {
    background: #000;
    color: #FFCC6C;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-live {
    background: var(--text-main);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

.btn-live:hover {
    transform: scale(1.03);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}


.main-content {
    margin-top: 120px;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.player-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 32px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--card-shadow);
    text-align: center;
}

.now-playing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.album-art {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

.play-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.play-overlay .material-icons-round {
    font-size: 40px;
    animation: bounce 1.2s infinite alternate;
}

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

.track-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
    
    margin-top: 8px;
}

.artist-name {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 8px;
}

.badge {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}


.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.btn-icon {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 28px;
    transition: color 0.2s;
}

.btn-icon:hover {
    color: var(--text-main);
}

.btn-play {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    transition: transform 0.2s, background 0.2s;
}

.btn-play:hover {
    transform: scale(1.05);
    background: #4f46e5;
}

.btn-play .material-icons-round {
    font-size: 32px;
}


.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: var(--text-muted);
}

.volume-slider {
    -webkit-appearance: none;
    width: 60%;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    transition: transform 0.1s;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}
.mmenu{
        font-size: 20px;
    }
    .c1_badge{
display:block;
background-color: #069;
height:40px;
font-weight:bold;
line-height:36px;
font-size:12px;
 border-radius: 10px;
font-family: Arial;
color: #fff;
text-align: center;
text-shadow: 1px 1px 1px #1a1a1a;
width: 100%;
    max-width: 570px;
cursor:pointer;
}
.section-card2 {
    
    display:none;
}
.section-card3 {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--card-shadow);
    display:block;
}
/* Анимации */
@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-5px); }
}


@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    .nav-menu {
        overflow-x: auto;
        width: 100%;
        justify-content: flex-start;
        white-space: nowrap;
    }
    .btn-live {
        width: 100%;
        justify-content: center;
    }
    .mmenu{
        font-size: 20px;
    }
    .section-card2{
        display:block;
        background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--card-shadow);
    }
    .section-card3{
        display: none;
    }
}

.dashboard-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.2fr 1fr; 
    gap: 24px;
    width: 100%;
    align-items: flex-start; 
}
.main-left-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    min-width: 0;  
    overflow: hidden; 
}
.sidebar-right-column {
    display: flex;
    flex-direction: column;
    gap: 24px; 
    width: 100%;
}
.main-player-hero, 
.promo-banner, 
.top40-widget, 
.message-widget {
    grid-column: auto !important; 
    width: 100%;
}

.section-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--card-shadow);
}


.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.view-all {
    font-size: 13px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}


.banner-hit-day {
    grid-column: 1 / 2; 
    position: relative;
    height: 320px;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 30%, rgba(15, 23, 42, 0.3) 70%);
    z-index: 1;
}

.banner-bg-img {
    position: absolute;
    top: 0; right: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.badge-accent {
    background: var(--accent-color);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hit-title {
    font-size: 38px;
    font-weight: 800;
    margin: 15px 0 5px 0;
}

.hit-artist {
    color: #cbd5e1;
    font-size: 18px;
    margin-bottom: 25px;
}

.btn-play-hit {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

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


.top40-widget {
    grid-column: 2 / 3; 
}

.top-tracks-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.track-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px;
    border-radius: 16px;
    transition: background 0.2s;
}

.track-row:hover { background: rgba(0, 0, 0, 0.02); }

.track-number {
    font-size: 16px;
    font-weight: 700;
    width: 24px;
    color: var(--text-muted);
}

.track-number.rank-1 { color: var(--accent-color); }

.mini-cover {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
}

.track-details h4 { font-size: 14px; font-weight: 600; }
.track-details p { font-size: 12px; color: var(--text-muted); }


.request-widget {
    grid-column: 2 / 3; 
}

.section-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

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

.request-form input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.7);
    outline: none;
    font-size: 14px;
    transition: border 0.2s;
}

.request-form input:focus {
    border-color: var(--primary-color);
}
.btn-submit-message {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}
.btn-submit-message:hover { opacity: 0.9; }
.btn-submit-request {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-submit-request:hover { opacity: 0.9; }


.full-width-player {
    grid-column: 1 / 3;
    margin-top: 10px;
}

.player-card-modern {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 28px;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--card-shadow);
}

.player-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.album-art-live {
    position: relative;
    width: 64px;
    height: 64px;
}

.album-art-live img {
    width: 100%; height: 100%; border-radius: 14px; object-fit: cover;
}

.live-badge {
    position: absolute;
    bottom: -5px; right: -5px;
    background: var(--accent-color);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 6px;
}

.live-title { font-size: 18px; font-weight: 700; }
.live-artist { color: var(--text-muted); font-size: 14px; }

.player-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

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

.p-btn {
    background: none; border: none; color: var(--text-muted); cursor: pointer;
}

.p-btn-play {
    background: var(--primary-color);
    color: #fff; border: none;
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.stream-status {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 6px; height: 6px; background: #10b981; border-radius: 50%;
}


@media (max-width: 761px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .main-left-column, 
    .sidebar-right-column {
        gap: 20px;
    }
    .banner-hit-day, .top40-widget, .request-widget, .full-width-player {
        grid-column: 1 / 2;
    }
    .player-card-modern {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .player-left {
        flex-direction: column;
    }
}

.dashboard-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    width: 100%;
}


.main-player-hero {
    grid-column: 1 / 2;
    position: relative;
    height: 340px;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.player-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.85) 40%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 1;
}

.player-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
}

.live-badge-hero {
    background: rgba(255, 71, 87, 0.2);
    border: 1px solid var(--accent-color);
    color: #ff4757;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
}

.pulse-dot {
    width: 8px; height: 8px; background: var(--accent-color);
    border-radius: 50%; animation: pulse 1.5s infinite;
}

.hero-track-title { font-size: 40px; font-weight: 800; line-height: 1.1; }
.hero-artist-name { color: #ffffff; font-size: 18px; margin: 4px 0 20px 0; }

.hero-controls {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hero-btn-play {
    background: var(--primary-color);
    color: #fff; border: none;
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    cursor: pointer; box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
    transition: transform 0.2s;
}
.hero-btn-play:hover { transform: scale(1.05); }
.hero-btn-play .material-icons-round { font-size: 32px; }

.hero-volume { display: flex; align-items: center; gap: 10px; color: #94a3b8; }
.hero-volume-slider {
    -webkit-appearance: none; width: 120px; height: 4px; 
    background: rgba(255,255,255,0.2); border-radius: 2px; outline: none;
}
.hero-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none; width: 12px; height: 12px;
    border-radius: 50%; background: #fff; cursor: pointer;
}


.promo-banner {
    grid-column: 1 / 2; 
    position: relative;
    height: 130px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    text-decoration: none;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.promo-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.vote-banner {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.request-banner {
    background: linear-gradient(135deg, #1e1b4b 0%, #311042 100%);
}

.banner-overlay-dark {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.promo-content { position: relative; z-index: 2; color: #fff; }
.promo-content h2 { font-size: 22px; font-weight: 700; margin: 6px 0 2px 0; }
.promo-content p { color: rgba(255,255,255,0.8); font-size: 14px; }

.promo-tag {
    font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 8px; letter-spacing: 0.5px;
}
.tag-purple { background: rgba(255,255,255,0.2); color: #fff; }
.tag-red { background: var(--accent-color); color: #fff; }

.promo-arrow {
    position: relative; z-index: 2; color: #fff; font-size: 32px; opacity: 0.8;
}

.request-form textarea {
    width: 100%; padding: 12px 16px; border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08); background: rgba(255,255,255,0.7);
    outline: none; font-size: 14px; resize: none; font-family: inherit;
}
.request-form textarea:focus { border-color: var(--primary-color); }


.menu-toggle {
    display: none; background: none; border: none;
    color: var(--text-main); cursor: pointer;
}


@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr; 
    }
    
    .main-player-hero, .top40-widget, .promo-banner, .message-widget {
        grid-column: 1 / -1;
    }

    .main-player-hero { height: 28px; padding: 25px; height: auto; min-height: 280px; }
    .hero-track-title { font-size: 28px; }

    
    .menu-toggle { display: block; }

    
    .nav-menu {
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 12px;
        border-radius: 0 0 24px 24px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        display: none; 
    }


    .nav-menu.open {
        display: flex;
    }

    .nav-menu a {
        width: 100%; text-align: center; display: block; padding: 12px;
    }

    .nav-actions { display: none; } 
}

.top40-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}


.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    margin-top: 20px;
}

.chart-badge {
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 1px;
}

.chart-header h1 {
    font-size: 46px;
    font-weight: 800;
    margin: 10px 0 4px 0;
    color: var(--text-main);
}

.chart-update {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.btn-play-chart {
    background: var(--text-main);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s;
}
.btn-play-chart:hover { transform: scale(1.03); }


.podium-section {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 50px;
}

.podium-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    flex: 1;
    position: relative;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.podium-card img {
    width: 100%;
    max-width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}


.podium-card.rank-1 {
    padding: 35px 24px;
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-15px); /* Леко повдигната */
}
.podium-card.rank-1 img {
    max-width: 170px;
    height: 170px;
}

.podium-badge {
    position: absolute;
    top: -15px; left: 50%;
    transform: translateX(-50%);
    width: 34px; height: 34px;
    border-radius: 50%;
    color: #fff; font-weight: 800;
    display: flex; justify-content: center; align-items: center;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.rank-1 .podium-badge { background: #f59e0b; } /* Злато */
.rank-2 .podium-badge { background: #94a3b8; } /* Сребро */
.rank-3 .podium-badge { background: #b45309; } /* Бронз */

.podium-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.podium-card p { color: var(--text-muted); font-size: 13px; margin-bottom: 12px; }


.trend {
    font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 20px;
}
.trend.up { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.trend.down { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.trend.new { background: rgba(99, 102, 241, 0.1); color: var(--primary-color); }


.chart-list-card {
    background: var(--card-bg);
    border-radius: 28px;
    padding: 10px 20px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255,255,255,0.5);
}

.chart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    transition: background 0.2s, transform 0.2s;
    border-radius: 16px;
}
.chart-item:last-child { border-bottom: none; }
.chart-item:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.01);
}

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

.item-position {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-muted);
    width: 28px;
    text-align: center;
}

.item-trend { display: flex; align-items: center; }
.item-trend .material-icons-round { font-size: 16px; }
.item-trend.up { color: #10b981; }
.item-trend.down { color: #ef4444; }

.chart-item-cover {
    width: 72px; height: 72px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.item-details { display: flex; flex-direction: column; }
.track-name { font-size: 15px; font-weight: 700; color: var(--text-main); }
.item-details .artist-name { font-size: 13px; color: var(--text-muted); font-weight: 500; }

.item-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.weeks-in-chart {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}


.btn-item-play, .btn-item-request {
    background: rgba(0, 0, 0, 0.03);
    border: none; width: 36px; height: 36px;
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    color: var(--text-main); cursor: pointer; text-decoration: none;
    transition: all 0.2s;
}
.btn-item-play:hover { background: var(--primary-color); color: #fff; }
.btn-item-request:hover { background: var(--accent-color); color: #fff; }


@media (max-width: 768px) {
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .btn-play-chart { width: 100%; justify-content: center; }

    
    .podium-section {
        flex-direction: column;
        align-items: stretch;
    }
    .podium-card.rank-1 {
        transform: none; 
        order: -1; 
    }
    .podium-card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 15px;
        padding: 15px;
    }
    .podium-card img, .podium-card.rank-1 img {
        width: 60px; height: 60px; margin-bottom: 0;
    }
    .podium-badge {
        left: 20px; top: 50%; transform: translateY(-50%);
        position: relative; margin-right: -10px;
    }
    .trend { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); }

   
    .weeks-in-chart { display: none; }
}
/* Контейнер */
.request-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.request-header {
     margin-top: 20px;
    margin-bottom: 40px;
     max-width: 800px;
}

.badge-red {
    background: var(--accent-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
}

.request-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.request-header p {
    color: #000;
    font-size: 15px;
    max-width: 800px;
   margin: 10px 0px auto;
    line-height: 24px;
    text-align: justify;
}


.song-search-bar {
    background: #fff;
    border-radius: 30px;
    padding: 6px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin: 0 auto;
    margin-top: 20px;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.song-search-bar:focus-within {
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
}

.search-icon { color: var(--text-muted); }

.song-search-bar input {
    border: none;
    background: none;
    width: 100%;
    padding: 10px 0;
    font-size: 15px;
    outline: none;
    color: var(--text-main);
}

.clear-search { color: var(--text-muted); text-decoration: none; display: flex; align-items: center; }
.clear-search:hover { color: var(--text-main); }


.btn-action-request {
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-action-request:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
    transform: translateY(-1px);
}

.btn-action-request .material-icons-round { font-size: 16px; }


.alert {
    padding: 16px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}

.alert-success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.alert-danger { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

.no-results {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}
.no-results .material-icons-round { font-size: 48px; margin-bottom: 10px; opacity: 0.5; }

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


@media (max-width: 600px) {
    .request-item {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 20px 15px;
    }
    .request-item .item-right, .request-item form, .request-item .btn-action-request {
        width: 100%;
    }
    .request-item .btn-action-request {
        justify-content: center;
        padding: 12px;
    }
}

.vote-container {
    max-width: 650px;
    margin: 0 auto;
    width: 100%;
    background: #fff;
     border-radius: 30px;
}

.vote-header {
    text-align: center;
    margin-bottom: 35px;
}

.badge-purple {
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
}

.vote-header h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.vote-header p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
}


.poll-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 10px;
}

.poll-option-card {
    cursor: pointer;
    display: block;
}

.hidden-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}


.option-content {
    background: var(--card-bg);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #2f4e2f;
    transition: all 0.25s ease;
}

.option-cover {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.option-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.option-track {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
}

.option-artist {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}


.custom-radio-circle {
    width: 22px;
    height: 22px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
}


.hidden-radio:checked + .option-content {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.03);
    transform: translateY(-2px);
}

.hidden-radio:checked + .option-content .custom-radio-circle {
    border-color: var(--primary-color);
    background: var(--primary-color);
}


.hidden-radio:checked + .option-content .custom-radio-circle::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 8px; height: 8px;
    background: #fff;
    border-radius: 50%;
}


.btn-submit-vote {
    width: 100%;
    background: var(--text-main);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: var(--card-shadow);
    transition: background 0.2s, transform 0.2s;
}

.btn-submit-vote:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
}

.btn-submit-vote .material-icons-round {
    font-size: 20px;
}


@media (max-width: 480px) {
    .vote-header h1 { font-size: 32px; }
    .option-content { padding: 12px 15px; gap: 12px; }
    .option-track { font-size: 14px; }
    .option-artist { font-size: 12px; }
}


.wanted-slider-section {
     background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    width: 100%;
    max-width: 100%; 
    box-sizing: border-box;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.slider-title-block {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-title-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}

.slider-title-block .text-primary {
    color: #ff4757; 
}


.slider-arrows {
    display: flex;
    gap: 8px;
}

.arrow-btn {
    background: #5cc804;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.arrow-btn:hover {
    background: #68e105;
    color: #fff;
}


.slider-track-container {
    overflow: hidden; 
    width: 100%;
}


.slider-track-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden; 
    position: relative;
}

.slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto; 
    scroll-behavior: smooth;
    padding-bottom: 10px;
    width: 100%;
    
   
    scrollbar-width: none;  
    -ms-overflow-style: none;  
}

.slider-track::-webkit-scrollbar {
    display: none; 
}

.slide-card {
    width: 140px;
    min-width: 140px;
    max-width: 140px;
    flex-shrink: 0; 
    display: flex;
    flex-direction: column;
}
.slide-cover-wrapper img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    transition: transform 0.3s ease;
     border-radius: 10px;
}


.slide-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(255, 255, 255, 0.9);
    border: none; width: 44px; height: 44px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: var(--primary-color); cursor: pointer;
    opacity: 0; transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.slide-card:hover .slide-cover-wrapper img { transform: scale(1.05); }
.slide-card:hover .slide-play-btn { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.slide-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.slide-card p {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

.request-count {
    font-size: 11px;
    font-weight: 600;
    color: #ff4757;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 6px;
}
.request-count .material-icons-round { font-size: 12px; }


.system-alerts-container {
    max-width: 1200px;
    margin: 120px auto -80px auto; 
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    z-index: 999;
    position: relative;
}


.alert-banner {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    animation: slideDownAlert 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.alert-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.alert-icon {
    font-size: 24px;
}

.alert-text {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.4;
}

.alert-text strong {
    font-weight: 700;
}


.alert-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}

.alert-close-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-main);
}

.alert-close-btn .material-icons-round {
    font-size: 18px;
}




.alert-success {
    border-left: 4px solid #10b981;
}
.alert-success .alert-icon {
    color: #10b981;
}


.alert-info {
    border-left: 4px solid var(--primary-color);
}
.alert-info .alert-icon {
    color: var(--primary-color);
}


.alert-danger {
    border-left: 4px solid #ef4444;
}
.alert-danger .alert-icon {
    color: #ef4444;
}


@keyframes slideDownAlert {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


@media (max-width: 728px) {
    .system-alerts-container {
        margin: 160px auto -130px auto; 
    }
    .alert-banner {
        padding: 14px;
    }
    .alert-text {
        font-size: 13px;
    }
    .slider-title-block h3 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}
}
  footer {
      background: #333;
      text-align: left;
      padding: 10px;
      font-size: 14px;
      ///position: sticky;
      bottom: 0;
      color: #fff;
      font-size: 12px;

    }