:root {
    --primary: #ffffff;
    --accent: #ff3366;
    --bg-dark: #0a0a0a;
    --bg-card: #151515;
    --text-muted: #888888;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-out;
}
.loader.fade-out {
    opacity: 0;
    pointer-events: none;
}
.loader-text {
    font-size: 2rem;
    letter-spacing: 10px;
    font-family: 'Playfair Display', serif;
    animation: pulse 2s infinite;
}

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

/* Nav */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: background 0.3s;
}
nav.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--accent);
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 0.5s ease-out;
}
.hero:hover .hero-bg {
    transform: scale(1);
}
.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,1) 100%);
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}
.hero-content h1 {
    font-size: 8rem;
    line-height: 0.9;
    margin-bottom: 1rem;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s forwards 1s;
}
.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s;
}
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s;
    opacity: 0;
    animation: fadeIn 1s forwards 2s;
}
.btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s forwards 2.5s;
}
.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}
.arrow {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    position: relative;
}
.arrow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--primary);
    animation: scrollDown 2s infinite;
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    to { opacity: 1; }
}
@keyframes scrollDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* About */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.about {
    padding: 10rem 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.5s;
}
.about-image:hover img {
    filter: grayscale(0%);
}
.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent);
    z-index: -1;
}
.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}
.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Discography */
.discography {
    padding: 5rem 0 10rem;
}
.section-title {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.1;
}
.album-showcase {
    background: var(--bg-card);
    padding: 4rem;
    position: relative;
    overflow: hidden;
}
.album-info {
    position: relative;
    z-index: 2;
    max-width: 600px;
}
.album-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}
.album-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.tracklist {
    list-style: none;
}
.tracklist li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--primary);
    font-size: 0.9rem;
}
.bricks-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.02) 0px,
        rgba(255,255,255,0.02) 20px,
        transparent 20px,
        transparent 40px
    );
    z-index: 1;
}

/* Footer */
footer {
    padding: 3rem 0;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
}
footer p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 4rem; }
    .about-grid { grid-template-columns: 1fr; }
    .album-showcase { padding: 2rem; }
    .bricks-bg { display: none; }
    .nav-links { display: none; }
}
