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

:root {
    --bg-dark: #08080d;
    --bg-card: #0f0f16;
    --bg-card-hover: #161621;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.5);
    --accent: #6b9fd4;
    --accent-glow: rgba(107, 159, 212, 0.25);
    --border: rgba(255, 255, 255, 0.06);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Background glow effect */
.background-glow {
    position: fixed;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: linear-gradient(to bottom, var(--bg-dark) 0%, transparent 100%);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
}

/* Hero */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
}

.hero-logo {
    width: 180px;
    height: auto;
    margin-bottom: 32px;
    filter: drop-shadow(0 0 40px var(--accent-glow));
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Artists Section */
.artists {
    padding: 60px 0 100px;
}

.artists h2 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 40px;
    text-align: center;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.artist-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

a.artist-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(107, 159, 212, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.artist-icon {
    width: 48px;
    height: 48px;
    background: rgba(107, 159, 212, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.artist-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.artist-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.artist-genre {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 16px;
}

.artist-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.artist-link {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

a.artist-card:hover .artist-link {
    color: var(--accent);
}

.artist-status {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.artist-card.umbral {
    cursor: default;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(to bottom, transparent, rgba(107, 159, 212, 0.03));
}

.contact h2 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.contact-intro {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.contact-email {
    display: inline-block;
    font-size: 1.1rem;
    color: var(--accent);
    text-decoration: none;
    padding: 14px 28px;
    background: rgba(107, 159, 212, 0.1);
    border: 1px solid rgba(107, 159, 212, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: rgba(107, 159, 212, 0.15);
    border-color: rgba(107, 159, 212, 0.4);
    box-shadow: 0 0 30px rgba(107, 159, 212, 0.2);
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
    .artists-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-logo {
        width: 140px;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 70vh;
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .artist-card {
        padding: 24px;
    }

    .logo-text {
        font-size: 0.85rem;
    }
}
