:root {
    --bg: #050505;
    --card-bg: #111111;
    --gold: #FFD700;
    --gold-dim: #b89b00;
    --text: #ffffff;
    --gray: #888888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; 
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor, .cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--gold);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 215, 0, 0.5);
    transition: transform 0.1s;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: 0.4s;
}

nav.scrolled {
    background: rgba(5, 5, 5, 0.95);
    padding: 1rem 5%;
    backdrop-filter: blur(10px);
}

.logo {
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.gold-dot { color: var(--gold); }

.nav-links a {
    color: var(--text);
    text-decoration: none;
    margin-left: 3rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--gold); }

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 70%);
    position: relative;
}

#hero h3 {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

#hero h1 {
    font-family: 'Syncopate', sans-serif;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 2rem;
}

.shine-text {
    background: linear-gradient(to right, #b89b00 0%, #FFD700 50%, #b89b00 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.hero-btns { display: flex; gap: 20px; justify-content: center; }

.btn {
    padding: 15px 40px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-gold {
    background: var(--gold);
    color: #000;
}

.btn-gold:hover {
    background: var(--text);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

/* Common Section */
section {
    padding: 100px 10%;
    min-height: 100vh;
}

.section-header { margin-bottom: 60px; }
.section-header h2 { font-size: 3rem; text-transform: uppercase; font-family: 'Syncopate', sans-serif; }
.gold { color: var(--gold); }

/* Animation Hidden State */
.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Roster */
.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.artist-card {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    filter: grayscale(100%);
}

.artist-card:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, #000, transparent);
}

/* Releases */
.release-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.release-item {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    padding: 20px;
    border: 1px solid #222;
    transition: 0.3s;
}

.release-item:hover {
    border-color: var(--gold);
    transform: translateX(10px);
}

.release-img img { width: 80px; height: 80px; object-fit: cover; margin-right: 20px; }
.release-info { flex-grow: 1; }
.release-info h4 { font-size: 1.2rem; margin-bottom: 5px; }
.release-info p { color: var(--gray); }

.icon-btn {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    transition: 0.3s;
}
.icon-btn:hover { color: var(--gold); }

/* Contact */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.input-group { margin-bottom: 20px; }
input {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid #333;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: 0.3s;
}
input:focus { border-color: var(--gold); box-shadow: 0 0 10px rgba(255, 215, 0, 0.1); }

/* Footer */
footer {
    padding: 50px 10%;
    border-top: 1px solid #222;
    text-align: center;
}
.socials { margin: 20px 0; font-size: 1.5rem; }
.socials a { color: var(--text); margin: 0 15px; transition: 0.3s; }
.socials a:hover { color: var(--gold); }

/* Mobile */
@media (max-width: 768px) {
    #hero h1 { font-size: 3rem; }
    .nav-links { display: none; }
    .burger { display: block; } 
    .cursor, .cursor-follower { display: none; } 
    * { cursor: auto; }
}