/* vtubermanager.com - Gallery Management Dashboard */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --text-soft: #D0D8F0;
    --pink: #E880A8;
    --text-muted: #8890B0;
    --dark-surface: #1A1A2A;
    --text-body: #B0B8D0;
    --ethereal: #E8E0F8;
    --blue: #6080C8;
    --light-blue: #A8C0E8;
    --void: #12121E;
}

body {
    background: var(--void);
    color: var(--ethereal);
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

#fish-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

/* Diagonal Sections */
.diag-section {
    position: relative;
    z-index: 1;
    padding: 5rem 2rem;
    clip-path: polygon(0 0, 100% 25px, 100% 100%, 0 calc(100% - 25px));
    margin-top: -25px;
    background: var(--void);
}
.section-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), 0 100%);
    margin-top: 0;
}
.diag-section:nth-child(even) { background: var(--dark-surface); }

/* Section Layout */
.section-layout {
    display: flex;
    max-width: 960px;
    margin: 0 auto;
    gap: 2rem;
    align-items: flex-start;
}

/* Stats Sidebar */
.stats-sidebar {
    width: 160px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transform: translateX(-40px);
    animation: sidebarIn 0.6s ease forwards 0.5s;
}
@keyframes sidebarIn {
    to { opacity: 1; transform: translateX(0); }
}
.stat-item {
    text-align: center;
}
.stat-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-blue);
    display: block;
}
.stat-lbl {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Main Content */
.section-main { flex: 1; }
.section-main.full { max-width: 720px; margin: 0 auto; }

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--ethereal);
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}
@keyframes fadeIn { to { opacity: 1; } }
.hero-sub {
    font-family: 'Rubik', sans-serif;
    font-size: 1.125rem;
    color: var(--text-muted);
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--ethereal);
    margin-bottom: 1rem;
}
.section-body {
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* Talent Grid */
.talent-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}
.talent-card {
    background: rgba(96, 128, 200, 0.08);
    border: 1px solid rgba(96, 128, 200, 0.15);
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.talent-card:hover {
    border-color: var(--pink);
    transform: translateY(-2px);
}
.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 auto 0.75rem;
}
.avatar-1 { background: linear-gradient(135deg, var(--pink), var(--blue)); }
.avatar-2 { background: linear-gradient(135deg, var(--blue), var(--ethereal)); }
.avatar-3 { background: linear-gradient(135deg, var(--light-blue), var(--pink)); }
.avatar-4 { background: linear-gradient(135deg, var(--ethereal), var(--blue)); }
.talent-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ethereal);
    display: block;
    margin-bottom: 0.25rem;
}
.talent-stat {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Section reveal */
.diag-section .section-layout {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.diag-section.visible .section-layout {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.site-footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 2rem;
}
.footer-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

@media (max-width: 768px) {
    .section-layout { flex-direction: column; }
    .stats-sidebar { width: 100%; flex-direction: row; justify-content: space-around; }
    .talent-grid { grid-template-columns: 1fr; }
}
