/* =========================================================
   NARSTYX HQ
   Clean site stylesheet
========================================================= */

/* =========================================================
   1. DESIGN TOKENS / RESET
========================================================= */

:root {
    --bg: #070709;
    --bg-soft: #0c0c10;
    --panel: #111116;
    --panel-hover: #17171e;

    --text: #f5f5f7;
    --muted: #9a9aa3;
    --dim: #5f5f69;

    --purple: #9147ff;
    --purple-light: #b17aff;
    --live: #ff375f;

    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.12);

    --container: 1380px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 60px));
    margin-inline: auto;
}


/* =========================================================
   2. HEADER / NAVIGATION
========================================================= */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;

    width: 100%;

    background: rgba(7, 7, 9, 0.78);
    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-container {
    width: min(var(--container), 100%);
    height: 80px;

    margin-inline: auto;
    padding-inline: 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    white-space: nowrap;
}

.brand-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    background: var(--purple);
    color: white;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 26px;
    font-weight: 800;

    transform: skew(-7deg);
}

.brand-main {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
}

.brand-sub {
    margin-left: 7px;

    color: var(--purple-light);

    font-size: 10px;
    letter-spacing: 3px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.desktop-nav a {
    color: var(--muted);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: white;
}

.live-nav-button {
    padding: 10px 17px;

    border: 1px solid var(--border);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.live-nav-button:hover {
    border-color: rgba(145, 71, 255, 0.45);
    background: rgba(145, 71, 255, 0.08);
}

.live-dot,
.hero-live-dot {
    display: inline-block;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--live);
    box-shadow: 0 0 14px var(--live);
}

.live-dot {
    margin-right: 8px;
}

.mobile-menu-button,
.mobile-nav {
    display: none;
}


/* =========================================================
   3. BUTTONS
========================================================= */

.btn {
    min-height: 50px;
    padding: 0 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid transparent;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.btn-primary {
    background: var(--purple);
    color: white;
}

.btn-primary:hover {
    background: var(--purple-light);
    transform: translateY(-2px);
}

.btn-secondary {
    border-color: var(--border);
    background: transparent;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

.btn-light {
    background: white;
    color: black;
}


/* =========================================================
   4. HOMEPAGE HERO
========================================================= */

.stream-hero {
    position: relative;

    min-height: 100vh;
    padding: 110px 30px 80px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(145, 71, 255, 0.16),
            transparent 36%
        ),
        #070709;
}

.stream-hero-inner {
    width: min(1450px, 100%);
    margin-inline: auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}

.hero-left,
.hero-right-column {
    min-width: 0;
}


/* =========================================================
   5. CAPITAL RP FEATURE RIBBON
========================================================= */

.capital-ribbon {
    position: absolute;
    top: 105px;
    left: -82px;

    z-index: 50;

    width: 300px;
    padding: 17px 0 15px;

    overflow: hidden;

    text-align: center;

    transform: rotate(-45deg);

    background:
        linear-gradient(
            90deg,
            #6d28d9 0%,
            #9147ff 50%,
            #b17aff 100%
        );

    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);

    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.55),
        0 0 35px rgba(145, 71, 255, 0.35);
}

.capital-ribbon::before {
    content: "";

    position: absolute;
    top: 0;
    left: -80%;

    width: 55%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.22),
            transparent
        );

    transform: skewX(-20deg);

    animation: capitalRibbonShine 5s ease-in-out infinite;
}

.capital-ribbon span,
.capital-ribbon strong {
    position: relative;
    z-index: 2;

    display: block;
}

.capital-ribbon span {
    margin-bottom: 2px;

    color: rgba(255, 255, 255, 0.74);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 4px;
}

.capital-ribbon strong {
    color: white;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 23px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2.5px;

    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

@keyframes capitalRibbonShine {
    0% {
        left: -80%;
    }

    45% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}


/* =========================================================
   6. HERO LEFT / CREATOR
========================================================= */

.hero-left {
    position: relative;
}

.hero-image-container {
    height: 360px;

    margin-bottom: -20px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    overflow: hidden;
}

.hero-image {
    display: block;

    width: auto;
    height: 420px;
    max-width: 100%;

    object-fit: contain;
    object-position: bottom center;

    filter:
        drop-shadow(0 25px 40px rgba(0, 0, 0, 0.65))
        drop-shadow(0 0 45px rgba(145, 71, 255, 0.10));
}

.stream-intro {
    position: relative;
    z-index: 3;

    max-width: 620px;
    margin-inline: auto;
}

.hero-tag,
.section-kicker {
    display: block;

    margin-bottom: 18px;

    color: var(--purple-light);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.stream-intro h1 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: clamp(90px, 9vw, 155px);
    font-weight: 800;

    line-height: 0.78;
    letter-spacing: -5px;
}

.stream-intro h1 span {
    color: transparent;
    -webkit-text-stroke: 2px var(--purple-light);
}

.hero-lead {
    margin-top: 35px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.1;
}

.hero-description {
    max-width: 520px;
    margin-top: 15px;

    color: var(--muted);

    font-size: 14px;
}

.hero-buttons {
    margin-top: 30px;

    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   7. HERO RIGHT / CURRENT CHARACTER
========================================================= */

.hero-right-column {
    position: relative;

    min-height: 560px;

    overflow: visible;
}

..hero-right {
    position: relative;
    z-index: 3;

    width: calc(100% - 100px);

    min-height: 420px;

    margin-right: 100px;

    padding: 50px 40px 95px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.09);

    background:
        radial-gradient(
            circle at 30% 35%,
            rgba(145, 71, 255, 0.20),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #171025,
            #0d0c12 70%
        );

    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.42);
}

.character-cutout {
    position: absolute;

    right: -80px;

    bottom: -35px;

    z-index: 2;

    width: 300px;

    height: auto;

    object-fit: contain;

    pointer-events: none;

    filter:
        drop-shadow(0 25px 35px rgba(0, 0, 0, 0.70));
}

.character-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 12px;
}

.hero-right-label {
    display: block;

    margin: 0;

    color: var(--purple-light);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
}

.hero-right h2 {
    margin: 0 0 20px;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1;
}

.character-story {
    max-width: 500px;
    margin: 0 0 28px;
}

.character-story p {
    margin: 0;

    color: #f0f0f3;

    font-size: 0.95rem;
    line-height: 1.65;
}


/* =========================================================
   8. LIVE / NEXT STREAM STATUS
========================================================= */

.character-stream-status {
    margin-top: 24px;
    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.character-status-label {
    display: block;

    margin-bottom: 8px;

    color: var(--purple-light);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.character-next-stream-details {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.character-next-stream-details strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 21px;
    line-height: 1;
}

.character-next-stream-details span {
    color: var(--purple-light);

    font-size: 13px;
    font-weight: 700;
}

.character-stream-live {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.character-status-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.character-status-link {
    color: var(--purple-light);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;

    white-space: nowrap;
}

.character-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #ff5575;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* =========================================================
   9. CHARACTER CARD FOOTER
========================================================= */

.hero-right-stats {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    min-height: 78px;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-right-stats div {
    display: flex;
    flex-direction: column;
}

.hero-right-stats span {
    color: #63636d;

    font-size: 8px;
    letter-spacing: 2px;
}

.hero-right-stats strong {
    margin-top: 4px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 17px;
}


/* =========================================================
   10. OPTIONAL CAPITAL RP CHARACTER LOGO
   Hidden unless the <img> exists in home.html.
========================================================= */

.character-capital-logo {
    width: 22px;

    height: 22px;

    object-fit: contain;

    border-radius: 5px;

    box-shadow: none;
}


/* =========================================================
   11. GENERAL SECTION HEADINGS
========================================================= */

.section-header {
    margin-bottom: 55px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.section-header h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(55px, 6vw, 90px);
    line-height: 0.9;
}

.section-header > p {
    max-width: 400px;

    color: #92929c;

    font-size: 13px;
}


/* =========================================================
   12. ABOUT
========================================================= */

.about-section {
    padding: 120px 0;

    background: #0c0c10;
}

.about-content {
    max-width: 850px;

    color: var(--muted);

    font-size: 15px;
}

.about-lead {
    color: white;

    font-size: 21px;
    line-height: 1.7;
}

.profile-detail {
    margin-top: 42px;
    padding-top: 28px;

    border-top: 1px solid var(--border);
}

.profile-detail > span {
    display: block;

    margin-bottom: 10px;

    color: var(--purple-light);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.profile-detail p {
    color: var(--muted);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   13. WATCH / SOCIAL CARDS
========================================================= */

.watch-section {
    padding: 120px 0;

    background: #08080b;
}

.watch-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.watch-card {
    position: relative;

    min-height: 320px;
    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    overflow: hidden;

    border: 1px solid var(--border);

    background: var(--panel);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.watch-card:hover {
    transform: translateY(-7px);

    border-color: rgba(145, 71, 255, 0.50);

    background: var(--panel-hover);
}

.featured-watch-card {
    background:
        linear-gradient(
            145deg,
            rgba(145, 71, 255, 0.22),
            #111116 60%
        );
}

.watch-label {
    position: absolute;

    top: 28px;
    left: 30px;

    color: var(--purple-light);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.watch-card h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 50px;
    line-height: 1;
}

.watch-card p {
    max-width: 280px;
    margin-top: 10px;

    color: #92929c;

    font-size: 12px;
}

.watch-arrow {
    position: absolute;

    top: 25px;
    right: 25px;

    color: #777780;

    font-size: 22px;
}


/* =========================================================
   14. EMBEDDED CLIPS
========================================================= */

.clips-section {
    padding: 120px 0;

    background: #0d0d11;
}

.clips-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;

    align-items: start;
}

.clip-card {
    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid var(--border);

    background: var(--panel);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.clip-card:hover {
    transform: translateY(-6px);

    border-color: rgba(145, 71, 255, 0.45);
}

.clip-video {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #050506;
}

.clip-card-tiktok .clip-video {
    aspect-ratio: 9 / 16;
}

.clip-card-twitch .clip-video,
.clip-card-youtube .clip-video {
    aspect-ratio: 16 / 9;
}

.clip-video iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}

.clip-content {
    padding: 24px;
}

.clip-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.clip-type {
    color: var(--purple-light);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.featured-label-inline {
    padding: 5px 8px;

    background: var(--purple);
    color: white;

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1px;
}

.clip-content h3 {
    margin-top: 7px;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 28px;
    line-height: 1.1;
}

.clip-content p {
    margin-top: 12px;

    color: #92929c;

    font-size: 12px;
}

.clip-meta {
    margin-top: 25px;
    padding-top: 15px;

    display: flex;
    justify-content: space-between;
    gap: 20px;

    border-top: 1px solid var(--border);

    color: #66666e;

    font-size: 8px;
    letter-spacing: 1px;
}

.clip-meta a {
    color: var(--purple-light);

    font-weight: 700;

    white-space: nowrap;
}

.clip-not-supported {
    min-height: 350px;
    padding: 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.clip-not-supported h3 {
    margin-top: 10px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 30px;
}

.clip-not-supported p {
    max-width: 300px;
    margin: 10px 0 25px;

    color: #92929c;

    font-size: 12px;
}

.empty-clips {
    padding: 75px 30px;

    text-align: center;

    border: 1px solid var(--border);

    background: var(--panel);
}

.empty-clips h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 45px;
}

.empty-clips p {
    margin-top: 5px;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   15. COMMUNITY
========================================================= */

.community-section {
    position: relative;

    padding: 150px 30px;

    overflow: hidden;

    text-align: center;

    background: var(--purple);
}

.community-inner {
    position: relative;
    z-index: 2;
}

.community-inner h2 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: clamp(60px, 8vw, 110px);
    line-height: 0.9;
}

.community-inner h2 span {
    color: rgba(255, 255, 255, 0.5);
}

.community-inner p {
    max-width: 550px;

    margin: 25px auto 30px;

    color: rgba(255, 255, 255, 0.82);
}


/* =========================================================
   16. FOOTER
========================================================= */

.site-footer {
    padding: 45px 30px;

    background: #050506;

    border-top: 1px solid var(--border);
}

.footer-content {
    width: min(var(--container), 100%);
    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    color: var(--dim);

    font-size: 10px;
}

.footer-logo {
    color: white;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* =========================================================
   17. MEDIUM DESKTOP
========================================================= */

@media (max-width: 1250px) {

    .stream-hero-inner {
        gap: 40px;
    }

    .stream-intro h1 {
        font-size: clamp(85px, 10vw, 125px);
    }

    .hero-right {
        width: calc(100% - 80px);
        margin-right: 80px;
    }

    .character-cutout {
        right: -95px;

        width: 310px;
    }

    .hero-right h2 {
        font-size: 3rem;
    }
}


/* =========================================================
   18. TABLET
========================================================= */

@media (max-width: 1050px) {

    .desktop-nav,
    .live-nav-button {
        display: none;
    }

    .mobile-menu-button {
        display: block;

        padding: 4px 8px;

        border: 0;

        background: transparent;
        color: white;

        cursor: pointer;

        font-size: 24px;
    }

    .mobile-nav.active {
        display: flex;

        flex-direction: column;

        padding: 20px 30px;

        background: #08080b;

        border-top: 1px solid var(--border);
    }

    .mobile-nav a {
        padding: 10px 0;

        color: var(--muted);
    }

    .stream-hero {
        min-height: auto;

        padding: 125px 30px 80px;
    }

    .stream-hero-inner {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero-left {
        width: 100%;
    }

    .hero-image-container {
        height: 320px;
    }

    .hero-image {
        height: 370px;
    }

    .stream-intro {
        max-width: 760px;
    }

    .hero-right-column {
        width: 100%;
        min-height: auto;
    }

    .hero-right {
        width: 100%;
        min-height: 430px;

        margin-right: 0;
    }

    .character-cutout {
        display: none;
    }

    .watch-grid,
    .clips-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .capital-ribbon {
        top: 103px;
    }
}


/* =========================================================
   19. MOBILE
========================================================= */

@media (max-width: 700px) {

    .container {
        width: min(var(--container), calc(100% - 36px));
    }

    .nav-container {
        height: 68px;

        padding-inline: 18px;
    }

    .brand-mark {
        width: 36px;
        height: 36px;

        font-size: 22px;
    }

    .brand-main {
        font-size: 21px;
    }

    .brand-sub {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .stream-hero {
        padding: 105px 18px 60px;
    }

    .stream-hero-inner {
        gap: 42px;
    }

    .hero-image-container {
        height: 235px;

        margin-bottom: -5px;
    }

    .hero-image {
        height: 270px;
    }

    .hero-tag {
        margin-bottom: 14px;

        font-size: 8px;
        letter-spacing: 2px;
    }

    .stream-intro h1 {
        font-size: clamp(72px, 23vw, 92px);
        line-height: 0.82;
        letter-spacing: -3px;
    }

    .hero-lead {
        margin-top: 24px;

        font-size: 27px;
    }

    .hero-description {
        max-width: none;

        font-size: 13px;
        line-height: 1.7;
    }

    .hero-buttons {
        width: 100%;

        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-right {
        min-height: auto;

        padding: 32px 24px 95px;
    }

    .hero-right h2 {
        margin-bottom: 18px;

        font-size: 2.7rem;
    }

    .character-story {
        max-width: none;
    }

    .character-story p {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .character-stream-live {
        align-items: flex-start;

        flex-direction: column;
    }

    .character-next-stream-details {
        align-items: flex-start;

        flex-direction: column;
        gap: 4px;
    }

    .hero-right-stats {
        min-height: 74px;
        padding-inline: 20px;
    }

    .character-capital-logo {
        width: 24px;
        height: 24px;
        max-width: 24px;
        max-height: 24px;

        flex-basis: 24px;
    }

    .capital-ribbon {
        top: 92px;
        left: -92px;

        width: 275px;
        padding: 13px 0 12px;

        transform: rotate(-45deg) scale(0.88);
    }

    .capital-ribbon span {
        font-size: 7px;
        letter-spacing: 3px;
    }

    .capital-ribbon strong {
        font-size: 19px;
    }

    .section-header {
        display: block;

        margin-bottom: 38px;
    }

    .section-header > p {
        margin-top: 20px;
    }

    .about-section,
    .watch-section,
    .clips-section {
        padding: 85px 0;
    }

    .about-lead {
        font-size: 18px;
    }

    .watch-grid,
    .clips-grid {
        grid-template-columns: 1fr;
    }

    .watch-card {
        min-height: 260px;
    }

    .clip-meta {
        align-items: flex-start;

        flex-direction: column;
        gap: 8px;
    }

    .community-section {
        padding: 100px 18px;
    }

    .footer-content {
        align-items: flex-start;

        flex-direction: column;
        gap: 20px;
    }
}


/* =========================================================
   20. SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    .stream-hero {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-image-container {
        height: 210px;
    }

    .hero-image {
        height: 245px;
    }

    .stream-intro h1 {
        font-size: 70px;
    }

    .hero-right {
        padding: 28px 20px 92px;
    }

    .hero-right h2 {
        font-size: 2.35rem;
    }

    .capital-ribbon {
        top: 88px;
        left: -98px;

        transform: rotate(-45deg) scale(0.82);
    }

    .watch-card {
        padding: 24px;
    }

    .watch-label {
        left: 24px;
    }

    .clip-content {
        padding: 20px;
    }
}


/* =========================================================
   21. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.character-live-text {
    display: block;

    margin-top: 10px;

    color: white;

    font-size: 16px;

    font-weight: 700;
}

.character-watch-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 220px;

    height: 78px;

    margin-top: 30px;

    background: linear-gradient(
        135deg,
        #9147ff,
        #b17aff
    );

    color: white;

    border-radius: 8px;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;

    box-shadow:
        0 12px 35px rgba(145, 71, 255, 0.4);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.character-watch-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 45px rgba(145, 71, 255, 0.6);
}

.watch-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

/* =========================================================
   MOBILE FRIENDLY OVERRIDES
========================================================= */

@media (max-width: 768px) {

    /* PAGE WIDTH */
    .container {
        width: calc(100% - 28px);
    }

    /* HEADER */
    .nav-container {
        height: 68px;
        padding: 0 16px;
    }

    .desktop-nav,
    .live-nav-button {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    /* HERO */
    .stream-hero {
        min-height: auto;
        padding: 95px 16px 55px;
    }

    .stream-hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* CREATOR IMAGE */
    .hero-image-container {
        height: 230px;
        margin-bottom: 0;
    }

    .hero-image {
        height: 260px;
        max-width: 100%;
    }

    /* NARSTYX TEXT */
    .stream-intro {
        width: 100%;
        max-width: none;
    }

    .stream-intro h1 {
        font-size: clamp(68px, 22vw, 92px);
        line-height: 0.82;
        letter-spacing: -3px;
    }

    .hero-lead {
        margin-top: 22px;
        font-size: 26px;
    }

    .hero-description {
        max-width: none;
        font-size: 13px;
        line-height: 1.7;
    }

    /* BUTTONS */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* CURRENT CHARACTER */
    .hero-right-column {
        min-height: auto;
        width: 100%;
    }

    .hero-right {
        width: 100%;
        min-height: auto;

        margin: 0;
        padding: 30px 22px 92px;
    }

    /* Hide Gary cutout on smaller phones */
    .character-cutout {
        display: none;
    }

    .hero-right h2 {
        font-size: 2.5rem;
        line-height: 1;
        margin-bottom: 18px;
    }

    .character-story {
        max-width: none;
    }

    .character-story p {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    /* LIVE / NEXT STREAM */
    .character-stream-live {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .character-next-stream-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .character-watch-button {
        width: 100%;
        max-width: none;
        height: 58px;
    }

    /* CHARACTER FOOTER */
    .hero-right-stats {
        padding: 0 18px;
        min-height: 72px;
    }

    /* SECTION HEADINGS */
    .section-header {
        display: block;
        margin-bottom: 35px;
    }

    .section-header > p {
        margin-top: 15px;
    }

    .section-header h2 {
        font-size: clamp(45px, 14vw, 68px);
    }

    /* WATCH CARDS */
    .watch-grid {
        grid-template-columns: 1fr;
    }

    .watch-card {
        min-height: 220px;
    }

    /* CLIPS */
    .clips-grid {
        grid-template-columns: 1fr;
    }

    .clip-content {
        padding: 20px;
    }

    .clip-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* SECTIONS */
    .about-section,
    .watch-section,
    .clips-section {
        padding: 75px 0;
    }

    /* COMMUNITY */
    .community-section {
        padding: 90px 16px;
    }

    .community-inner h2 {
        font-size: clamp(52px, 17vw, 80px);
    }

    /* FOOTER */
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    .stream-hero {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-image-container {
        height: 205px;
    }

    .hero-image {
        height: 235px;
    }

    .stream-intro h1 {
        font-size: 64px;
    }

    .hero-right {
        padding: 26px 18px 88px;
    }

    .hero-right h2 {
        font-size: 2.2rem;
    }

    .watch-card {
        padding: 22px;
    }

    .clip-content {
        padding: 18px;
    }
}