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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0a0a0a;
    color: #f5f5f5;
    line-height: 1.6;
    font-size: 16px;
}

:root {
    --accent: #d4a574;
    --black: #0a0a0a;
    --white: #f5f5f5;
    --grey: #2a2a2a;
}

/* Grain Effect Overlay */
@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-2px, -1px); }
    20% { transform: translate(-2px, 2px); }
    30% { transform: translate(2px, -2px); }
    40% { transform: translate(-1px, -1px); }
    50% { transform: translate(1px, 2px); }
    60% { transform: translate(-2px, -2px); }
    70% { transform: translate(2px, 1px); }
    80% { transform: translate(-1px, 1px); }
    90% { transform: translate(1px, -2px); }
}

.grain::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' result='noise' /%3E%3CfeColorMatrix in='noise' type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 300px 300px;
    opacity: 0.08;
    z-index: 9999;
    animation: grain 8s steps(10) infinite;
}

/* Navigation */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    gap: 32px;
    padding: 28px 40px;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7), transparent);
    backdrop-filter: blur(4px);
}

.nav-link {
    text-decoration: none;
    color: #f5f5f5;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: grayscale(20%) contrast(1.2) brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    mix-blend-mode: overlay;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 40px;
}

.hero h1 {
    font-size: 80px;
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 24px;
    text-transform: lowercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
}

/* Main Content */
main {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.container {
    padding: 80px 60px;
    background-color: #0a0a0a;
}

section {
    border-top: 1px solid #333333;
}

section:first-of-type {
    border-top: 2px solid var(--accent);
}

h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: var(--accent);
}

/* Bio Section */
#bio p {
    font-size: 18px;
    line-height: 1.9;
    color: #cccccc;
    max-width: 800px;
}

/* Music/Releases Section */
#music .container {
    padding: 80px 60px;
}

.release {
    margin-bottom: 80px;
    display: grid;
    gap: 40px;
    align-items: start;
}

.release-content {
    display: flex;
    gap: 60px;
    align-items: start;
}

.release-text {
    flex: 1;
}

.release-header {
    margin-bottom: 24px;
}

.release-header h3 {
    font-size: 36px;
    font-weight: 400;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}

.year {
    font-size: 13px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.release-image {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    border: 1px solid #333333;
    object-fit: cover;
    background-color: #1a1a1a;
    filter: contrast(1.1) brightness(0.95);
}

.release-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.release-links a {
    padding: 12px 24px;
    border: 1px solid #444444;
    color: #f5f5f5;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    display: inline-block;
    background-color: transparent;
}

.release-links a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background-color: rgba(212, 165, 116, 0.1);
}

/* Video Banner Section */
.video-banner {
    position: relative;
    width: 100%;
    height: 65vh;
    overflow: hidden;
}

.video-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    filter: grayscale(15%) contrast(1.15) brightness(0.85);
}

.video-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.1) 50%,
        rgba(10, 10, 10, 0.3) 100%
    );
    pointer-events: none;
}

/* Video Section */
#video .container {
    padding: 80px 60px;
}

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

.video-item video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background-color: #111111;
    border: 1px solid #333333;
    filter: contrast(1.05) brightness(0.95);
}

.video-item video:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.video-title {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #999999;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #video .container {
        padding: 60px 32px;
    }
}

@media (max-width: 480px) {
    #video .container {
        padding: 40px 20px;
    }
}

/* Contact Section */
#contact .container {
    padding: 80px 60px;
}

.contact-info {
    margin-bottom: 60px;
    max-width: 800px;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.contact-info strong {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.7;
}

.social {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.social a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.social a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* Footer */
footer {
    padding: 60px 60px;
    text-align: center;
    font-size: 11px;
    color: #777777;
    border-top: 1px solid #333333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 54px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .nav-fixed {
        padding: 20px 24px;
        gap: 24px;
    }

    .container {
        padding: 60px 32px;
    }

    h2 {
        font-size: 32px;
    }

    .release-content {
        flex-direction: column;
        gap: 32px;
    }

    .release-image {
        max-width: 240px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .nav-fixed {
        padding: 16px 16px;
        gap: 16px;
        font-size: 10px;
    }

    .container {
        padding: 40px 20px;
    }

    h2 {
        font-size: 26px;
    }

    .release-header h3 {
        font-size: 24px;
    }

    #bio p,
    .contact-info p {
        font-size: 15px;
    }

    .release-links {
        gap: 8px;
    }

    .release-links a {
        padding: 10px 16px;
        font-size: 11px;
    }

    .social {
        gap: 20px;
    }
}
