/* vtubermanager.com — retro vapor gradients */

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

/* ===== BASE ===== */
body {
    background: #1A0A2E;
    color: #E8E8E8;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== HEADINGS ===== */
.section-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #E8E8E8;
    text-align: center;
    margin-bottom: 2rem;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 40%, rgba(255,110,199,0.2), transparent 55%),
        radial-gradient(ellipse at 75% 40%, rgba(0,229,255,0.15), transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(123,104,238,0.18), transparent 45%),
        radial-gradient(ellipse at 60% 20%, rgba(255,215,0,0.06), transparent 40%);
    background-size: 200% 200%;
    animation: meshShift 10s ease infinite;
    z-index: 0;
}

@keyframes meshShift {
    0% { background-position: 0% 50%; }
    33% { background-position: 50% 100%; }
    66% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: #E8E8E8;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255,110,199,0.4), 0 0 40px rgba(123,104,238,0.2);
}

.title-accent {
    color: #FF6EC7;
}

/* ===== GLITCH TEXT ===== */
.glitch-text {
    position: relative;
}
.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 40px;
    overflow: hidden;
    pointer-events: none;
}
.glitch-text::before {
    color: #00E5FF;
    z-index: -1;
    animation: glitch1 3s infinite linear alternate-reverse;
    clip-path: inset(0 0 65% 0);
}
.glitch-text::after {
    color: #FF6EC7;
    z-index: -1;
    animation: glitch2 2.5s infinite linear alternate-reverse;
    clip-path: inset(65% 0 0 0);
}

@keyframes glitch1 {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 1px); }
    40% { transform: translate(2px, -1px); }
    60% { transform: translate(-1px, 2px); }
    80% { transform: translate(1px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitch2 {
    0% { transform: translate(0); }
    25% { transform: translate(2px, 1px); }
    50% { transform: translate(-2px, -1px); }
    75% { transform: translate(1px, 2px); }
    100% { transform: translate(0); }
}

/* ===== AVATAR SILHOUETTE ===== */
.avatar-silhouette {
    margin: 1.5rem auto;
    width: 120px;
    height: 140px;
    opacity: 0.85;
    filter: drop-shadow(0 0 15px rgba(255,110,199,0.4)) drop-shadow(0 0 30px rgba(0,229,255,0.2));
    animation: silFloat 4s ease-in-out infinite;
}

@keyframes silFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-sub {
    font-size: 16px;
    color: #A0A0C0;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.btn:hover {
    transform: translateY(-2px);
}

.btn-manage {
    background: #FF6EC7;
    color: #1A0A2E;
    box-shadow: 0 0 20px rgba(255,110,199,0.5);
}
.btn-manage:hover {
    box-shadow: 0 0 30px rgba(255,110,199,0.7);
}

.btn-join {
    background: transparent;
    color: #00E5FF;
    border: 2px solid #00E5FF;
    box-shadow: 0 0 10px rgba(0,229,255,0.2);
}
.btn-join:hover {
    background: rgba(0,229,255,0.1);
    box-shadow: 0 0 20px rgba(0,229,255,0.4);
}

/* ===== FEATURES ===== */
.features {
    max-width: 880px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.feature-card {
    background: #2D1B69;
    padding: 1.75rem;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255,110,199,0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.feature-card:hover {
    box-shadow: 0 0 25px rgba(255,110,199,0.25), 0 0 10px rgba(0,229,255,0.15);
    transform: translateY(-3px);
}

.feature-icon {
    display: block;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.feature-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #E8E8E8;
    margin-bottom: 0.35rem;
}

.feature-desc {
    font-size: 14px;
    color: #A0A0C0;
    line-height: 1.5;
}

/* ===== STAR ICON ===== */
.star-icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
}

/* ===== SCHEDULE ===== */
.schedule {
    max-width: 680px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.schedule-panel {
    background: #2D1B69;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 0 15px rgba(123,104,238,0.15);
}

.stream-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s ease;
}
.stream-row:last-child {
    border-bottom: none;
}
.stream-row:hover {
    background: rgba(255,110,199,0.05);
    border-radius: 6px;
}

.stream-platform {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stream-title {
    flex: 1;
    font-size: 15px;
    color: #E8E8E8;
}

.stream-countdown {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #00E5FF;
    background: rgba(0,229,255,0.1);
    padding: 2px 8px;
    border-radius: 4px;
    min-width: 70px;
    text-align: center;
}

.stream-time {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    color: #A0A0C0;
    flex-shrink: 0;
}

/* ===== ROSTER ===== */
.roster {
    max-width: 960px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.roster-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.talent-card {
    background: #2D1B69;
    padding: 1.75rem 1.25rem;
    border-radius: 10px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.talent-card:hover {
    box-shadow: 0 0 20px rgba(0,229,255,0.2);
    transform: translateY(-3px);
}

.avatar-frame {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 0.85rem;
    padding: 3px;
    background: conic-gradient(#FF6EC7, #7B68EE, #00E5FF, #FF6EC7);
    animation: spinBorder 4s linear infinite;
}

@keyframes spinBorder {
    from { filter: hue-rotate(0deg); }
    to { filter: hue-rotate(360deg); }
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #1A0A2E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #FF6EC7;
}

.talent-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #E8E8E8;
    margin-bottom: 0.4rem;
}

.talent-stats {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
}

.stat {
    font-size: 12px;
    color: #A0A0C0;
}

.stat-val {
    font-family: 'Space Mono', monospace;
    color: #00E5FF;
    font-weight: 400;
}

.sparkline {
    display: block;
    margin: 0 auto 0.6rem;
}

.talent-platforms {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.plat-badge {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 3px;
}
.plat-badge.plat-yt {
    background: rgba(255,0,0,0.15);
    color: #FF6666;
}
.plat-badge.plat-tw {
    background: rgba(100,65,165,0.2);
    color: #B9A3E3;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.bubble-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.bubble-card {
    background: linear-gradient(135deg, rgba(255,110,199,0.12), rgba(0,229,255,0.08));
    padding: 1.75rem;
    border-radius: 14px;
    position: relative;
    border: 1px solid rgba(255,110,199,0.15);
    transition: transform 0.3s ease;
}
.bubble-card:hover {
    transform: translateY(-3px);
}

.bubble-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 2rem;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, rgba(255,110,199,0.1), rgba(0,229,255,0.06));
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.bubble-text {
    font-size: 14px;
    color: #E8E8E8;
    margin-bottom: 0.75rem;
    font-style: italic;
    line-height: 1.6;
}

.bubble-author {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #A0A0C0;
}

/* ===== DEALS ===== */
.deals {
    max-width: 880px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.deal-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.deal-card {
    background: #2D1B69;
    padding: 1.75rem;
    border-radius: 10px;
    border: 1px solid rgba(255,215,0,0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.deal-card:hover {
    box-shadow: 0 0 20px rgba(255,215,0,0.15);
    transform: translateY(-3px);
}

.deal-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #E8E8E8;
    margin-bottom: 0.35rem;
}

.deal-type {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #7B68EE;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deal-value {
    font-size: 13px;
    color: #FFD700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.deal-details {
    font-size: 13px;
    color: #A0A0C0;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.deal-status {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.deal-status.active {
    background: rgba(0,229,255,0.15);
    color: #00E5FF;
}
.deal-status.pending {
    background: rgba(255,215,0,0.15);
    color: #FFD700;
}

/* ===== PLATFORM SECTION ===== */
.platform-section {
    max-width: 680px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.platform-interface {
    background: #2D1B69;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 0 15px rgba(123,104,238,0.1);
}

.platform-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.platform-row:last-child {
    border-bottom: none;
}

.platform-icon-wrap {
    width: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #E8E8E8;
    width: 70px;
    flex-shrink: 0;
}

.platform-bar {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    overflow: hidden;
}

.platform-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #FF6EC7, #7B68EE, #00E5FF);
    transition: width 1s ease;
}

.platform-pct {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    color: #00E5FF;
    width: 40px;
    text-align: right;
    flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: linear-gradient(180deg, #1A0A2E 0%, #0D0518 100%);
    padding: 3rem 2rem 2rem;
    text-align: center;
    overflow: hidden;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.flink {
    font-size: 14px;
    color: #A0A0C0;
    text-decoration: none;
    transition: color 0.2s ease;
}
.flink:hover {
    color: #FF6EC7;
}

.footer-copy {
    font-size: 13px;
    color: #A0A0C0;
}

/* ===== FOOTER MASCOT ===== */
.footer-mascot {
    position: absolute;
    bottom: 16px;
    right: 24px;
    z-index: 2;
    animation: mascotWave 2s ease-in-out infinite;
    cursor: default;
}

@keyframes mascotWave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.mascot-arm-right {
    transform-origin: 32px 32px;
    animation: armWave 1.5s ease-in-out infinite;
}

@keyframes armWave {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-20deg); }
}

/* ===== FADE-IN ===== */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .roster-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .deal-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 28px;
    }
    .glitch-text::before,
    .glitch-text::after {
        font-size: 28px;
    }
    .section-heading {
        font-size: 22px;
    }
    .feature-cards,
    .roster-grid,
    .bubble-cards,
    .deal-cards {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .stream-countdown {
        display: none;
    }
    .footer-mascot {
        right: 12px;
        bottom: 12px;
    }
    .footer-mascot svg {
        width: 36px;
        height: 42px;
    }
}
