@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a2e;
    --bg-card-hover: #1f1f35;
    --accent: #c9a84c;
    --accent-glow: rgba(201, 168, 76, 0.3);
    --accent-light: #d4b96a;
    --text-primary: #e8e8f0;
    --text-secondary: #8888a0;
    --text-dim: #55556a;
    --border: #2a2a40;
    --gradient-1: linear-gradient(135deg, #c9a84c, #d4b96a);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: var(--accent-light); text-decoration: none; }
a:hover { color: var(--accent); }

.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
}
.navbar-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    height: 64px;
}
.logo {
    font-size: 1.5rem; font-weight: 800;
    background: var(--gradient-1); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}
.logo span { font-weight: 400; opacity: 0.8; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    color: var(--text-secondary); font-size: 0.9rem; font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }

.hero {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
}
.hero::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 50px; padding: 0.4rem 1.2rem;
    font-size: 0.85rem; color: var(--accent-light);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hero-badge .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent); animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px transparent; }
}
.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem); font-weight: 900;
    line-height: 1.1; margin-bottom: 1rem;
    max-width: 800px;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.hero h1 .gradient {
    background: var(--gradient-1); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.2rem; color: var(--text-secondary);
    max-width: 600px; margin-bottom: 3rem;
    font-style: italic;
    letter-spacing: 2px;
}

.album-showcase { margin: 1rem 0; perspective: 1000px; }
.album-art {
    width: 260px; max-width: 80vw; height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201, 168, 76, 0.15);
    transition: transform 0.5s ease;
}
.album-art:hover { transform: scale(1.03); }

.artist-info { text-align: center; }
.artist-details {
    display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
    margin-top: 2rem;
}
.detail-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 2rem 3rem;
    min-width: 250px; transition: all 0.3s;
}
.detail-card:hover {
    border-color: var(--accent); transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.detail-label {
    font-size: 0.75rem; color: var(--text-dim);
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 0.5rem;
}
.detail-value { font-size: 1.5rem; font-weight: 700; }
.gradient-text {
    background: var(--gradient-1); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.release-card {
    display: flex; gap: 2rem; align-items: center;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 2rem;
    max-width: 700px; margin: 0 auto;
    transition: all 0.3s;
}
.release-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.release-img {
    width: 180px; height: 180px; object-fit: cover;
    border-radius: 12px; flex-shrink: 0;
}
.release-info h3 {
    font-size: 1.3rem; margin-bottom: 0.5rem;
    color: var(--accent-light);
}
.release-info p { color: var(--text-secondary); font-size: 0.95rem; }

.social-links {
    display: flex; gap: 1.5rem; justify-content: center;
    margin-top: 2rem; flex-wrap: wrap;
}
.social-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 0.8rem 1.5rem;
    color: var(--text-primary); font-weight: 500;
    transition: all 0.3s; font-size: 0.95rem;
}
.social-link:hover {
    border-color: var(--accent); transform: translateY(-2px);
    color: var(--accent-light);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.social-link svg { width: 20px; height: 20px; fill: currentColor; }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn {
    padding: 0.9rem 2rem; border-radius: 12px; font-size: 1rem;
    font-weight: 600; cursor: pointer; transition: all 0.3s;
    border: none; font-family: 'Inter', sans-serif;
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary {
    background: var(--gradient-1); color: #0a0a0f;
    box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); color: #0a0a0f; }
.btn-secondary {
    background: var(--bg-card); color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--bg-card-hover); border-color: var(--accent); }

.section { max-width: 1000px; margin: 0 auto; padding: 6rem 2rem; }
.section-title {
    font-size: 2.5rem; font-weight: 800; text-align: center;
    margin-bottom: 1rem; letter-spacing: 2px;
}
.section-sub {
    text-align: center; color: var(--text-secondary);
    max-width: 600px; margin: 0 auto 3rem;
    font-style: italic;
}

.footer {
    text-align: center; padding: 3rem 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-dim); font-size: 0.85rem;
}
.footer a { color: var(--text-secondary); }

.hamburger {
    display: none; cursor: pointer; flex-direction: column;
    gap: 5px; padding: 5px; z-index: 1100;
}
.hamburger span {
    width: 24px; height: 2px; background: var(--text-primary);
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none; position: fixed; top: 64px; left: 0;
    width: 100%; height: calc(100vh - 64px);
    background: rgba(10, 10, 15, 0.95); backdrop-filter: blur(20px);
    z-index: 1050; flex-direction: column;
    align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
    font-size: 1.5rem; font-weight: 600;
    color: var(--text-secondary); transition: color 0.3s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--text-primary); }

@media (max-width: 768px) {
    .nav-links { display: none !important; }
    .hamburger { display: flex; }
    .hero h1 { font-size: 2.5rem; letter-spacing: 2px; }
    .album-art { width: 300px; }
    .release-card { flex-direction: column; text-align: center; }
    .release-img { width: 200px; height: 200px; }
    .detail-card { min-width: 200px; padding: 1.5rem 2rem; }
    .artist-details { gap: 1rem; }
}
