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

:root {
    --neon: #3dffc2;
    --neon-dim: #2ab891;
    --bg: #0a0a0a;
    --bg-card: #111111;
    --text: #e0e0e0;
    --text-muted: #888888;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Banner */
.banner {
    width: 100%;
    margin-bottom: 2rem;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 2px solid var(--neon);
}

/* Hero */
.hero {
    text-align: center;
    padding: 2rem 0 3rem;
    border-bottom: 1px solid #222;
}

.hero-photo {
    width: 220px;
    height: 220px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--neon);
    box-shadow: 0 0 30px rgba(61, 255, 194, 0.25);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 0 0 30px rgba(61, 255, 194, 0.3);
}

.tagline {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-style: italic;
}

.quote {
    margin-top: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: var(--bg-card);
    border-left: 3px solid var(--neon);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Sections */
section {
    padding: 2.5rem 0;
    border-bottom: 1px solid #222;
}

section:last-of-type {
    border-bottom: none;
}

h2 {
    font-size: 1.5rem;
    color: var(--neon);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

/* Latest Set */
.set-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.soundcloud-embed {
    margin-top: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.soundcloud-embed iframe {
    display: block;
}

/* About */
.about p {
    margin-bottom: 0.8rem;
}

.safe-message {
    margin-top: 1rem;
    color: var(--neon-dim);
    font-style: italic;
}

/* Support / Ko-fi */
.support {
    text-align: center;
}

.support p {
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--neon);
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin: 0.5rem 0 1.5rem;
}

.btn:hover {
    background: #fff;
    box-shadow: 0 0 25px rgba(61, 255, 194, 0.4);
    transform: translateY(-1px);
}

.tip-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Links */
.links ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.links a {
    color: var(--neon);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.links a:hover {
    border-bottom-color: var(--neon);
}

/* Contact */
.contact a {
    color: var(--neon);
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    padding: 2rem 0;
    border-top: 1px solid #222;
    text-align: center;
}

.footer-links {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--neon);
}

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

/* Responsive */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }

    .quote {
        padding: 1rem;
    }

    .links ul {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
