@font-face {
    font-family: 'TT Backwards Sans';
    src: url('../fonts/TT Backwards Sans-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --cherry: #8B0000;
    --cherry-light: #C41E3A;
    --cream: #F5F0E6;
    --smoke: #1A1A1A;
    --gold: #C9A227;
    --tape-brown: #3D2914;
    --vinyl-black: #0D0D0D;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PT Serif', Georgia, serif;
    font-weight: 300;
    background: var(--vinyl-black);
    color: var(--cream);
    line-height: 1.7;
}

/* Noise overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(13,13,13,0.95) 0%, transparent 100%);
}

.nav-left {
    min-width: 60px;
}

.nav-right {
    display: flex;
    align-items: center;
    min-width: 60px;
    justify-content: flex-end;
}

.logo {
    font-family: 'TT Backwards Sans', 'Oswald', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.3em;
    color: var(--cherry-light);
    text-decoration: none;
    position: relative;
}

.logo::after {
    content: '1964';
    font-family: 'PT Mono', monospace;
    font-size: 0.5rem;
    position: absolute;
    bottom: -0.5rem;
    right: 0;
    color: var(--gold);
    letter-spacing: 0.2em;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    font-family: 'PT Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cream);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::before {
    content: '//';
    margin-right: 0.5rem;
    color: var(--cherry);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--cherry-light);
}

.nav-links a:hover::before {
    opacity: 1;
}

/* Active nav link styling */
.nav-links a.active {
    opacity: 1;
    color: var(--gold);
}

/* Shop link with vinyl disc - always visible */
.nav-links a.shop-link::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    margin-left: 0.5rem;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, var(--smoke) 25%, transparent 26%),
        radial-gradient(circle at center, var(--gold) 27%, transparent 28%),
        conic-gradient(from 0deg, #2a2a2a, var(--cherry), #2a2a2a, var(--cherry-light), #2a2a2a);
    animation: spin 3s linear infinite;
    box-shadow: 0 0 6px rgba(201, 162, 39, 0.4);
}

.nav-links a.active:hover {
    color: var(--cherry-light);
}

.nav-links a.shop-link:hover::after {
    box-shadow: 0 0 10px rgba(196, 30, 58, 0.6);
}

/* Nav Cart Icon */
.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-cart svg {
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
}

.nav-cart:hover {
    color: var(--cherry-light);
}

.nav-cart:hover svg {
    transform: scale(1.1);
}

.nav-cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--cherry-light);
    color: var(--cream);
    font-family: 'PT Mono', monospace;
    font-size: 0.65rem;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.5);
    animation: cartPulse 0.3s ease;
}

@keyframes cartPulse {
    0% { transform: scale(0.5); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, rgba(13, 13, 13, 0.85) 0%, rgba(26, 26, 26, 0.9) 100%),
        url('../images/alexey-vishnya-23-cover.webp');
    background-size: auto, auto, cover, cover;
    background-position: 20% 80%, 80% 20%, center, center;
    background-repeat: no-repeat;
}

/* Animated vinyl record */
.vinyl-decoration {
    position: absolute;
    right: -15%;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    opacity: 0.15;
}

.vinyl-disc {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, var(--smoke) 15%, transparent 15.5%),
        radial-gradient(circle at center, var(--cherry) 16%, transparent 16.5%),
        repeating-radial-gradient(circle at center, transparent 20%, rgba(255,255,255,0.03) 21%, transparent 22%),
        linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    animation: spin 20s linear infinite;
    box-shadow:
        inset 0 0 100px rgba(0,0,0,0.5),
        0 0 60px rgba(139,0,0,0.2);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem 3rem;
    max-width: 1200px;
}

.hero-subtitle {
    font-family: 'PT Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
    font-family: 'TT Backwards Sans', 'Oswald', sans-serif;
    font-size: clamp(4rem, 15vw, 12rem);
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--gold) 50%, var(--cherry-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
}

.hero-description {
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(245, 240, 230, 0.7);
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 4rem;
    font-family: 'PT Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}

.hero-meta span {
    color: var(--cherry-light);
}

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

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 1.2s forwards;
}

.scroll-indicator span {
    font-family: 'PT Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--cherry-light), transparent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Section styles */
section {
    padding: 8rem 3rem;
    position: relative;
}

.section-label {
    font-family: 'PT Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--cherry);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--cherry);
}

.section-title {
    font-family: 'TT Backwards Sans', 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    color: var(--cream);
}

/* Biography Section */
#biography {
    background: linear-gradient(180deg, var(--smoke) 0%, var(--vinyl-black) 100%);
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.bio-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    padding: 2rem;
    border-left: 2px solid var(--cherry);
    background: linear-gradient(90deg, rgba(139,0,0,0.1) 0%, transparent 100%);
}

.stat-number {
    font-family: 'TT Backwards Sans', 'Oswald', sans-serif;
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-family: 'PT Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,240,230,0.5);
    margin-top: 0.5rem;
}

.bio-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: rgba(245,240,230,0.85);
}

.bio-content p:first-of-type::first-letter {
    font-family: 'TT Backwards Sans', 'Oswald', sans-serif;
    font-size: 4rem;
    float: left;
    line-height: 0.8;
    margin-right: 0.5rem;
    color: var(--cherry-light);
}

.highlight {
    color: var(--gold);
    font-weight: 600;
}

/* Timeline */
.timeline {
    margin-top: 4rem;
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--cherry), var(--gold), var(--cherry));
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cherry);
    border: 2px solid var(--gold);
}

.timeline-year {
    font-family: 'TT Backwards Sans', 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.timeline-text {
    font-size: 1rem;
    color: rgba(245,240,230,0.7);
}

/* Discography Section */
#discography {
    background: var(--vinyl-black);
}

.disco-intro {
    max-width: 800px;
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(245,240,230,0.7);
    margin-bottom: 4rem;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.album-card {
    background: linear-gradient(145deg, rgba(61,41,20,0.3) 0%, rgba(13,13,13,0.8) 100%);
    border: 1px solid rgba(139,0,0,0.3);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.album-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--cherry), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.album-card:hover {
    transform: translateY(-5px);
    border-color: var(--cherry);
    box-shadow: 0 20px 40px rgba(139,0,0,0.2);
}

.album-card:hover::before {
    transform: scaleX(1);
}

.album-year {
    font-family: 'TT Backwards Sans', 'Oswald', sans-serif;
    font-size: 3rem;
    color: var(--cherry);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.album-title {
    font-family: 'TT Backwards Sans', 'Oswald', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.album-type {
    font-family: 'PT Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.album-desc {
    font-size: 0.95rem;
    color: rgba(245,240,230,0.6);
}

/* Sound Engineer Section */
#engineer {
    background:
        radial-gradient(ellipse at 0% 50%, rgba(139,0,0,0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--vinyl-black) 0%, var(--smoke) 100%);
}

.engineer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.engineer-card {
    padding: 2.5rem;
    background: rgba(13,13,13,0.6);
    border: 1px solid rgba(201,162,39,0.2);
    position: relative;
}

.engineer-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(139,0,0,0.15) 0%, rgba(13,13,13,0.8) 100%);
    border-color: var(--cherry);
}

.engineer-artist {
    font-family: 'TT Backwards Sans', 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.engineer-album {
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.engineer-year {
    font-family: 'PT Mono', monospace;
    font-size: 0.7rem;
    color: var(--cherry-light);
}

.engineer-note {
    margin-top: 1rem;
    font-style: italic;
    color: rgba(245,240,230,0.6);
    font-size: 0.95rem;
}

/* Quote Section */
.quote-section {
    padding: 10rem 3rem;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(201,162,39,0.08) 0%, transparent 60%),
        var(--vinyl-black);
    text-align: center;
}

.quote-mark {
    font-family: 'TT Backwards Sans', 'Oswald', sans-serif;
    font-size: 10rem;
    color: var(--cherry);
    opacity: 0.2;
    line-height: 0.5;
}

.quote-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    max-width: 900px;
    margin: 0 auto 2rem;
    color: var(--cream);
}

.quote-author {
    font-family: 'PT Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Studio Section */
#studio {
    background:
        linear-gradient(180deg, var(--smoke) 0%, transparent 15%, transparent 85%, var(--vinyl-black) 100%),
        radial-gradient(ellipse at 20% 80%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, rgba(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.85) 100%),
        url('../images/yanshiva.webp');
    background-size: 100% 100%, auto, auto, cover, cover;
    background-position: center, 20% 80%, 80% 20%, center, center;
    background-repeat: no-repeat;
}

.studio-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.studio-text p {
    font-size: 1.15rem;
    color: rgba(245,240,230,0.8);
    margin-bottom: 1.5rem;
}

.studio-visual {
    position: relative;
    height: 400px;
}

.cassette {
    position: absolute;
    width: 300px;
    height: 190px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 8px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cassette:hover {
    transform: translate(-50%, -50%) rotate(-5deg) scale(1.05);
    box-shadow:
        0 25px 70px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 0 30px rgba(196, 30, 58, 0.3);
}

.cassette:hover .cassette-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.cassette-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(196, 30, 58, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    z-index: 10;
}

.cassette-play-btn:hover {
    background: var(--cherry-light);
}

.cassette-play-btn svg {
    width: 24px;
    height: 24px;
    color: var(--cream);
    margin-left: 4px;
}

.cassette-hint {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'PT Mono', monospace;
    font-size: 0.75rem;
    color: rgba(245, 240, 230, 0.5);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cassette:hover + .cassette-hint,
.studio-visual:hover .cassette-hint {
    opacity: 1;
}

.cassette::before {
    content: 'ЯНШИВА ШЕЛА';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'PT Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    background: var(--tape-brown);
    padding: 0.3rem 1rem;
}

.cassette-window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 80px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.reel {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #3a3a3a 30%, #1a1a1a 32%),
        conic-gradient(from 0deg, #2a2a2a, #1a1a1a, #2a2a2a, #1a1a1a, #2a2a2a);
    animation: spin 4s linear infinite;
}

.reel:nth-child(2) {
    animation-direction: reverse;
}

.cassette-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'TT Backwards Sans', 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--cream);
    opacity: 0.5;
}

/* Contact Section */
#contact {
    background: var(--vinyl-black);
    padding-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: 'TT Backwards Sans', 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-info p {
    color: rgba(245,240,230,0.7);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'PT Mono', monospace;
    font-size: 0.85rem;
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1rem;
    background: rgba(139,0,0,0.1);
    border: 1px solid transparent;
}

.social-link:hover {
    border-color: var(--cherry);
    background: rgba(139,0,0,0.2);
    transform: translateX(10px);
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: var(--cherry-light);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.platform-link {
    padding: 1.5rem;
    background: rgba(201,162,39,0.05);
    border: 1px solid rgba(201,162,39,0.2);
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.platform-link:hover {
    background: rgba(201,162,39,0.1);
    border-color: var(--gold);
}

.platform-name {
    font-family: 'TT Backwards Sans', 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 0.3rem;
}

.platform-type {
    font-family: 'PT Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Footer */
footer {
    padding: 3rem;
    border-top: 1px solid rgba(139,0,0,0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'PT Mono', monospace;
    font-size: 0.7rem;
    color: rgba(245,240,230,0.4);
}

.footer-copy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-copy span {
    color: var(--cherry);
}

.footer-credit {
    opacity: 0.5;
}

.footer-credit a {
    color: rgba(245,240,230,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--cream);
}

/* Responsive */
@media (max-width: 1024px) {
    .bio-grid,
    .studio-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .engineer-grid {
        grid-template-columns: 1fr;
    }

    .engineer-card.featured {
        grid-column: span 1;
    }

    .vinyl-decoration {
        right: -40%;
        opacity: 0.08;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .burger-menu {
        display: flex;
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-cart {
        position: fixed;
        bottom: 1.5rem;
        right: 1.5rem;
        width: 56px;
        height: 56px;
        background: var(--cherry);
        border-radius: 50%;
        box-shadow: 0 4px 20px rgba(139, 0, 0, 0.5);
        z-index: 1000;
        margin-left: 0;
    }

    .nav-cart svg {
        width: 24px;
        height: 24px;
    }

    .nav-cart-count {
        top: -2px;
        right: -2px;
        min-width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.2rem;
        opacity: 1;
    }

    section {
        padding: 5rem 1.5rem;
    }

    .hero-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .scroll-indicator {
        bottom: 1.5rem;
    }

    .scroll-line {
        height: 40px;
    }

    .albums-grid {
        grid-template-columns: 1fr;
    }

    .platform-grid {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cassette {
        width: 240px;
        height: 152px;
    }

    .cassette-window {
        width: 140px;
        height: 60px;
    }

    .reel {
        width: 40px;
        height: 40px;
    }

    .cassette-play-btn {
        width: 50px;
        height: 50px;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .cassette-play-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    line-height: 1;
}

.video-modal-close:hover {
    opacity: 1;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 4px;
    overflow: hidden;
    background: #000;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(139, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    text-align: center;
    margin-top: 1rem;
    font-family: 'PT Mono', monospace;
    font-size: 0.8rem;
    color: rgba(245, 240, 230, 0.5);
    letter-spacing: 0.1em;
}
