/* ===== VARIABLES ===== */
:root {
    --bg: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --text-muted: #888888;
    --accent-red: #e63946;
    --accent-teal: #2ec4b6;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --nav-height: 70px;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

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

img {
    display: block;
    max-width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s, backdrop-filter 0.3s;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text);
    transition: color 0.3s;
}

.nav-logo:hover {
    color: var(--accent-red);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s;
}

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

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 50%, rgba(230, 57, 70, 0.15) 0%, rgba(46, 196, 182, 0.06) 35%, var(--bg) 65%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg img {
    max-height: 90%;
    max-width: 50%;
    object-fit: contain;
    opacity: 0.25;
    filter: blur(1px);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at center, black 25%, transparent 70%);
    mask-image: radial-gradient(ellipse 70% 70% at center, black 25%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 24px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.hero-line {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-shadow: 0 0 80px rgba(230, 57, 70, 0.3);
}

.hero-socials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, background 0.3s, color 0.3s, box-shadow 0.3s;
    color: var(--text);
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.1);
}

.social-icon[data-brand="spotify"]:hover { background: #1DB954; box-shadow: 0 8px 25px rgba(29, 185, 84, 0.4); }
.social-icon[data-brand="apple"]:hover { background: #fc3c44; box-shadow: 0 8px 25px rgba(252, 60, 68, 0.4); }
.social-icon[data-brand="yandex"]:hover { background: #ffcc00; color: #000; box-shadow: 0 8px 25px rgba(255, 204, 0, 0.4); }
.social-icon[data-brand="youtube"]:hover { background: #FF0000; box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4); }
.social-icon[data-brand="vk"]:hover { background: #0077FF; box-shadow: 0 8px 25px rgba(0, 119, 255, 0.4); }
.social-icon[data-brand="instagram"]:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4); }
.social-icon[data-brand="twitch"]:hover { background: #9146FF; box-shadow: 0 8px 25px rgba(145, 70, 255, 0.4); }
.social-icon[data-brand="deezer"]:hover { background: #A238FF; box-shadow: 0 8px 25px rgba(162, 56, 255, 0.4); }
.social-icon[data-brand="zvuk"]:hover { background: #FF5722; box-shadow: 0 8px 25px rgba(255, 87, 34, 0.4); }
.social-icon[data-brand="genius"]:hover { background: #FFFF64; color: #000; box-shadow: 0 8px 25px rgba(255, 255, 100, 0.4); }
.social-icon[data-brand="telegram"]:hover { background: #26A5E4; box-shadow: 0 8px 25px rgba(38, 165, 228, 0.4); }
.social-icon[data-brand="tiktok"]:hover { background: #000; box-shadow: 0 8px 25px rgba(238, 29, 82, 0.4); }

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-size: 1.5rem;
    color: var(--text-muted);
    animation: bounce 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== SECTIONS (shared) ===== */
.section {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 80px;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-bg img {
    max-height: 85%;
    max-width: 45%;
    object-fit: contain;
    opacity: 0.18;
    filter: blur(1px);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at center, black 20%, transparent 70%);
    mask-image: radial-gradient(ellipse 70% 70% at center, black 20%, transparent 70%);
}

/* Per-section gradient backgrounds */
.section-albums {
    background: radial-gradient(ellipse at 50% 40%, rgba(230, 57, 70, 0.12) 0%, rgba(46, 196, 182, 0.05) 40%, var(--bg) 70%);
}

.section-clips {
    background: radial-gradient(ellipse at 50% 40%, rgba(244, 162, 97, 0.12) 0%, rgba(230, 57, 70, 0.05) 40%, var(--bg) 70%);
}

.section-gallery {
    background: radial-gradient(ellipse at 50% 40%, rgba(155, 93, 229, 0.12) 0%, rgba(58, 134, 255, 0.05) 40%, var(--bg) 70%);
}

.section-contacts {
    background: radial-gradient(ellipse at 50% 40%, rgba(58, 134, 255, 0.10) 0%, rgba(145, 70, 255, 0.05) 40%, var(--bg) 70%);
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-teal));
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    margin: 60px 0 40px;
    color: var(--text-muted);
}

.section-placeholder {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    padding: 80px 0;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 16px;
}

/* ===== ALBUMS ===== */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.album-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.album-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: var(--bg-card-hover);
}

.album-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.4s;
}

.album-card:hover .album-cover img {
    transform: scale(1.05);
}

.album-cover-fallback {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.1em;
}

.album-info {
    padding: 20px;
}

.album-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}

.album-year {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 12px;
}

.album-links {
    display: flex;
    gap: 10px;
}

.album-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.album-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text);
    transform: scale(1.15);
}

/* ===== SINGLES ===== */
.singles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.single-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.single-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.single-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--grad);
}

.single-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.4s;
}

.single-card:hover .single-cover img {
    transform: scale(1.05);
}

.single-info {
    padding: 12px 14px 4px;
    flex-grow: 1;
}

.single-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    display: block;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.single-year {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.single-links {
    padding: 6px 14px 14px;
    display: flex;
    gap: 8px;
}

.single-links a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.single-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text);
    transform: scale(1.15);
}

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

.clip-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.clip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.clip-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.clip-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s, filter 0.4s;
}

.clip-card:hover .clip-thumb img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.clip-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clip-play i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    transition: transform 0.3s, background 0.3s;
    padding-left: 4px;
}

.clip-card:hover .clip-play i {
    transform: scale(1.15);
    background: rgba(255, 0, 0, 1);
}

.clip-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 16px 20px;
}

/* ===== CONTACTS ===== */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 16px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
    background: var(--bg-card-hover);
}

.contact-card i {
    font-size: 2rem;
    transition: color 0.3s, text-shadow 0.3s;
}

.contact-card span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s;
}

.contact-card:hover span {
    color: var(--text);
}

.contact-card[data-brand="vk"]:hover i { color: #0077FF; text-shadow: 0 0 20px rgba(0, 119, 255, 0.5); }
.contact-card[data-brand="instagram"]:hover i { color: #E4405F; text-shadow: 0 0 20px rgba(228, 64, 95, 0.5); }
.contact-card[data-brand="youtube"]:hover i { color: #FF0000; text-shadow: 0 0 20px rgba(255, 0, 0, 0.5); }
.contact-card[data-brand="twitch"]:hover i { color: #9146FF; text-shadow: 0 0 20px rgba(145, 70, 255, 0.5); }
.contact-card[data-brand="spotify"]:hover i { color: #1DB954; text-shadow: 0 0 20px rgba(29, 185, 84, 0.5); }
.contact-card[data-brand="apple"]:hover i { color: #fc3c44; text-shadow: 0 0 20px rgba(252, 60, 68, 0.5); }
.contact-card[data-brand="yandex"]:hover i { color: #ffcc00; text-shadow: 0 0 20px rgba(255, 204, 0, 0.5); }
.contact-card[data-brand="deezer"]:hover i { color: #A238FF; text-shadow: 0 0 20px rgba(162, 56, 255, 0.5); }
.contact-card[data-brand="zvuk"]:hover i { color: #FF5722; text-shadow: 0 0 20px rgba(255, 87, 34, 0.5); }
.contact-card[data-brand="genius"]:hover i { color: #FFFF64; text-shadow: 0 0 20px rgba(255, 255, 100, 0.5); }
.contact-card[data-brand="telegram"]:hover i { color: #26A5E4; text-shadow: 0 0 20px rgba(38, 165, 228, 0.5); }
.contact-card[data-brand="tiktok"]:hover i { color: #EE1D52; text-shadow: 0 0 20px rgba(238, 29, 82, 0.5); }

/* ===== GALLERY ===== */
.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.gallery-album {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery-album-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.gallery-date {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text);
}

.gallery-album-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.gallery-album-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s, filter 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.15);
}

.gallery-item-more {
    cursor: pointer;
}

.gallery-more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.02em;
    transition: background 0.3s;
}

.gallery-item-more:hover .gallery-more-overlay {
    background: rgba(0, 0, 0, 0.35);
}

/* ===== VIEWER ===== */
.viewer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.viewer.active {
    opacity: 1;
    pointer-events: auto;
}

.viewer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.viewer-img {
    position: relative;
    z-index: 1;
    max-width: 85vw;
    max-height: calc(100vh - 160px);
    object-fit: contain;
    border-radius: 4px;
    user-select: none;
}

.viewer-close {
    position: absolute;
    top: 16px;
    right: 24px;
    z-index: 10;
    font-size: 2.2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.viewer-close:hover {
    opacity: 1;
}

.viewer-top {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.viewer-date {
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
}

.viewer-prev,
.viewer-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s, background 0.3s;
}

.viewer-prev:hover,
.viewer-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
}

.viewer-prev { left: 16px; }
.viewer-next { right: 16px; }

.viewer-thumbs {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 6px;
    max-width: 80vw;
    overflow-x: auto;
    padding: 8px 12px;
    scrollbar-width: none;
}

.viewer-thumbs::-webkit-scrollbar {
    display: none;
}

.viewer-thumb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.4;
    border: 2px solid transparent;
    transition: opacity 0.3s, border-color 0.3s;
}

.viewer-thumb:hover {
    opacity: 0.7;
}

.viewer-thumb.active {
    opacity: 1;
    border-color: var(--accent-red);
}

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

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 30px 24px;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* Tablet landscape */
@media (max-width: 1024px) {
    .albums-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .singles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contacts-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-album-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet portrait & small tablets */
@media (max-width: 768px) {
    :root {
        --nav-height: 60px;
    }

    .nav {
        padding: 0 16px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        transition: right 0.3s ease;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 100dvh;
    }

    .hero-bg img {
        max-width: 70%;
        max-height: 70%;
    }

    .hero-title {
        margin-bottom: 32px;
    }

    .hero-socials {
        gap: 10px;
    }

    .social-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .section {
        padding: 90px 0 60px;
        min-height: auto;
    }

    .section-title {
        margin-bottom: 36px;
    }

    .section-subtitle {
        margin: 40px 0 28px;
    }

    .container {
        padding: 0 16px;
    }

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

    .album-info {
        padding: 14px;
    }

    .album-name {
        font-size: 1.05rem;
    }

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

    .clips-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .clip-play i {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .clip-title {
        font-size: 1rem;
        padding: 12px 16px;
    }

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

    .contact-card {
        padding: 20px 10px;
        gap: 8px;
    }

    .contact-card i {
        font-size: 1.5rem;
    }

    .contact-card span {
        font-size: 0.7rem;
    }

    .gallery-album-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        gap: 30px;
    }

    .viewer-prev,
    .viewer-next {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .viewer-prev { left: 8px; }
    .viewer-next { right: 8px; }

    .viewer-thumb {
        width: 44px;
        height: 44px;
    }

    .viewer-img {
        max-width: 92vw;
        max-height: calc(100dvh - 140px);
    }

    .viewer-thumbs {
        bottom: 10px;
        max-width: 90vw;
        padding: 6px 8px;
    }

    .section-bg img {
        max-width: 60%;
        max-height: 60%;
        opacity: 0.12;
    }
}

/* Phone */
@media (max-width: 480px) {
    .hero {
        min-height: 100svh;
    }

    .hero-bg img {
        max-width: 85%;
        max-height: 60%;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-title {
        margin-bottom: 28px;
    }

    .hero-scroll {
        bottom: 20px;
    }

    .section {
        padding: 80px 0 50px;
    }

    .section-title {
        margin-bottom: 28px;
    }

    .section-title::after {
        width: 40px;
        margin-top: 12px;
    }

    .albums-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

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

    .single-info {
        padding: 10px 10px 2px;
    }

    .single-name {
        font-size: 0.85rem;
    }

    .single-links {
        padding: 4px 10px 10px;
    }

    .clips-grid {
        gap: 12px;
    }

    .clip-card {
        border-radius: 12px;
    }

    .contacts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .contact-card {
        padding: 16px 8px;
        border-radius: 12px;
        gap: 6px;
    }

    .contact-card i {
        font-size: 1.3rem;
    }

    .contact-card span {
        font-size: 0.6rem;
        letter-spacing: 0.02em;
    }

    .gallery-album-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .gallery-date {
        font-size: 1.1rem;
    }

    .gallery-more-overlay {
        font-size: 1.5rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .viewer-top {
        top: 12px;
        font-size: 0.75rem;
        gap: 10px;
    }

    .viewer-close {
        top: 8px;
        right: 14px;
        font-size: 2rem;
    }

    .viewer-img {
        max-width: 96vw;
        max-height: calc(100dvh - 120px);
    }

    .viewer-thumbs {
        bottom: 6px;
        gap: 4px;
        max-width: 94vw;
    }

    .viewer-thumb {
        width: 38px;
        height: 38px;
        border-radius: 4px;
    }

    .section-bg img {
        max-width: 80%;
        opacity: 0.08;
    }

    .footer {
        padding: 24px 16px;
        font-size: 0.8rem;
    }
}

/* Very small phones */
@media (max-width: 360px) {
    .hero-line {
        letter-spacing: 0.04em;
    }

    .hero-socials {
        gap: 8px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .contacts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .albums-grid {
        max-width: 280px;
    }

    .singles-grid {
        gap: 8px;
    }

    .container {
        padding: 0 12px;
    }
}
