:root {
    --bg: #030303;
    --text: #ffffff;
    --muted: #666666;
    --glass-bg: rgba(12, 12, 16, 0.45);
    --glass-bg-h: rgba(20, 20, 28, 0.6);
    --glass-border: rgba(255,255,255,0.12);
    --radius: 28px;
}

*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html, body {
    width: 100%; height: 100%;
    overflow: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
}

#wave-canvas {
    position: fixed;
    inset: 0;
    width: 100vw; height: 100vh;
    z-index: 0;
    pointer-events: none; 
    background: var(--bg);
}

.top-logo {
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    width: 100px;
    height: 100px;
    object-fit: contain;
    cursor: pointer;
    z-index: 200;
    transition: opacity 0.3s ease;
}

.top-logo:hover {
    opacity: 0.8;
}

header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 2.5rem 4rem;
    pointer-events: none; 
}

.nav-links { 
    display: flex; 
    gap: 3rem; 
    pointer-events: auto; 
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
    cursor: pointer;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--text);
    transition: width 0.35s ease;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--text); }

.stage {
    position: fixed;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    opacity: 0;
    pointer-events: none;
    will-change: opacity;
    padding: 7rem 4rem 2rem; 
}

.stage::-webkit-scrollbar { display: none; }
.stage.active {
    opacity: 1;
    pointer-events: auto;
}

.container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    will-change: transform; 
    box-shadow:
        0 8px 32px rgba(0,0,0,0.6),
        0 1px 0 rgba(255,255,255,0.1) inset,
        0 -1px 0 rgba(255,255,255,0.03) inset,
        20px 20px 60px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    transition: background 0.4s, box-shadow 0.4s;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.glass-card::after {
    content: '';
    position: absolute;
    top: -40%; left: -20%;
    width: 60%; height: 80%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.glass-card:hover {
    background: var(--glass-bg-h);
    box-shadow:
        0 12px 48px rgba(0,0,0,0.7),
        0 1px 0 rgba(255,255,255,0.15) inset,
        0 -1px 0 rgba(255,255,255,0.03) inset,
        28px 28px 70px rgba(0,0,0,0.5);
}

.eyebrow {
    font-size: 0.65rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.body-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.9;
    font-weight: 300;
}

.section-line {
    width: 40px; height: 1px;
    background: rgba(255,255,255,0.25);
    margin: 1.5rem auto;
}

#stage-about {
    align-items: flex-start;
}

.bento-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.bento-grid {
    display: grid;
    grid-template-columns: 250px 1fr; 
    grid-template-rows: 250px auto;   
    grid-template-areas: 
        "playlist bio"
        "gear gear"; 
    gap: 1.5rem;
    width: 100%;
}

.bento-item {
    padding: 3.5rem; 
}

.playlist-card-container {
    grid-area: playlist;
    display: flex; 
    align-items: stretch; 
    justify-content: center;
    padding: 0; 
    width: 250px;
    height: 250px;
}

.playlist-card-container .disc-card {
    width: 250px;
    height: 250px;
}

.playlist-card-container .disc-link {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1; 
    display: block;
}

.playlist-text-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    width: 100%;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    pointer-events: none; 
}

.playlist-title {
    font-size: 0.8rem; 
    letter-spacing: 2px; 
    font-weight: 600;
    color: rgba(255,255,255,0.9); 
    text-align: center;
    text-transform: uppercase;
}

.playlist-sub {
    font-size: 0.65rem; 
    letter-spacing: 2px; 
    color: rgba(255,255,255,0.6);
    text-align: center; 
    text-transform: uppercase;
}

.playlist-card-container .disc-link-icon {
    width: 28px; 
    height: 28px; 
    font-size: 0.65rem;
    bottom: 0.75rem; 
    right: 0.75rem;
}

.bio-card {
    grid-area: bio;
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    align-items: flex-start;
    text-align: left; 
    height: 250px; 
    padding: 2.5rem 3rem; 
}

.bio-card .eyebrow {
    margin-bottom: 1rem;
    font-size: 0.65rem;
}

.bio-card .body-text {
    font-size: 0.95rem;
    line-height: 1.9;
}

.gear-card {
    grid-area: gear;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gear-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.plugin-category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    margin: 2.5rem 0 1rem 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--muted);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.5rem;
}

.plugin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.plugin-item {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.plugin-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plugin-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plugin-placeholder-icon {
    font-size: 2rem;
    color: rgba(255,255,255,0.1);
}

.plugin-name { font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; color: var(--text); text-transform: uppercase; }
.plugin-desc { font-size: 0.65rem; color: var(--muted); line-height: 1.4; }

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2.5rem auto 0; 
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.4s;
}

.scroll-indicator:hover {
    opacity: 1;
}

.arrow-bounce {
    font-size: 1.8rem;
    animation: bounce 2s infinite ease-in-out;
    font-weight: 200;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

#stage-discography, #stage-links { align-items: flex-start; }
.section-header { margin-bottom: 3rem; text-align: center; }

.disc-scroll {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-top: 15px; 
    padding-bottom: 1rem;
}

.disc-scroll::-webkit-scrollbar { display: none; }

.disc-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    min-width: 900px;
}

.disc-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: transform 0.4s;
}

.disc-card:hover { transform: translateY(-8px); }

.disc-link {
    display: block;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
    background: rgba(12,12,16,0.55);
    border: 1px solid var(--glass-border);
    box-shadow: 0 6px 24px rgba(0,0,0,0.55), 0 1px 0 rgba(255,255,255,0.1) inset;
    transition: box-shadow 0.4s, border-color 0.4s;
}

.disc-link::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    z-index: 2;
}

.disc-link:hover {
    border-color: rgba(255,255,255,0.28);
    box-shadow: 0 12px 40px rgba(0,0,0,0.7), 0 1px 0 rgba(255,255,255,0.18) inset;
}

.disc-img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 1; }

.disc-link-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, transparent 55%);
    opacity: 0; transition: opacity 0.3s; z-index: 3;
}

.disc-link:hover .disc-link-overlay { opacity: 1; }

.disc-link-icon {
    position: absolute; bottom: 0.75rem; right: 0.75rem;
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; color: rgba(255,255,255,0.7);
    opacity: 0; transform: scale(0.8); transition: all 0.3s;
    z-index: 4; backdrop-filter: blur(6px);
}

.disc-link:hover .disc-link-icon { opacity: 1; transform: scale(1); }

.disc-title {
    font-size: 0.75rem; letter-spacing: 1.5px; font-weight: 600;
    color: rgba(255,255,255,0.75); text-align: center;
    text-transform: uppercase; line-height: 1.4; padding: 0 0.3rem;
}

.disc-sub {
    font-size: 0.65rem; letter-spacing: 2px; color: var(--muted);
    text-align: center; text-transform: uppercase; margin-top: -0.4rem;
}

.links-inner { max-width: 800px; margin: 0 auto; width: 100%; }

.links-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 1.5rem; 
}

.link-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
    color: var(--muted); text-decoration: none;
    font-size: 0.85rem; font-weight: 400;
    padding: 3.5rem 2rem; border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(12, 12, 16, 0.45);
    transition: all 0.4s; letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(28px);
    will-change: transform;
}

.link-card:hover {
    color: var(--text);
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.link-card-icon { 
    font-size: 2.5rem !important; 
    margin-bottom: 0.5rem; 
    color: inherit; 
    transition: color 0.4s;
}

footer {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 100;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1.2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(3,3,3,0.3);
    backdrop-filter: blur(20px);
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem; letter-spacing: 5px; opacity: 0.35; font-weight: 700;
}

.footer-copy { font-size: 0.65rem; letter-spacing: 2px; color: var(--muted); }

.scroll-dots {
    position: fixed;
    right: 2.5rem; top: 50%;
    transform: translateY(-50%);
    z-index: 200;
    display: flex; flex-direction: column; gap: 10px;
}

.scroll-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s;
}

.scroll-dot.active {
    background: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.8);
    box-shadow: 0 0 8px rgba(255,255,255,0.4);
}