:root {
    --bg: #0a0808;
    --gold: #d4af37;
    --cream: #faf5eb;
    --font-head: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--cream); font-family: var(--font-body); }

.nav { padding: 2.5rem 5rem; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(212,175,55,0.2); }
.logo { font-family: var(--font-head); font-size: 1.6rem; color: var(--gold); letter-spacing: 2px; }
.tag { font-size: 0.8rem; letter-spacing: 3px; color: #888; }

.hero { height: 75vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 2rem; }
h1 { font-family: var(--font-head); font-size: 4rem; font-style: italic; color: var(--gold); margin-bottom: 1.5rem; max-width: 900px; line-height: 1.1; }
p { font-size: 1.2rem; color: #ccc; max-width: 600px; margin-bottom: 2.5rem; font-weight: 300; }

.btn-play { background: var(--gold); color: #000; border: none; padding: 1rem 2.5rem; font-family: var(--font-body); font-weight: 600; cursor: pointer; transition: 0.3s; }
.btn-play:hover { background: #fff; box-shadow: 0 0 30px rgba(212,175,55,0.6); }

.discography { padding: 5rem; max-width: 1200px; margin: 0 auto; }
.discography h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--gold); margin-bottom: 3rem; text-align: center; }
.film-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.film-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(212,175,55,0.2); overflow: hidden; border-radius: 8px; }
.film-card img { width: 100%; height: 350px; object-fit: cover; transition: 0.5s; }
.film-card:hover img { transform: scale(1.05); }
.film-info { padding: 2rem; }
.film-info h3 { font-family: var(--font-head); font-size: 1.8rem; color: var(--gold); margin-bottom: 0.5rem; }