:root {
    --bg: #06060e;
    --bg2: #0c0c1d;
    --purple: #7B2FBE;
    --purple-light: #9d50e0;
    --electric: #00D4FF;
    --gold: #FFD700;
    --pink: #FF6EC7;
    --white: #ffffff;
    --gray: #6666aa;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
    cursor: none;
}

/* ─── CURSOR ─── */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.18s ease;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 3rem;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(6, 6, 14, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(123, 47, 190, 0.25);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.35rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-decoration: none;
}

.nav-logo-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 215, 0, 0.5);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }

.music-toggle {
    background: none;
    border: 1px solid rgba(255, 215, 0, 0.35);
    color: var(--gold);
    padding: 0.35rem 0.9rem;
    border-radius: 2rem;
    cursor: none;
    font-size: 1rem;
    transition: all 0.3s;
}

.music-toggle:hover,
.music-toggle.playing {
    background: rgba(255, 215, 0, 0.12);
    border-color: var(--gold);
}

.music-toggle.playing {
    animation: pulse-btn 2.5s ease-in-out infinite;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
    50%       { box-shadow: 0 0 0 6px rgba(255, 215, 0, 0.12); }
}

/* ─── HERO ─── */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 60%, rgba(123, 47, 190, 0.18) 0%, transparent 65%);
}

#particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
}

/* Logo */
.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle,
        rgba(123, 47, 190, 0.55) 0%,
        rgba(0, 212, 255, 0.22) 45%,
        transparent 70%);
    border-radius: 50%;
    filter: blur(24px);
    animation: glow-breathe 4s ease-in-out infinite;
}

@keyframes glow-breathe {
    0%, 100% { transform: scale(1);   opacity: 0.7; }
    50%       { transform: scale(1.12); opacity: 1; }
}

.logo-container {
    position: relative;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    overflow: hidden;
    animation: border-holo 5s linear infinite;
}

@keyframes border-holo {
    0%   { box-shadow: 0 0 0 2px rgba(255,215,0,.8),  0 0 40px rgba(123,47,190,.9),  0 0 80px rgba(0,212,255,.4); }
    25%  { box-shadow: 0 0 0 2px rgba(0,212,255,.8),  0 0 40px rgba(0,212,255,.9),   0 0 80px rgba(255,110,199,.4); }
    50%  { box-shadow: 0 0 0 2px rgba(255,110,199,.8),0 0 40px rgba(255,110,199,.9), 0 0 80px rgba(123,47,190,.4); }
    75%  { box-shadow: 0 0 0 2px rgba(123,47,190,.8), 0 0 40px rgba(123,47,190,.9),  0 0 80px rgba(255,215,0,.4); }
    100% { box-shadow: 0 0 0 2px rgba(255,215,0,.8),  0 0 40px rgba(123,47,190,.9),  0 0 80px rgba(0,212,255,.4); }
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 45%;
    filter: saturate(1.35) contrast(1.08);
    transition: transform 0.8s ease;
}

.logo-container:hover .logo-img {
    transform: scale(1.07);
}

.holo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        125deg,
        transparent 25%,
        rgba(255,255,255,0.18) 42%,
        rgba(255,255,255,0.08) 50%,
        transparent 68%
    );
    animation: shimmer-sweep 3.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer-sweep {
    0%   { transform: translateX(-120%) rotate(30deg); opacity: 0; }
    35%  { opacity: 1; }
    65%  { opacity: 1; }
    100% { transform: translateX(220%) rotate(30deg); opacity: 0; }
}

/* Hero text */
.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.hero-label {
    font-size: 0.72rem;
    letter-spacing: 0.45em;
    color: var(--electric);
    text-transform: uppercase;
    opacity: 0;
    animation: rise 0.9s ease 0.6s forwards;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Bebas Neue', cursive;
    line-height: 0.88;
}

.title-line {
    font-size: clamp(5rem, 13vw, 9.5rem);
    letter-spacing: 0.04em;
    background: linear-gradient(160deg, #fff 0%, #bbb 40%, #fff 70%, #ddd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: rise 0.9s ease 0.8s forwards;
}

.title-bros {
    background: linear-gradient(135deg, var(--gold) 0%, #ffb300 30%, #fff700 60%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 24px rgba(255,215,0,0.55));
    animation-delay: 1s;
}

.hero-tagline {
    font-size: 0.95rem;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    opacity: 0;
    animation: rise 0.9s ease 1.2s forwards;
}

@keyframes rise {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fade-in 1s ease 2.2s forwards;
}

.scroll-line {
    width: 1px;
    height: 54px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: pulse-line 2s ease-in-out infinite;
}

@keyframes pulse-line {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50%       { opacity: 0.4; transform: scaleY(0.7) translateY(6px); }
}

.scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    color: rgba(255, 215, 0, 0.45);
    text-transform: uppercase;
}

@keyframes fade-in { to { opacity: 1; } }

/* ─── ABOUT ─── */
.about {
    padding: 9rem 4rem;
    background: var(--bg2);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--bg), transparent);
    pointer-events: none;
    z-index: 1;
}

.about-grid {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.section-label {
    font-size: 0.68rem;
    letter-spacing: 0.42em;
    color: var(--electric);
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.holo-text {
    display: inline-block;
    background: linear-gradient(90deg,
        var(--purple) 0%,
        var(--electric) 20%,
        var(--pink) 45%,
        var(--gold) 65%,
        var(--electric) 85%,
        var(--purple) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: holo-flow 4s linear infinite;
}

@keyframes holo-flow {
    from { background-position: 0% center; }
    to   { background-position: 200% center; }
}

.about-desc {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 3rem;
    max-width: 420px;
}

.about-stats {
    display: flex;
    gap: 3.5rem;
    margin-bottom: 3rem;
}

.stat { display: flex; flex-direction: column; gap: 0.25rem; }

.stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.6rem;
    color: var(--gold);
    letter-spacing: 0.04em;
    line-height: 1;
}

.stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
}

/* CTA buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.1rem;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.35s;
    cursor: none;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(123, 47, 190, 0.55);
}

.cta-btn--outline {
    background: transparent;
    border: 1px solid rgba(255, 215, 0, 0.45);
    color: var(--gold);
}

.cta-btn--outline:hover {
    background: rgba(255, 215, 0, 0.08);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.22);
}

.cta-btn--large {
    padding: 1.2rem 2.6rem;
    font-size: 0.85rem;
}

.btn-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* About visual */
.about-visual {
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 60px rgba(123,47,190,0.28), 0 0 100px rgba(0,0,0,0.5);
}

.visual-img {
    width: 100%;
    display: block;
    filter: saturate(1.25) contrast(1.06);
}

.card-holo {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255,215,0,0.08) 0%,
        transparent 40%,
        rgba(0,212,255,0.08) 100%);
    pointer-events: none;
}

.floating-tag {
    position: absolute;
    background: rgba(6, 6, 14, 0.88);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: var(--gold);
    padding: 0.4rem 1rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-radius: 2px;
    backdrop-filter: blur(12px);
}

.tag-1 { top: -1.2rem;  left: -2rem;  animation: float-tag 3s ease-in-out infinite; }
.tag-2 { top: 50%;      right: -2.5rem; animation: float-tag 3s ease-in-out 1s infinite; }
.tag-3 { bottom: -1rem; left: 2.5rem; animation: float-tag 3s ease-in-out 2s infinite; }

@keyframes float-tag {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-9px); }
}

/* ─── GALLERY ─── */
.gallery {
    padding: 9rem 4rem;
    background: var(--bg);
}

.gallery-header {
    max-width: 1160px;
    margin: 0 auto 4rem;
    text-align: center;
}

.gallery-grid {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1;
    cursor: none;
    transition: transform 0.4s ease;
}

.gallery-item:hover { transform: scale(1.01); }

.gallery-item--large {
    grid-column: 1;
    grid-row: 1 / span 2;
    aspect-ratio: auto;
}

.gallery-item--wide {
    grid-column: 2 / span 2;
    aspect-ratio: 2 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: saturate(1.3) contrast(1.08);
}

.gallery-item:hover img { transform: scale(1.06); }

/* Art placeholders */
.gallery-art {
    width: 100%;
    height: 100%;
    transition: transform 0.7s ease;
}

.gallery-item:hover .gallery-art { transform: scale(1.06); }

.art-1 {
    background:
        radial-gradient(circle at 35% 35%, rgba(123,47,190,0.95) 0%, transparent 55%),
        radial-gradient(circle at 75% 75%, rgba(0,212,255,0.65) 0%, transparent 45%),
        linear-gradient(135deg, #0a0a22 0%, #1a0836 100%);
}

.art-2 {
    background:
        radial-gradient(circle at 60% 35%, rgba(255,215,0,0.75) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(255,110,199,0.55) 0%, transparent 50%),
        linear-gradient(135deg, #100008 0%, #200a0a 100%);
}

.art-3 {
    background:
        linear-gradient(135deg,
            rgba(0,212,255,0.35) 0%,
            rgba(123,47,190,0.55) 40%,
            rgba(255,215,0,0.35) 100%),
        linear-gradient(45deg, #050518 0%, #0a0a22 100%);
}

.art-4 {
    background:
        radial-gradient(ellipse at 50% 40%, rgba(255,110,199,0.65) 0%, rgba(123,47,190,0.45) 45%, transparent 70%),
        linear-gradient(135deg, #080808 0%, #0d0028 100%);
}

.art-5 {
    background:
        radial-gradient(circle at 50% 50%, rgba(255,215,0,0.45) 0%, rgba(0,212,255,0.35) 40%, transparent 70%),
        linear-gradient(135deg, #050516 0%, #0a1520 100%);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,6,14,0.92) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

.gallery-cta {
    text-align: center;
    margin-top: 3.5rem;
}

/* ─── VIBE ─── */
.vibe {
    position: relative;
    padding: 9rem 4rem;
    background: var(--bg2);
    overflow: hidden;
}

.vibe-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 50%, rgba(123,47,190,0.2) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 50%, rgba(0,212,255,0.15) 0%, transparent 55%);
    pointer-events: none;
}

.vibe-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.music-player {
    margin-top: 4rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 50px rgba(0,0,0,0.4);
}

.player-visual {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.player-logo {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255,215,0,0.3);
    flex-shrink: 0;
}

.player-logo.spinning {
    animation: spin-logo 8s linear infinite;
}

@keyframes spin-logo {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.player-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 38px;
}

.bar {
    width: 4px;
    background: linear-gradient(to top, var(--purple), var(--electric));
    border-radius: 2px;
    height: 4px;
    transition: height 0.1s;
}

.bars.active .bar:nth-child(1) { animation: dance 0.9s  ease-in-out          infinite; }
.bars.active .bar:nth-child(2) { animation: dance 0.7s  ease-in-out 0.12s    infinite; }
.bars.active .bar:nth-child(3) { animation: dance 1.1s  ease-in-out 0.24s    infinite; }
.bars.active .bar:nth-child(4) { animation: dance 0.8s  ease-in-out 0.06s    infinite; }
.bars.active .bar:nth-child(5) { animation: dance 1.0s  ease-in-out 0.18s    infinite; }
.bars.active .bar:nth-child(6) { animation: dance 0.75s ease-in-out 0.3s     infinite; }
.bars.active .bar:nth-child(7) { animation: dance 0.95s ease-in-out 0.09s    infinite; }
.bars.active .bar:nth-child(8) { animation: dance 0.85s ease-in-out 0.33s    infinite; }

@keyframes dance {
    0%, 100% { height: 4px; }
    50%       { height: 34px; }
}

.player-info { flex: 1; text-align: left; }

.track-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.track-artist {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.08em;
}

.play-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--electric));
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    flex-shrink: 0;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(123,47,190,0.55);
}

.play-btn:hover {
    transform: scale(1.07);
    box-shadow: 0 0 35px rgba(123,47,190,0.75);
}

.play-btn svg { width: 22px; height: 22px; margin-left: 2px; }

/* ─── CONNECT ─── */
.connect {
    position: relative;
    padding: 11rem 4rem;
    background: var(--bg);
    text-align: center;
    overflow: hidden;
}

.connect-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%,
        rgba(123,47,190,0.15) 0%,
        rgba(0,212,255,0.08) 40%,
        transparent 70%);
    pointer-events: none;
}

.connect-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.connect-content p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.48);
    margin-bottom: 3rem;
    line-height: 1.75;
}

/* ─── FOOTER ─── */
.footer {
    padding: 3rem 4rem;
    background: #030309;
    border-top: 1px solid rgba(255,255,255,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.15rem;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.footer-logo-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.85;
}

.footer-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.08em;
}

.footer-copy {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.12);
}

/* ─── REVEAL ─── */
[data-reveal] {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    nav { padding: 1.1rem 1.5rem; }
    .nav-links { display: none; }

    .about { padding: 6rem 1.8rem; }
    .about-grid { grid-template-columns: 1fr; gap: 3.5rem; }
    .about-desc { max-width: 100%; }

    .gallery { padding: 6rem 1.8rem; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item--large {
        grid-column: 1 / span 2;
        grid-row: auto;
        aspect-ratio: 1;
    }
    .gallery-item--wide {
        grid-column: 1 / span 2;
        aspect-ratio: 2;
    }

    .vibe { padding: 6rem 1.8rem; }
    .music-player {
        flex-direction: column;
        text-align: center;
        padding: 1.8rem;
    }
    .player-info { text-align: center; }

    .connect { padding: 7rem 1.8rem; }
    .footer { padding: 2.5rem 1.8rem; }
}

@media (max-width: 480px) {
    .about-stats { gap: 2rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--large,
    .gallery-item--wide {
        grid-column: 1;
        aspect-ratio: 1;
    }
    .hero-title .title-line { font-size: 4.5rem; }
}
