:root {
    --accent: #ffb454;
    --accent-rgb: 255, 180, 84;
    --bg: #0a0a0a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Benzin Regular', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 1500;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}

::selection {
    background: var(--accent);
    color: #0a0a0a;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    border: 2px solid #0a0a0a;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}
html {
    scrollbar-color: rgba(255, 255, 255, 0.2) #0a0a0a;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), #ffffff);
    z-index: 2000;
    pointer-events: none;
    transition: width 0.1s ease-out;
}

a {
    text-decoration: none;
    color: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@font-face {
    font-family: 'Benzin Extra Bold';
    src: url('fonts/Benzin Extra Bold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Benzin Bold';
    src: url('fonts/Benzin Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Benzin Regular';
    src: url('fonts/Benzin Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.35);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 0;
    transition: background 0.4s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav .nav-list {
    display: flex;
    gap: 2rem;
}

.main-nav .nav-list a {
    font-family: 'Benzin Bold', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.main-nav .nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.main-nav .nav-list a:hover {
    color: #ffffff;
}

.main-nav .nav-list a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    margin-left: 0;
}

.burger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.72) 100%);
    z-index: 1;
}

.hero-glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(560px circle at var(--mx, 50%) var(--my, 30%), rgba(var(--accent-rgb), 0.16), transparent 60%);
}

@media (pointer: coarse) {
    .hero-glow {
        display: none;
    }
}

.main-content {
    position: relative;
    z-index: 1;
}

.hero-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 40px;
    box-sizing: border-box;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.hero-logo {
    max-width: 700px;
    width: 100%;
    height: auto;
    margin: 0 auto 1.2rem;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.8));
    animation: heroFadeUp 1s ease both;
}

.cta-button {
    display: inline-block;
    font-family: 'Benzin Bold', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px 40px;
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
    transition: all 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: heroFadeUp 1s ease 0.2s both;
    border-radius: 50px; /* ← скругление добавлено */
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, var(--accent), #ffffff);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button:hover {
    color: #0a0a0a;
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.35);
}
.cta-button:hover::before {
    left: 0;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    margin-top: 20px;
}

.hero-scroll span {
    display: block;
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
    margin-top: -4px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.section-kicker {
    display: block;
    text-align: center;
    font-family: 'Benzin Bold', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 14px;
    opacity: 0.9;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: calc(var(--i, 0) * 70ms);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.songs {
    padding: 80px 0 70px;
}

.songs-title {
    font-family: 'Benzin Extra Bold', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.filters {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
}

.filter-select {
    font-family: 'Benzin Bold', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 34px 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(0, 0, 0, 0.4);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' opacity='0.6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 11px 7px;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.filter-select::-ms-expand {
    display: none;
}

.filter-select:hover,
.filter-select:focus {
    color: #ffffff;
    border-color: var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23ffb454' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.filter-select option {
    background: #111111;
    color: #ffffff;
}

.no-results {
    display: none;
    text-align: center;
    font-family: 'Benzin Regular', sans-serif;
    color: rgba(255, 255, 255, 0.5);
    padding: 20px 0 10px;
}

.song-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.tag-chip {
    font-family: 'Benzin Bold', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.tag-chip-year {
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.08);
    border-color: rgba(var(--accent-rgb), 0.3);
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
    justify-items: center;
}

.song-card {
    width: 100%;
    max-width: 280px;
    background: rgba(20, 20, 20, 0.85);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.song-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(var(--accent-rgb), 0.25);
    border-color: rgba(var(--accent-rgb), 0.3);
}

.song-cover-wrap {
    position: relative;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

.song-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    background: #222;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.song-card:hover .song-cover {
    transform: scale(1.08);
    filter: brightness(0.65);
}

.song-cover-wrap .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 52px;
    height: 52px;
    transform: translate(-50%, -50%) scale(0.7);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.song-cover-wrap .play-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 15px;
    border-color: transparent transparent transparent #ffffff;
}

.song-card:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.song-info {
    padding: 14px 14px 18px;
    text-align: center;
}

.song-artist {
    font-family: 'Benzin Regular', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    line-height: 1.3;
    white-space: normal;
    word-wrap: break-word;
}

.song-title {
    font-family: 'Benzin Regular', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 500;
    line-height: 1.3;
    white-space: normal;
    word-wrap: break-word;
}

.clips {
    padding: 80px 0 70px;
}

.clips-title {
    font-family: 'Benzin Extra Bold', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.clips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.clip-item {
    background: rgba(20, 20, 20, 0.85);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.clip-item:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(var(--accent-rgb), 0.25);
    border-color: rgba(var(--accent-rgb), 0.3);
}

.clip-item iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

.clip-artist {
    font-family: 'Benzin Regular', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 8px 10px 0 10px;
    line-height: 1.3;
    word-wrap: break-word;
}

.clip-title {
    font-family: 'Benzin Regular', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
    text-align: center;
    padding: 0 10px 12px 10px;
    line-height: 1.3;
    word-wrap: break-word;
}

.song-page {
    display: none;
    background: rgba(10, 10, 10, 0.9);
    padding: 100px 0 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    backdrop-filter: blur(8px);
}

.song-page .container {
    position: relative;
}

.close-song {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 2.2rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-song:hover {
    color: #ffffff;
}

.song-page-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.song-tab-btn {
    font-family: 'Benzin Bold', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    backdrop-filter: blur(4px);
}

.song-tab-btn:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.song-tab-btn.active {
    color: #ffffff;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.song-tab-panel {
    display: none;
}
.song-tab-panel.active {
    display: block;
}

.song-detail {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.song-detail-cover {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}

.song-detail-artist {
    font-family: 'Benzin Regular', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.song-detail-title {
    font-family: 'Benzin Extra Bold', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 25px;
}

.song-services {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.song-services a {
    display: inline-block;
    transition: transform 0.2s ease;
}

.song-services a:hover {
    transform: scale(1.1);
}

.song-services img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.song-services a:hover img {
    filter: brightness(1);
}

.song-lyrics {
    max-width: 100% !important;
    text-align: left !important;
    padding: 0 20px !important;
    margin: 0 !important;
    line-height: 1.4;
    font-family: 'Benzin Regular', sans-serif;
    font-size: 1rem;
    color: #cccccc;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-x: hidden;
    box-sizing: border-box;
}

.song-lyrics p {
    margin: 0;
}

.studio {
    padding: 80px 0 70px;
}

.studio-title {
    font-family: 'Benzin Extra Bold', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.studio-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.studio-logo {
    width: 100%;
    max-width: 460px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.35)) drop-shadow(0 0 26px rgba(var(--accent-rgb), 0.3));
}

.studio-text p {
    font-family: 'Benzin Regular', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 14px;
}

.studio-text p:last-child {
    margin-bottom: 0;
}

.studio-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 26px;
}

.studio-cta {
    display: inline-block;
    font-family: 'Benzin Bold', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.studio-cta-primary {
    background: var(--accent);
    color: #0a0a0a;
    border: 2px solid var(--accent);
}

.studio-cta-primary:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 25px rgba(var(--accent-rgb), 0.3);
}

.studio-cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.studio-cta-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.contacts {
    padding: 80px 0 100px;
}

.contacts-title {
    font-family: 'Benzin Extra Bold', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 26px 20px;
    background: rgba(20, 20, 20, 0.85);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(var(--accent-rgb), 0.25);
    border-color: rgba(var(--accent-rgb), 0.3);
}

.contact-label {
    font-family: 'Benzin Bold', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
}

.contact-value {
    font-family: 'Benzin Regular', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    word-break: break-word;
}

.contacts-note {
    text-align: center;
    font-family: 'Benzin Regular', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 24px;
}

.site-footer {
    padding: 30px 0;
    border-top: none;
}

.footer-container {
    text-align: center;
}

.footer-copy {
    font-family: 'Benzin Regular', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.interviews {
    padding: 80px 0 70px;
}

.interviews-title {
    font-family: 'Benzin Extra Bold', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.interviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.interview-item {
    background: rgba(20, 20, 20, 0.85);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.interview-item:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(var(--accent-rgb), 0.25);
    border-color: rgba(var(--accent-rgb), 0.3);
}

.interview-item iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

.interview-artist {
    font-family: 'Benzin Regular', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 8px 10px 0 10px;
    line-height: 1.3;
    word-wrap: break-word;
}

.interview-title {
    font-family: 'Benzin Regular', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
    text-align: center;
    padding: 0 10px 12px 10px;
    line-height: 1.3;
    word-wrap: break-word;
}

@media (max-width: 992px) {
    .clips-grid,
    .interviews-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .songs-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 25px;
    }
    .song-card {
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    /* Бургер показываем справа, там же выезжает меню */
    .burger {
        display: flex;
    }
    .header-container {
        justify-content: flex-end;
    }
    .main-nav {
        flex: 0 0 auto;
        justify-content: flex-start;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: #0a0a0a;
        padding: 80px 30px 30px;
        transition: right 0.4s ease;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.8);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        overflow-y: auto;
        flex: none;
        justify-content: flex-start;
        margin-top: 0;
    }
    .main-nav.open {
        right: 0;
    }
    .main-nav .nav-list {
        flex-direction: column;
        gap: 1.8rem;
    }
    .main-nav .nav-list a {
        font-size: 1.2rem;
    }

    .hero-logo {
        max-width: 500px;
    }

    .songs-title,
    .clips-title,
    .interviews-title,
    .studio-title,
    .contacts-title {
        font-size: 2rem;
    }

    .studio-content {
        gap: 24px;
    }

    .studio-logo {
        max-width: 300px;
        margin: 0 auto;
    }

    .section-kicker {
        font-size: 0.65rem;
        letter-spacing: 3px;
    }

    .filters {
        justify-content: flex-start;
        gap: 10px;
    }

    .songs-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }
    .song-card {
        max-width: 220px;
    }
    .clips-grid,
    .interviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .song-detail-cover {
        max-width: 300px;
    }
    .song-detail-title {
        font-size: 1.6rem;
    }
    .song-services img {
        width: 40px;
        height: 40px;
    }
    .song-page-tabs {
        gap: 10px;
    }
    .song-tab-btn {
        font-size: 0.8rem;
        padding: 6px 20px;
    }
    .close-song {
        font-size: 1.8rem;
        right: 10px;
    }
    .song-page {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    .song-lyrics {
        padding: 0 15px !important;
        font-size: 0.95rem;
        line-height: 1.5 !important;
        white-space: pre-wrap;
        word-break: break-word;
        overflow-x: hidden;
    }
    .navigation-buttons .back-button {
        display: none !important;
    }
    .navigation-buttons {
        right: 10px;
        gap: 5px;
    }
    .hero-wrapper {
        padding: 80px 20px 30px;
    }
    .hero-content {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 375px;
    }
    .cta-button {
        padding: 12px 24px;
        font-size: 0.7rem;
    }
    .hero-scroll {
        display: none;
    }

    .songs-title,
    .clips-title,
    .interviews-title,
    .studio-title,
    .contacts-title {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    .songs-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    .song-card {
        max-width: 180px;
    }

    .song-detail-cover {
        max-width: 250px;
    }
    .song-detail-title {
        font-size: 1.3rem;
    }
    .song-services img {
        width: 36px;
        height: 36px;
    }
    .song-tab-btn {
        font-size: 0.7rem;
        padding: 4px 14px;
        letter-spacing: 1px;
    }
    .song-lyrics {
        font-size: 0.9rem;
        padding: 0 10px !important;
        line-height: 1.5 !important;
        word-break: break-word;
        overflow-x: hidden;
    }
    .song-page {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    .navigation-buttons {
        right: 5px;
        gap: 3px;
    }
    .close-song {
        font-size: 1.5rem !important;
    }

    .modal-window {
        padding: 20px 16px 20px !important;
    }
    .modal-title {
        font-size: 1.4rem !important;
        margin-bottom: 20px !important;
    }
    .modal-btn {
        font-size: 0.6rem !important;
        padding: 10px 12px !important;
    }
    .modal-btn-ok {
        max-width: 100px !important;
    }
    .error-window .modal-title {
        font-size: 1.2rem !important;
    }

    .hero-wrapper {
        padding: 80px 15px 20px;
    }
}

@media (max-width: 360px) {
    .songs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .song-card {
        max-width: 160px;
    }
    .song-artist {
        font-size: 0.65rem;
    }
    .song-title {
        font-size: 0.8rem;
    }
    .songs-title,
    .clips-title,
    .interviews-title {
        font-size: 1.4rem;
    }
    .hero-logo {
        max-width: 300px;
    }
    .cta-button {
        padding: 10px 16px;
        font-size: 0.6rem;
    }
    .song-lyrics {
        padding: 0 5px !important;
        font-size: 0.85rem;
        word-break: break-word;
        overflow-x: hidden;
    }
    .hero-wrapper {
        padding: 80px 10px 15px;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.modal-window {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px 24px 24px; /* было 50px 40px 40px — уменьшено */
    max-width: 320px; /* было 500px */
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 60px rgba(var(--accent-rgb), 0.08);
    position: relative;
    animation: modalPop 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-title {
    font-family: 'Benzin Extra Bold', sans-serif;
    font-size: 1.7rem; /* было 2.8rem */
    text-transform: uppercase;
    letter-spacing: 4px; /* было 6px */
    color: #ffffff;
    margin-bottom: 24px; /* было 40px */
    line-height: 1.2;
}

.modal-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px; /* было 12px */
}

.modal-btn {
    font-family: 'Benzin Bold', sans-serif;
    font-size: 0.65rem; /* было 1rem */
    text-transform: uppercase;
    letter-spacing: 1.5px; /* было 2px */
    padding: 10px 14px; /* было 16px 20px */
    border: 2px solid #ffffff;
    border-radius: 50px;
    background: #ffffff;
    color: #0a0a0a;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.modal-btn:hover {
    background: transparent;
    color: #ffffff;
}

.error-window .modal-title {
    font-size: 1.3rem; /* было 2rem */
    letter-spacing: 3px;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.modal-btn-ok {
    border-color: #ff6b6b;
    background: transparent;
    color: #ff6b6b;
    flex: none;
    max-width: 120px; /* было 200px */
    margin: 0 auto;
}

.modal-btn-ok:hover {
    background: #ff6b6b;
    color: #0a0a0a;
}

@media (prefers-reduced-motion: reduce) {
    .hero-logo,
    .cta-button,
    .marquee-track,
    .modal-window {
        animation: none !important;
    }
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    * {
        scroll-behavior: auto !important;
    }
}
