/* ========================================
   ОСНОВНЫЕ НАСТРОЙКИ
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    background: #07090a;
    color: #e8e5df;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    width: 100%;
    min-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select {
    font: inherit;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 60px;
}

/* ========================================
   ШАПКА
======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 7, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.header-inner {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    transition: all 0.4s ease;
}

.logo {
    flex-shrink: 0;
    min-width: 400px;
}

.logo img {
    height: 130px;
    width: auto;
    max-width: none;
    transition: all 0.4s ease;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
    margin-right: 30px;
}

.nav a {
    position: relative;
    color: #dedbd5;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: 0.3s;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav a:hover,
.nav a.active {
    color: #ffffff;
}

.nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    background: #c51f25;
}

/* СОЦСЕТИ */
.socials {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link svg {
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.social-link:hover {
    background: #c51f25;
    border-color: #c51f25;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(197, 31, 37, 0.4);
}

.social-link:hover svg {
    transform: scale(1.15);
    color: #ffffff;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.social-link:hover::before {
    width: 150px;
    height: 150px;
}

/* ========================================
   ГЛАВНЫЙ ЭКРАН
======================================== */

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: #07090a;
    padding-top: 120px;
    width: 100%;
}

.hero-inner {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.hero-content {
    width: 55%;
    position: relative;
    z-index: 3;
    padding: 80px 0;
}

.small-title {
    color: #aaa6a0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 30px;
    animation: fadeInUp 1s;
}

.hero h1 {
    font-size: clamp(90px, 10vw, 150px);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -4px;
    font-style: italic;
    margin-bottom: 40px;
    text-transform: uppercase;
    animation: fadeInUp 1.2s;
}

.hero h1 span {
    color: #c51f25;
}

.hero-subtitle {
    color: #d4d0ca;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    animation: fadeInUp 1.4s;
}

.hero-line {
    width: 100px;
    height: 4px;
    background: #c51f25;
    margin: 30px 0 40px;
    animation: fadeInUp 1.6s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1.8s;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    padding: 0 45px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-red {
    background: #c51f25;
    color: #ffffff;
}

.btn-red:hover {
    background: #e0262d;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 31, 37, 0.4);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    background: transparent;
}

.btn-outline:hover {
    border-color: #c51f25;
    background: #c51f25;
    transform: translateY(-3px);
}

/* Фото Артёма */
.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #07090a 0%,
        rgba(7, 9, 10, 0.95) 10%,
        rgba(7, 9, 10, 0.70) 30%,
        rgba(7, 9, 10, 0.25) 55%,
        rgba(7, 9, 10, 0.05) 100%
    ),
    linear-gradient(
        0deg,
        #07090a 0%,
        transparent 25%
    );
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   УСЛУГИ
======================================== */

.services {
    padding: 100px 0;
    background: #0a0c0d;
}

.services-heading {
    text-align: center;
    margin-bottom: 60px;
}

.services-heading h2 {
    font-size: 50px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.services-heading h2 span {
    color: #c51f25;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s;
    background: #111516;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.4s;
    display: block;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-overlay h3 {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1;
}

.service-overlay .service-type {
    color: #c51f25;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.service-overlay .price {
    position: absolute;
    right: 25px;
    bottom: 25px;
    font-size: 36px;
    font-weight: 900;
    color: #c51f25;
    text-shadow: 0 2px 10px rgba(197, 31, 37, 0.5);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #c51f25;
}

.service-card:hover .price {
    transform: scale(1.1);
    transition: transform 0.3s;
}

.service-card:first-child img {
    object-position: center 20%;
}

/* ========================================
   О НАС
======================================== */

.about {
    padding: 120px 0;
    background: #07090a;
    width: 100%;
}

.about-inner {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.about-text h2,
.gallery h2,
.music h2,
.booking h2 {
    font-size: 65px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.section-line {
    width: 70px;
    height: 4px;
    background: #c51f25;
    margin: 25px 0 35px;
}

.about-text p {
    color: #aaa6a0;
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.about-gallery img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border: none;
    filter: saturate(0.8);
    transition: 0.4s;
}

.about-gallery img:hover {
    transform: translateY(-10px);
    filter: saturate(1);
}

/* ========================================
   ГАЛЕРЕЯ
======================================== */

.gallery {
    padding: 120px 0;
    background: #07090a;
    width: 100%;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    width: 100%;
}

.section-heading h2 span {
    color: #c51f25;
}

.section-heading a {
    color: #c51f25;
    font-size: 18px;
    font-weight: 800;
    transition: 0.3s;
}

.section-heading a:hover {
    letter-spacing: 3px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
}

.gallery-grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #292d2e;
    transition: 0.4s;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    border-color: #c51f25;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* ========================================
   МУЗЫКА - БЕЗ ФОТО
======================================== */

.music {
    padding: 100px 0;
    background: #0b0e0f;
    border-top: 1px solid #1d2021;
    border-bottom: 1px solid #1d2021;
    width: 100%;
}

.music h2 {
    font-size: 65px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.music h2 span {
    color: #c51f25;
}

.music-players {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.radio-player,
.playlist-player {
    background: #111516;
    border: 1px solid #292d2e;
    border-radius: 10px;
    padding: 25px;
    height: 510px;
    min-height: 510px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.radio-player:hover,
.playlist-player:hover {
    border-color: #c51f25;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* ЗАГОЛОВКИ */
.player-header {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 35px;
    min-height: 35px;
    margin-bottom: 12px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.radio-icon,
.playlist-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.player-header h3 {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-badge {
    background: #c51f25;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-left: auto;
    flex-shrink: 0;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* РАДИО ИНФО */
.radio-info {
    height: 32px;
    min-height: 32px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    flex-shrink: 0;
}

.radio-status {
    color: #aaa6a0;
    font-size: 14px;
    letter-spacing: 2px;
}

/* КОМПЕНСАЦИЯ ДЛЯ ПРАВОЙ РАМКИ */
.playlist-player .player-header {
    margin-bottom: 12px;
}

/* ЭКВАЛАЙЗЕРЫ */
#visualizer,
#playlistVisualizer {
    width: 100%;
    height: 170px;
    min-height: 170px;
    background: #0a0c0d;
    border: 1px solid #292d2e;
    border-radius: 5px;
    margin: 0 0 12px 0;
    display: block;
    box-sizing: border-box;
    flex: 0 0 170px;
}

/* ПЛЕЙЛИСТ */
.playlist-tracks {
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 125px;
    min-height: 125px;
    max-height: 125px;
    margin: 0 0 12px 0;
    padding-right: 4px;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    flex-shrink: 0;
}

.playlist-tracks::-webkit-scrollbar {
    width: 5px;
}

.playlist-tracks::-webkit-scrollbar-thumb {
    background: #343839;
    border-radius: 5px;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 70px;
    max-height: 70px;
    padding: 8px 12px;
    background: #15191a;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid transparent;
    box-sizing: border-box;
    flex-shrink: 0;
}

.track-item:hover {
    background: #1a1f20;
    border-color: #343839;
}

.track-item.active {
    background: #1a1f20;
    border-color: #c51f25;
}

.track-number {
    color: #aaa6a0;
    font-size: 12px;
    width: 25px;
    text-align: center;
    flex-shrink: 0;
}

.track-info {
    flex: 1;
    min-width: 0;
}

.track-info h4 {
    font-size: 16px;
    color: #ffffff;
    margin: 0 0 3px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-info p {
    font-size: 13px;
    color: #aaa6a0;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-playing-icon {
    color: #c51f25;
    font-size: 16px;
    flex-shrink: 0;
}

/* УПРАВЛЕНИЕ РАДИО */
.radio-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    width: 100%;
    height: 60px;
    min-height: 60px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.radio-play-btn {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    background: #c51f25;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex: 0 0 60px;
    box-shadow: 0 8px 20px rgba(197, 31, 37, 0.4);
    transition: background 0.3s;
}

.radio-play-btn:hover {
    background: #e0262d;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.volume-control span {
    font-size: 18px;
    flex-shrink: 0;
}

.volume-control input[type="range"] {
    flex: 1;
    min-width: 0;
    width: 100%;
    height: 5px;
    background: #343839;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

.volume-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #c51f25;
    border-radius: 50%;
    cursor: pointer;
}

/* УПРАВЛЕНИЕ ПЛЕЙЛИСТА */
.playlist-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: auto;
    width: 100%;
    height: 60px;
    min-height: 60px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.playlist-controls button {
    background: none;
    border: none;
    color: #ddd;
    font-size: 24px;
    cursor: pointer;
    flex-shrink: 0;
}

.playlist-controls button:hover {
    color: #c51f25;
}

.playlist-controls .play-track-btn {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    background: #c51f25;
    border-radius: 50%;
    border: none;
    color: #ffffff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex: 0 0 60px;
    box-shadow: 0 5px 15px rgba(197, 31, 37, 0.4);
}

.playlist-controls .play-track-btn:hover {
    background: #e0262d;
}

.current-track-info {
    text-align: center;
    color: #c51f25;
    font-size: 13px;
    letter-spacing: 1px;
    height: 20px;
    min-height: 20px;
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========================================
   ЗАПИСЬ
======================================== */

.booking {
    padding: 120px 0;
    background: #07090a;
    width: 100%;
}

.booking h2 {
    margin-bottom: 50px;
}

.booking-box {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr auto;
    gap: 25px;
    align-items: end;
    padding: 40px;
    border: 1px solid #292d2e;
    background: #0d1011;
    border-radius: 8px;
    transition: 0.3s;
    width: 100%;
}

.booking-box:hover {
    border-color: #343839;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-field label {
    color: #aaa6a0;
    font-size: 16px;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
}

.booking-field select,
.booking-field input {
    height: 65px;
    background: #15191a;
    border: 1px solid #343839;
    color: #e8e5df;
    padding: 0 20px;
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
    font-size: 18px;
}

.booking-field select:focus,
.booking-field input:focus {
    border-color: #c51f25;
    box-shadow: 0 0 0 3px rgba(197, 31, 37, 0.2);
}

/* ========================================
   КОНТАКТЫ - ДВА КВАДРАТА
======================================== */

.contacts {
    border-top: 1px solid #1d2021;
    background: #0b0e0f;
    width: 100%;
    padding: 80px 0;
}

.contacts .container {
    width: 100%;
    max-width: 100%;
    padding: 0 60px;
}

.contacts-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* КАРТА СЛЕВА */
.map-frame {
    background: #111516;
    border: 1px solid #292d2e;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.map-frame iframe {
    flex: 1;
    filter: grayscale(20%) contrast(1.05);
    border-radius: 8px;
    margin-bottom: 15px;
}

.btn-route {
    width: 100%;
    height: 55px;
    font-size: 15px;
    justify-content: center;
    flex-shrink: 0;
}

/* КОНТАКТЫ СПРАВА */
.contacts-frame {
    background: #111516;
    border: 1px solid #292d2e;
    border-radius: 10px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-icon {
    font-size: 30px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item h3 {
    font-size: 14px;
    color: #c51f25;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-item p {
    color: #ddd8d1;
    font-size: 20px;
    margin-bottom: 3px;
}

.contact-item span {
    color: #777b7c;
    font-size: 14px;
}

.contact-divider {
    height: 1px;
    background: #292d2e;
    margin: 20px 0;
}

/* АДАПТАЦИЯ */
@media (max-width: 768px) {
    .contacts {
        padding: 40px 0;
    }
    
    .contacts .container {
        padding: 0 20px;
    }
    
    .contacts-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .map-frame {
        min-height: auto;
    }
    
    .map-frame iframe {
        height: 300px;
    }
    
    .contacts-frame {
        min-height: auto;
        padding: 25px;
    }
}
/* ========================================
   FOOTER
======================================== */

.footer {
    padding: 40px 0;
    background: #050708;
    border-top: 1px solid #1d2021;
    color: #686c6d;
    font-size: 16px;
    width: 100%;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ========================================
   АДАПТАЦИЯ ПОД ПЛАНШЕТ
======================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .header-inner {
        gap: 20px;
    }
    
    .logo {
        min-width: 250px;
    }
    
    .logo img {
        height: 100px;
    }
    
    .nav {
        gap: 20px;
        margin-right: 20px;
    }
    
    .nav a {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-content {
        width: 60%;
    }
    
    .hero-image {
        width: 55%;
    }
    
    .hero h1 {
        font-size: 80px;
    }
    
    .about-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-gallery img {
        height: 350px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-box {
        grid-template-columns: 1fr 1fr;
    }
    
    .music-players {
        gap: 20px;
    }
    
    .radio-player,
    .playlist-player {
        height: 480px;
        min-height: 480px;
        padding: 20px;
    }
    
    #visualizer,
    #playlistVisualizer {
        height: 160px;
        min-height: 160px;
        flex: 0 0 160px;
    }
    
    .playlist-tracks {
        height: 160px;
        min-height: 160px;
        max-height: 160px;
        flex: 0 0 160px;
    }
}

/* ========================================
   АДАПТАЦИЯ ПОД ТЕЛЕФОН
======================================== */

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-inner {
        min-height: 100px;
        gap: 15px;
        flex-wrap: wrap;
        padding: 15px 0;
    }
    
    .logo {
        min-width: 180px;
    }
    
    .logo img {
        height: 70px;
    }
    
    .nav {
        order: 3;
        width: 100%;
        gap: 20px;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 5px;
        margin-right: 0;
        margin-left: 0;
    }
    
    .nav a {
        white-space: nowrap;
        font-size: 13px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
    }
    
    .social-link svg {
        width: 17px;
        height: 17px;
    }
    
    .hero {
        min-height: auto;
        padding-top: 100px;
    }
    
    .hero-inner {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-content {
        width: 100%;
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 65px;
    }
    
    .small-title {
        font-size: 16px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 400px;
        margin-top: 40px;
    }
    
    .hero-image::after {
        background: linear-gradient(
            0deg,
            #07090a 0%,
            rgba(7, 9, 10, 0.5) 50%,
            rgba(7, 9, 10, 0.1) 100%
        );
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        height: 250px;
    }
    
    .service-card img {
        height: 250px;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-text h2,
    .gallery h2,
    .music h2,
    .booking h2 {
        font-size: 45px;
    }
    
    .about-gallery {
        grid-template-columns: 1fr;
    }
    
    .about-gallery img {
        height: 300px;
    }
    
    .gallery {
        padding: 80px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-grid img {
        height: 300px;
    }
    
    .music-players {
        grid-template-columns: 1fr;
    }
    
    .radio-player,
    .playlist-player {
        height: auto;
        min-height: 480px;
        padding: 20px;
    }
    
    #visualizer,
    #playlistVisualizer {
        height: 170px;
        min-height: 170px;
        flex: 0 0 170px;
    }
    
    .playlist-tracks {
        height: 170px;
        min-height: 170px;
        max-height: 170px;
        flex: 0 0 170px;
    }
    
    .booking {
        padding: 80px 0;
    }
    
    .booking-box {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .contacts-grid > div {
        border-right: none;
        border-bottom: 1px solid #242728;
        padding: 35px;
    }
    
    .contacts-grid > div:last-child {
        border-bottom: none;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ========================================
   СТРАНИЦА ГАЛЕРЕИ
======================================== */

.gallery-page {
    padding: 180px 0 100px;
    background: #07090a;
    min-height: 100vh;
}

.gallery-page-heading {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-page-heading h1 {
    font-size: 60px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.gallery-page-heading h1 span {
    color: #c51f25;
}

.gallery-page-heading .section-line {
    margin: 20px auto 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #343839;
    color: #aaa6a0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    border-radius: 4px;
}

.filter-btn:hover {
    border-color: #c51f25;
    color: #ffffff;
}

.filter-btn.active {
    background: #c51f25;
    border-color: #c51f25;
    color: #ffffff;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-page-heading h1 {
        font-size: 45px;
    }
}

@media (max-width: 768px) {
    .gallery-page {
        padding: 140px 0 60px;
    }
    
    .gallery-page-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-page-heading h1 {
        font-size: 36px;
    }
    
    .gallery-item img {
        height: 280px;
    }
}
.admin-link {
    color: #343839;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1; /* Шестеренка не будет перекрывать другие элементы */
}

.admin-link:hover {
    color: #c51f25;
    transform: rotate(90deg);
}
/* ЗАНЯТОЕ ВРЕМЯ В ВЫПАДАЮЩЕМ СПИСКЕ */
#timeSelect option:disabled {
    color: #666;
    background: #15191a;
    text-decoration: line-through;
    cursor: not-allowed;
}
/* ========================================
   НОВАЯ СИСТЕМА ЗАПИСИ (ФИНАЛЬНАЯ)
======================================== */

.booking-container-new {
    background: #0d1011;
    border: 1px solid #292d2e;
    border-radius: 10px;
    padding: 40px;
    max-width: 900px;
    margin: 0;
}

.booking-step-new {
    margin-bottom: 25px;
}

.booking-label {
    display: block;
    color: #aaa6a0;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.booking-select-new {
    width: 320px;
    height: 50px;
    background: #15191a;
    border: 1px solid #343839;
    color: #e8e5df;
    padding: 0 20px;
    border-radius: 5px;
    font-size: 15px;
    outline: none;
    cursor: pointer;
}

.booking-select-new:focus {
    border-color: #c51f25;
}

/* ========================================
   КОНТЕЙНЕР ОНЛАЙН-ЗАПИСИ
   ======================================== */

.booking-container-new {
    width: 100%;
    max-width: none;
    margin: 0;

    background: #0d1011;
    border: 1px solid #292d2e;
    border-radius: 10px;

    padding: 40px;

    box-sizing: border-box;
}


/* ========================================
   ДВЕ РАМКИ РЯДОМ
   ОДИНАКОВАЯ ШИРИНА + ВЫСОТА
   ======================================== */

.booking-layout {
    display: grid;

    /* ВАЖНО: теперь 50% / 50% */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    gap: 30px;

    margin-bottom: 30px;

    align-items: stretch;

    width: 100%;

    box-sizing: border-box;
}


/* ========================================
   КАЛЕНДАРЬ + ВРЕМЯ
   ОДИНАКОВЫЙ РАЗМЕР
   ======================================== */

.calendar-frame,
.time-frame {
    width: 100%;
    min-width: 0;

    height: 600px;
    min-height: 600px;

    box-sizing: border-box;

    background: #111516;

    border: 1px solid #292d2e;
    border-radius: 8px;

    padding: 35px;

    display: flex;
    flex-direction: column;

    overflow: hidden;
}


/* ========================================
   ЗАГОЛОВОК РАМКИ
   ======================================== */

.calendar-frame .booking-label,
.time-frame .booking-label {
    margin-bottom: 20px;

    flex-shrink: 0;
}


/* ========================================
   КАЛЕНДАРЬ
   ======================================== */

.calendar {
    width: 100%;

    background: transparent;
    border: none;

    padding: 0;

    flex: 1;

    box-sizing: border-box;
}


/* ========================================
   ШАПКА КАЛЕНДАРЯ
   ======================================== */

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin-bottom: 25px;

    box-sizing: border-box;
}

.calendar-header span {
    font-size: 28px;
    font-weight: 900;

    letter-spacing: 1px;
}


/* ========================================
   СТРЕЛКИ КАЛЕНДАРЯ
   ======================================== */

.calendar-nav {
    width: 50px;
    height: 50px;

    min-width: 50px;

    background: #15191a;

    border: 1px solid #343839;
    border-radius: 5px;

    color: #fff;

    font-size: 24px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s;

    box-sizing: border-box;
}

.calendar-nav:hover {
    background: #c51f25;
    border-color: #c51f25;
}


/* ========================================
   ДНИ НЕДЕЛИ
   ======================================== */

.calendar-weekdays {
    display: grid;

    grid-template-columns: repeat(7, minmax(0, 1fr));

    gap: 8px;

    margin-bottom: 10px;

    width: 100%;
}

.calendar-weekdays span {
    text-align: center;

    font-size: 14px;
    font-weight: 700;

    color: #aaa6a0;

    padding: 8px 2px;

    box-sizing: border-box;
}


/* ========================================
   ДНИ КАЛЕНДАРЯ
   ======================================== */

.calendar-days {
    display: grid;

    grid-template-columns: repeat(7, minmax(0, 1fr));

    gap: 8px;

    width: 100%;
}


/* ========================================
   ДЕНЬ
   ======================================== */

.calendar-day {
    width: 100%;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #15191a;

    border: 1px solid #292d2e;
    border-radius: 5px;

    font-size: 16px;

    cursor: pointer;

    transition: all 0.3s;

    box-sizing: border-box;
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: #1a1f20;

    border-color: #c51f25;

    transform: scale(1.03);
}

.calendar-day.selected {
    background: #c51f25 !important;
    border-color: #c51f25 !important;
    color: #fff !important;
    font-weight: 700;
}

.calendar-day.disabled {
    background: #0a0c0d;

    color: #444;

    cursor: not-allowed;
}

.calendar-day.empty {
    background: transparent;

    border: none;

    cursor: default;
}

.calendar-day.today {
    border-color: #c51f25;
}


/* ========================================
   ВРЕМЯ — 2 РОВНЫХ СТОЛБИКА
   ======================================== */

.time-buttons-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 15px;

    flex: 1;

    align-content: start;

    overflow-y: auto;
    overflow-x: hidden;

    padding-right: 5px;

    width: 100%;

    box-sizing: border-box;
}

.time-buttons-grid::-webkit-scrollbar {
    width: 5px;
}

.time-buttons-grid::-webkit-scrollbar-thumb {
    background: #343839;

    border-radius: 5px;
}


/* ========================================
   ЕСЛИ НЕТ ВРЕМЕНИ
   ======================================== */

.time-placeholder {
    color: #aaa6a0;

    text-align: center;

    padding: 40px 20px;

    grid-column: 1 / -1;

    font-size: 18px;
}


/* ========================================
   КНОПКИ ВРЕМЕНИ
   ======================================== */

.time-btn {
    width: 100%;
    height: 60px;

    background: #15191a;

    border: 1px solid #343839;
    border-radius: 5px;

    color: #fff;

    font-size: 18px;

    cursor: pointer;

    transition: all 0.3s;

    box-sizing: border-box;
}

.time-btn:hover:not(.booked):not(.selected) {
    background: #1a1f20;

    border-color: #c51f25;
}

.time-btn.selected {
    background: #c51f25;

    border-color: #c51f25;

    font-weight: 700;
}

.time-btn.booked {
    background: #0a0c0d;

    color: #444;

    cursor: not-allowed;

    text-decoration: line-through;
}


/* ========================================
   КНОПКА ЗАПИСАТЬСЯ
   ======================================== */

.booking-btn-row {
    display: flex;

    justify-content: flex-end;

    width: 100%;

    box-sizing: border-box;
}

.booking-btn-row .btn {
    min-height: 55px;

    padding: 0 50px;

    font-size: 16px;
}


/* ========================================
   АДАПТИВ — ПЛАНШЕТ
   ======================================== */

@media (max-width: 900px) {

    .booking-container-new {
        padding: 25px;
    }

    .booking-layout {
        gap: 20px;
    }

    .calendar-frame,
    .time-frame {
        padding: 25px;
    }

}


/* ========================================
   АДАПТИВ — ТЕЛЕФОН
   ======================================== */

@media (max-width: 768px) {

    .booking-container-new {
        padding: 20px;
    }

    .booking-layout {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .calendar-frame,
    .time-frame {
        height: auto;
        min-height: 500px;

        padding: 20px;
    }

    .time-buttons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .booking-btn-row {
        justify-content: center;
    }

    .booking-btn-row .btn {
        width: 100%;
    }

}


/* ========================================
   МАЛЕНЬКИЙ ТЕЛЕФОН
   ======================================== */

@media (max-width: 450px) {

    .booking-container-new {
        padding: 15px;
    }

    .calendar-frame,
    .time-frame {
        padding: 15px;
    }

    .calendar-header span {
        font-size: 22px;
    }

    .calendar-day {
        height: 45px;

        font-size: 14px;
    }

    .time-btn {
        height: 52px;

        font-size: 16px;
    }

}
/* ========================================
   ТРИ РАМКИ НА ОДНОЙ ЛИНИИ
======================================== */

.booking-layout-3 {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
    align-items: stretch;
}

.booking-frame {
    background: #111516;
    border: 1px solid #292d2e;
    border-radius: 10px;
    padding: 25px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.booking-frame .booking-label {
    margin-bottom: 15px;
    flex-shrink: 0;
}

/* КАЛЕНДАРЬ */
.calendar {
    flex: 1;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.calendar-header span {
    font-size: 20px;
    font-weight: 900;
}

.calendar-nav {
    width: 35px;
    height: 35px;
    background: #15191a;
    border: 1px solid #343839;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav:hover {
    background: #c51f25;
    border-color: #c51f25;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 6px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #aaa6a0;
    padding: 5px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #15191a;
    border: 1px solid #292d2e;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: #1a1f20;
    border-color: #c51f25;
}

.calendar-day.selected {
    background: #c51f25;
    border-color: #c51f25;
    color: #fff;
    font-weight: 700;
}

.calendar-day.disabled {
    background: #0a0c0d;
    color: #444;
    cursor: not-allowed;
}

.calendar-day.empty {
    background: transparent;
    border: none;
    cursor: default;
}

/* УСЛУГИ С РАДИО-ТОЧКАМИ */
.service-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    overflow-y: auto;
}

.service-option-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #15191a;
    border: 1px solid #343839;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.service-option-item:hover {
    border-color: #c51f25;
    background: #1a1f20;
}

.service-option-item.selected {
    border-color: #c51f25;
    background: #1a1f20;
}

.service-radio {
    width: 22px;
    height: 22px;
    border: 2px solid #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.service-option-item.selected .service-radio {
    border-color: #c51f25;
}

.radio-dot {
    width: 10px;
    height: 10px;
    background: transparent;
    border-radius: 50%;
    transition: all 0.3s;
}

.service-option-item.selected .radio-dot {
    background: #c51f25;
}

.service-option-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.service-option-item p {
    font-size: 12px;
    color: #aaa6a0;
}

.service-price {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 900;
    color: #c51f25;
}

/* ВРЕМЯ */
.time-buttons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    flex: 1;
    align-content: start;
    overflow-y: auto;
}

.time-btn {
    height: 45px;
    background: #15191a;
    border: 1px solid #343839;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.time-btn:hover:not(.booked):not(.selected) {
    border-color: #c51f25;
}

.time-btn.selected {
    background: #c51f25;
    border-color: #c51f25;
    font-weight: 700;
}

.time-btn.booked {
    background: #0a0c0d;
    color: #444;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* КНОПКА */
.booking-btn-row {
    display: flex;
    justify-content: flex-end;
}

/* АДАПТАЦИЯ */
@media (max-width: 1024px) {
    .booking-layout-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .booking-layout-3 {
        grid-template-columns: 1fr;
    }
    
    .booking-frame {
        min-height: auto;
    }
}
.calendar-day.today {
    border-color: #555;
}
.radio-player {
    position: relative;
    background: #111516;
    border: 1px solid #292d2e;
    border-radius: 10px;
    padding: 0;
    height: 510px;
    min-height: 510px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.radio-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.radio-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.3) saturate(0.8);
}

.radio-content {
    position: relative;
    z-index: 2;
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

#visualizer {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 170px;
    min-height: 170px;
    background: rgba(10, 12, 13, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    margin: 0 0 12px 0;
    display: block;
    box-sizing: border-box;
    flex: 0 0 170px;
    backdrop-filter: blur(5px);
}
/* ========================================
   МУЗЫКА С ФОТО ФОНОМ
======================================== */

.music {
    position: relative;
    padding: 100px 0;
    background: #0b0e0f;
    border-top: 1px solid #1d2021;
    border-bottom: 1px solid #1d2021;
    width: 100%;
    overflow: hidden;
}

.music-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.music-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.25) saturate(0.8);
}

.music-content {
    position: relative;
    z-index: 2;
}

.music h2 {
    font-size: 65px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 50px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.music h2 span {
    color: #c51f25;
}

.music-players {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* РАМКИ ПОЛУПРОЗРАЧНЫЕ ПОВЕРХ ФОТО */
.radio-player,
.playlist-player {
    background: rgba(17, 21, 22, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 25px;
    height: 510px;
    min-height: 510px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.radio-player:hover,
.playlist-player:hover {
    border-color: rgba(197, 31, 37, 0.6);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Эквалайзеры полупрозрачные */
#visualizer,
#playlistVisualizer {
    width: 100%;
    height: 170px;
    min-height: 170px;
    background: rgba(10, 12, 13, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin: 0 0 12px 0;
    display: block;
    box-sizing: border-box;
    flex: 0 0 170px;
}

/* Текст с тенью для читаемости */
.player-header h3 {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.radio-status {
    color: #ddd;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Плейлист треки полупрозрачные */
.track-item {
    background: rgba(21, 25, 26, 0.7);
    backdrop-filter: blur(5px);
}

/* АДАПТАЦИЯ */
@media (max-width: 768px) {
    .music h2 {
        font-size: 36px;
    }
    
    .music-players {
        grid-template-columns: 1fr;
    }
}
/* БУРГЕР-КНОПКА */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.burger-btn span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

/* МОБИЛЬНОЕ МЕНЮ */
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #0d1011;
        flex-direction: column;
        padding: 80px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 20px;
        align-items: flex-start;
    }
    
    .nav.open {
        right: 0;
    }
    
    .nav a {
        font-size: 18px;
    }
    
    .socials {
        margin-left: auto;
    }
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 45px;
        letter-spacing: -2px;
        line-height: 1;
    }
    
    .small-title {
        font-size: 14px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons .btn {
        min-height: 45px;
        padding: 0 25px;
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .about-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .about-gallery img {
        height: 150px;
        object-fit: cover;
    }
}
@media (max-width: 768px) {
    /* Громкость — сделайте шире */
    .volume-control {
        flex: 1;
        min-width: 0;
    }
    
    .volume-control input[type="range"] {
        width: 100%;
        min-width: 0;
    }
    
    /* Кнопка play в плейлисте */
    .playlist-controls {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #292d2e;
    }
    
    .playlist-controls .play-track-btn {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
    }
    
    /* Эквалайзер */
    #visualizer,
    #playlistVisualizer {
        height: 100px;
        min-height: 100px;
    }
    
    /* Рамки плееров */
    .radio-player,
    .playlist-player {
        height: auto;
        min-height: 400px;
        padding: 15px;
    }
    
    /* Треки */
    .playlist-tracks {
        height: 120px;
        min-height: 120px;
        max-height: 120px;
    }
}
@media (max-width: 768px) {
    .radio-controls {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .radio-play-btn {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
    }
    
    .volume-control {
        flex: 1;
        min-width: 150px;
    }
}
@media (max-width: 768px) {
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 10px 0;
    }
    
    .logo {
        min-width: auto;
        flex: 1;
    }
    
    .logo img {
        height: 50px;
    }
    
    /* Бургер справа */
    .burger-btn {
        display: flex;
        order: 3;
        margin-left: 5px;
    }
    
    /* Соцсети слева от бургера */
    .socials {
        order: 2;
        gap: 8px;
    }
    
    .socials .social-link {
        width: 35px;
        height: 35px;
    }
    
    .nav {
        order: 4;
    }
}
@media (max-width: 768px) {
    /* Скрыть ползунок громкости на телефоне */
    .volume-control input[type="range"] {
        display: none;
    }
    
    /* Оставить только иконку звука */
    .volume-control span {
        font-size: 22px;
        cursor: pointer;
    }
    
    /* Эквалайзер видимый */
    #visualizer,
    #playlistVisualizer {
        height: 120px;
        min-height: 120px;
        display: block;
        background: #0a0c0d;
    }
    
    /* Кнопка play красивая */
    .radio-play-btn {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        background: #c51f25;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #fff;
    }
    
    .radio-play-btn svg {
        width: 24px;
        height: 24px;
    }
    
    /* Плейлист play кнопка */
    .playlist-controls .play-track-btn {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        background: #c51f25;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        margin-bottom: 10px;
    }
    
    .playlist-controls .play-track-btn svg {
        width: 24px;
        height: 24px;
    }
    
    /* Кнопки перемотки */
    .playlist-controls button {
        color: #fff;
        background: none;
        border: none;
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 70px;
    }
    
    .hero-inner {
        padding: 20px 0;
    }
    
    .hero-content {
        padding: 20px 0;
    }
    
    .small-title {
        margin-bottom: 15px;
        font-size: 12px;
    }
    
    .hero h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 0;
    }
    
    .hero-line {
        margin: 15px 0 20px;
        width: 50px;
        height: 3px;
    }
}
@media (max-width: 768px) {
    .hero-image {
        position: relative;
        width: 100%;
        height: 500px;
        margin-top: 20px;
    }
    
    .hero-image img {
        height: 500px;
        object-fit: cover;
        object-position: center top;
    }
}
@media (max-width: 768px) {
    /* Убрать динамик */
    .volume-control span {
        display: none;
    }
    
    /* Кнопка Play — только красный круг */
    .radio-play-btn {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
        background: #c51f25;
        border: none;
        border-radius: 50%;
        color: #fff;
        font-size: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
    }
    
    /* Треугольник Play */
    .radio-play-btn::after {
        content: '';
        width: 0;
        height: 0;
        border-left: 20px solid #fff;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        margin-left: 5px;
    }
    
    /* Когда играет — пауза */
    .radio-play-btn.playing::after {
        content: '';
        width: 16px;
        height: 20px;
        border: none;
        border-left: 5px solid #fff;
        border-right: 5px solid #fff;
        margin-left: 0;
    }
}
.btn-back-gallery {
    background: #c51f25;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-left: auto;
    margin-right: 20px;
    white-space: nowrap;
}
/* ========================================
   КНОПКИ PLAY - ЧИСТЫЕ
======================================== */

.radio-play-btn,
.playlist-controls .play-track-btn {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    background: #c51f25;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(197, 31, 37, 0.4);
    transition: all 0.3s;
    padding: 0;
    line-height: 1;
    position: relative;
}

/* УБРАТЬ ВСЕ ::before И ::after С КНОПОК */
.radio-play-btn::before,
.radio-play-btn::after,
.playlist-controls .play-track-btn::before,
.playlist-controls .play-track-btn::after {
    display: none !important;
}

/* ГРОМКОСТЬ - ПОЛЗУНОК РАБОТАЕТ */
.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 100px;
}

.volume-control span {
    font-size: 20px;
    flex-shrink: 0;
    cursor: pointer;
    display: block;
}

.volume-control input[type="range"] {
    flex: 1;
    min-width: 80px;
    width: 100%;
    height: 5px;
    background: #343839;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
    display: block;
}

.volume-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #c51f25;
    border-radius: 50%;
    cursor: pointer;
}

/* КНОПКИ ПЕРЕМОТКИ */
.playlist-controls button:not(.play-track-btn) {
    background: none;
    border: none;
    color: #ddd;
    font-size: 22px;
    cursor: pointer;
    padding: 0;
}

/* МОБИЛЬНАЯ ВЕРСИЯ */
@media (max-width: 768px) {
    .volume-control input[type="range"] {
        display: none;
    }
    
    .volume-control span {
        font-size: 22px;
    }
    
    .radio-play-btn,
    .playlist-controls .play-track-btn {
        width: 55px;
        height: 55px;
        min-width: 55px;
        min-height: 55px;
        font-size: 22px;
    }
}

/* Опустить кнопку плей в плейлисте */
.playlist-controls .play-track-btn {
    margin-top: 5px;
}

/* Убрать SVG смайлики */
.playlist-controls button svg {
    display: none;
}

.playlist-controls button {
    background: none;
    border: none;
    color: #ddd;
    font-size: 20px;
    cursor: pointer;
}

.radio-play-btn:hover,
.playlist-controls .play-track-btn:hover {
    background: #e0262d;
    transform: scale(1.05);
}
/* КНОПКА PLAY РАДИО */
.radio-play-btn {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    background: #c51f25;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(197, 31, 37, 0.4);
    transition: all 0.3s;
    padding: 0;
    line-height: 1;
}

/* КНОПКА PLAY ПЛЕЙЛИСТА — ТАКАЯ ЖЕ */
.playlist-controls .play-track-btn {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    background: #c51f25;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(197, 31, 37, 0.4);
    transition: all 0.3s;
    padding: 0;
    line-height: 1;
    margin-top: 5px;
}

/* УБРАТЬ SVG ИЗ КНОПОК ПЕРЕМОТКИ */
.playlist-controls button:not(.play-track-btn) {
    background: none;
    border: none;
    color: #ddd;
    font-size: 22px;
    cursor: pointer;
    padding: 0;
}

.playlist-controls button:not(.play-track-btn) svg {
    display: none;
}

/* УБРАТЬ ВСЕ СМАЙЛИКИ С КНОПОК */
.radio-play-btn,
.playlist-controls .play-track-btn {
    font-size: 0 !important; /* Скрываем любой текст */
    position: relative;
}

/* ТРЕУГОЛЬНИК PLAY */
.radio-play-btn::before,
.playlist-controls .play-track-btn::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 18px solid #fff;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

/* ПАУЗА - УЖЕ */
.radio-play-btn.playing::before,
.playlist-controls .play-track-btn.playing::before {
    content: '';
    border: none;
    width: 10px;
    height: 14px;
    border-left: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}
