﻿/* ============================================================
   JOJOsaysbreee â€” Custom Styles
   Brand: Yellow #E2FF06 | Purple #b840e0
   Dark: #2d0550 | Surface: #4a0a80
   ============================================================ */

:root {
    --yellow: #E2FF06;
    --purple: #b840e0;
    --dark: #2d0550;
    --surface: #4a0a80;
    --muted: #e8c8fc;
}

/* ---- Base ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: #ffffff;
    overflow-x: hidden;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--yellow); }

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(226,255,6,0.3),
                    0 0 30px rgba(184,64,224,0.4),
                    inset 0 0 15px rgba(226,255,6,0.03);
    }
    50% {
        box-shadow: 0 0 35px rgba(226,255,6,0.55),
                    0 0 70px rgba(184,64,224,0.45),
                    inset 0 0 25px rgba(226,255,6,0.06);
    }
}

@keyframes live-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,66,66,0.7);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.15);
        box-shadow: 0 0 0 6px rgba(255,66,66,0);
    }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0);    }
}

/* ============================================================
   NAVBAR
   ============================================================ */

#navbar {
    background: rgba(20, 3, 50, 0);
    backdrop-filter: blur(0px);
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease;
}

#navbar.navbar-scrolled {
    background: rgba(20, 3, 50, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(184, 64, 224, 0.5);
}

.nav-link-jojo {
    position: relative;
    padding-bottom: 4px;
    text-decoration: none;
}
.nav-link-jojo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.25s ease;
    border-radius: 1px;
}
.nav-link-jojo:hover::after { width: 100%; }

.hamburger-btn {
    background: rgba(184, 64, 224, 0.45);
    border: 1px solid rgba(184, 64, 224, 0.8);
    padding: 8px 12px;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: background 0.2s ease;
}
.hamburger-btn:hover { background: rgba(184, 64, 224, 0.8); }

#mobile-menu {
    background: rgba(20, 3, 50, 0.97);
    border-top: 1px solid rgba(184, 64, 224, 0.4);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-watch-live {
    background: var(--yellow);
    color: var(--purple);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}
.btn-watch-live:hover {
    background: #ffffff;
    box-shadow: 0 0 28px rgba(226, 255, 6, 0.55);
    color: var(--purple);
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-outline-yellow {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--yellow);
    color: var(--yellow);
    padding: 10px 24px;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    background: transparent;
}
.btn-outline-yellow:hover {
    background: var(--yellow);
    color: var(--purple);
    box-shadow: 0 0 24px rgba(226, 255, 6, 0.35);
    text-decoration: none;
    transform: translateY(-1px);
}

/* ============================================================
   SOCIAL ICON BUTTONS
   ============================================================ */

.social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 64, 224, 0.35);
    border: 1px solid rgba(184, 64, 224, 0.65);
    color: var(--muted);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}
.social-icon-btn:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--purple);
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(226, 255, 6, 0.45);
    text-decoration: none;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease;
}
.footer-social-btn:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    transform: translateY(-2px);
    text-decoration: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-bg {
    background: linear-gradient(
        135deg,
        #2d0550 0%,
        #4a0a80 40%,
        #6618a8 70%,
        #2d0550 100%
    );
    position: relative;
    overflow: hidden;
}

/* Ambient purple orb â€” top right */
.hero-bg::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -8%;
    width: 60vw;
    height: 60vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle, rgba(184,64,224,0.28) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Ambient yellow orb â€” bottom left */
.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -8%;
    width: 50vw;
    height: 50vw;
    max-width: 500px;
    max-height: 500px;
    background: radial-gradient(circle, rgba(226,255,6,0.07) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.hero-bg > .hero-inner {
    position: relative;
    z-index: 1;
}

.hero-logo {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 24px rgba(226,255,6,0.28));
}

/* ---- Stream embed glow ---- */
.stream-glow {
    border: 2px solid rgba(226, 255, 6, 0.45);
    animation: pulse-glow 4s ease-in-out infinite;
    border-radius: 10px;
    overflow: hidden;
}

/* ============================================================
   LIVE INDICATORS
   ============================================================ */

.live-dot {
    width: 10px;
    height: 10px;
    background: #ff4242;
    border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
    display: inline-block;
    flex-shrink: 0;
}

.live-dot-offline {
    width: 10px;
    height: 10px;
    background: #555;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* ============================================================
   GRADIENT TEXT
   ============================================================ */

.gradient-text {
    background: linear-gradient(90deg, var(--yellow) 0%, #ffffff 50%, var(--yellow) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* ============================================================
   BADGE PILLS
   ============================================================ */

.badge-pill {
    background: rgba(184, 64, 224, 0.32);
    border: 1px solid rgba(184, 64, 224, 0.7);
    border-radius: 999px;
    padding: 4px 14px;
    font-size: 0.68rem;
    color: var(--yellow);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */

.section-dark    { background: var(--dark); }
.section-surface { background: var(--surface); }

.section-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: white;
}
.section-heading span { color: var(--yellow); }

.heading-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--yellow));
    margin: 12px auto 48px;
    border-radius: 2px;
}

.section-divider {
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--purple),
        var(--yellow),
        var(--purple),
        transparent
    );
    border: none;
    margin: 0;
}

/* ============================================================
   MILESTONE CARDS
   ============================================================ */

.milestone-card {
    background: linear-gradient(
        135deg,
        rgba(40, 6, 90, 0.85) 0%,
        rgba(184, 64, 224, 0.18) 100%
    );
    border: 1px solid rgba(184, 64, 224, 0.5);
    transition: all 0.3s ease;
}
.milestone-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 0 28px rgba(226, 255, 6, 0.14);
    transform: translateY(-5px);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-photo {
    border: 2px solid rgba(184, 64, 224, 0.55);
    transition: border-color 0.3s ease;
    border-radius: 10px;
}
.about-photo:hover { border-color: var(--yellow); }

.about-card {
    background: rgba(184, 64, 224, 0.1);
    border: 1px solid rgba(184, 64, 224, 0.35);
    border-radius: 8px;
}

/* ============================================================
   TIMELINE
   ============================================================ */

.timeline {
    position: relative;
    padding-left: 36px;
}

.timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--purple), var(--yellow), var(--purple));
}

.timeline-item {
    position: relative;
    margin-bottom: 24px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--yellow);
    border: 2px solid var(--dark);
    box-shadow: 0 0 10px rgba(226, 255, 6, 0.55);
}

.timeline-year {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.timeline-content {
    background: rgba(184, 64, 224, 0.1);
    border: 1px solid rgba(184, 64, 224, 0.3);
    border-radius: 6px;
    padding: 12px 16px;
    transition: border-color 0.2s ease;
}
.timeline-content:hover { border-color: rgba(226, 255, 6, 0.25); }

.timeline-content strong {
    color: white;
    display: block;
    margin-bottom: 5px;
    font-size: 0.92rem;
}

.timeline-content p {
    color: var(--muted);
    font-size: 0.83rem;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   CLIPS SECTION
   ============================================================ */

.clip-wrapper {
    background: var(--surface);
    border: 1px solid rgba(184, 64, 224, 0.4);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.clip-wrapper:hover {
    border-color: var(--yellow);
    box-shadow: 0 0 28px rgba(226, 255, 6, 0.13);
    transform: translateY(-4px);
}

.clip-info {
    background: rgba(15, 2, 40, 0.7);
    border-top: 1px solid rgba(184, 64, 224, 0.3);
    padding: 10px 14px;
}

/* ============================================================
   SOCIAL CARDS
   ============================================================ */

.social-card {
    background: rgba(40, 6, 90, 0.55);
    border: 1px solid rgba(184, 64, 224, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}
.social-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 0 22px rgba(226, 255, 6, 0.12);
    transform: translateY(-5px);
    text-decoration: none;
}

.social-embed-wrapper {
    border: 1px solid rgba(184, 64, 224, 0.4);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(40, 6, 90, 0.4);
}

/* ============================================================
   SETUP SECTION
   ============================================================ */

.setup-img-wrapper {
    border: 1px solid rgba(184, 64, 224, 0.4);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border-radius: 8px;
}
.setup-img-wrapper:hover {
    border-color: var(--yellow);
    box-shadow: 0 0 22px rgba(226, 255, 6, 0.12);
}
.setup-img-wrapper img {
    transition: transform 0.4s ease;
    display: block;
    width: 100%;
}
.setup-img-wrapper:hover img { transform: scale(1.025); }

/* ============================================================
   SCROLL TO TOP BUTTON
   ============================================================ */

.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--purple);
    border: 1px solid var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    z-index: 999;
    box-shadow: 0 0 16px rgba(184, 64, 224, 0.5);
}
.scroll-top-btn:hover {
    background: var(--yellow);
    color: var(--purple);
    box-shadow: 0 0 28px rgba(226, 255, 6, 0.45);
    text-decoration: none;
    transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */

@media (max-width: 768px) {
    .hero-bg { padding-top: 5rem; padding-bottom: 3rem; }
    .timeline { padding-left: 28px; }
    .timeline-item::before { left: -33px; }
    .section-heading { letter-spacing: 0.04em; }
}

@media (max-width: 480px) {
    .badge-pill { font-size: 0.6rem; padding: 3px 10px; }
    .btn-watch-live { font-size: 0.72rem; padding: 8px 14px; }
}

