body {
    font-family: 'Roboto Mono', monospace;
    background-color: #383940;
}

@media (max-width: 1199.98px) {
    #navbarMain {
        max-height: calc(100vh - 64px);
        padding-top: 12px;
        padding-bottom: 12px;
        overflow-y: auto;
    }
}

.home-page,
.playverse-page,
.bananaverse-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}

/* Videos */
.videos-body {
    background: #0f1012;
}

.videos-page {
    --videos-accent: #ffc107;
    --videos-panel: #17181b;
    --videos-muted: #a6a7ad;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    color: #f5f5f7;
    background: #0f1012;
}

.videos-shell {
    display: grid;
    grid-template-columns: 238px minmax(0, 1fr);
    min-height: calc(100svh - 56px);
}

.videos-sidebar {
    position: sticky;
    top: 0;
    align-self: start;
    height: 100svh;
    padding: 30px 18px 24px;
    overflow-y: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: #111214;
}

.videos-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 8px 30px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
}

.videos-sidebar-brand:hover {
    color: #fff;
}

.videos-sidebar-brand-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    color: #141414;
    border-radius: 10px;
    background: var(--videos-accent);
}

.videos-sidebar-brand-icon svg {
    width: 22px;
    fill: currentColor;
}

.videos-sidebar-nav {
    display: grid;
    gap: 5px;
}

.videos-sidebar-link {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 46px;
    padding: 10px 13px;
    color: #b7b8bd;
    font-size: 0.86rem;
    text-decoration: none;
    border-radius: 10px;
    transition: color 140ms ease, background-color 140ms ease;
}

.videos-sidebar-link svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.videos-sidebar-link:first-child svg,
.videos-sidebar-link.active svg {
    fill: currentColor;
    stroke-width: 0;
}

.videos-sidebar-link:hover,
.videos-sidebar-link:focus,
.videos-sidebar-link.active {
    color: #fff;
    background: #242529;
}

.videos-sidebar-link.active {
    box-shadow: inset 3px 0 var(--videos-accent);
}

.videos-sidebar-divider {
    height: 1px;
    margin: 22px 8px;
    background: rgba(255, 255, 255, 0.09);
}

.videos-sidebar-label,
.videos-sidebar-community p {
    margin: 0 12px 11px;
    color: #6f7076;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.videos-sidebar-community {
    margin: 28px 10px 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.videos-sidebar-community p {
    margin-left: 2px;
}

.videos-sidebar-community a {
    display: flex;
    justify-content: space-between;
    padding: 6px 2px;
    color: #999a9f;
    font-size: 0.78rem;
    text-decoration: none;
}

.videos-sidebar-community a:hover {
    color: #fff;
}

.videos-content {
    min-width: 0;
}

.videos-hero {
    position: relative;
    display: flex;
    min-height: min(68svh, 690px);
    align-items: flex-end;
    overflow: hidden;
    background: #1a1b1e;
}

.videos-hero-image,
.videos-hero-overlay {
    position: absolute;
    inset: 0;
}

.videos-hero-image {
    background-image: url('/assets/images/hero_videos.png');
    background-position: center;
    background-size: cover;
    transform: scale(1.015);
}

.videos-hero-overlay {
    background:
        linear-gradient(90deg, rgba(8, 9, 11, 0.94) 0%, rgba(8, 9, 11, 0.62) 44%, rgba(8, 9, 11, 0.08) 78%),
        linear-gradient(0deg, #0f1012 0%, rgba(15, 16, 18, 0.02) 44%);
}

.videos-hero-content {
    position: relative;
    z-index: 1;
    width: min(670px, 72%);
    padding: 72px clamp(30px, 5vw, 76px);
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.66);
}

.videos-eyebrow {
    display: block;
    color: var(--videos-accent);
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.videos-hero h1 {
    max-width: 620px;
    margin: 16px 0 18px;
    font-size: clamp(2.8rem, 5.2vw, 5.35rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.07em;
}

.videos-hero p {
    max-width: 610px;
    margin-bottom: 28px;
    color: #d6d6da;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.65;
}

.videos-hero-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 20px;
    color: #111;
    font-weight: 700;
    border: 0;
    border-radius: 8px;
    background: var(--videos-accent);
}

.videos-hero-button:hover,
.videos-hero-button:focus {
    color: #111;
    background: #ffd145;
}

.videos-hero-button svg {
    width: 19px;
    fill: currentColor;
}

.videos-filter-bar {
    display: flex;
    gap: 10px;
    padding: 20px clamp(24px, 4vw, 64px);
    overflow-x: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #111214;
    scrollbar-width: none;
}

.videos-filter-bar::-webkit-scrollbar {
    display: none;
}

.videos-filter {
    flex: 0 0 auto;
    padding: 9px 15px;
    color: #aaaab0;
    font-size: 0.76rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: #1b1c1f;
}

.videos-filter.active {
    color: #111;
    border-color: var(--videos-accent);
    background: var(--videos-accent);
}

.videos-filter:hover,
.videos-filter:focus {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.24);
}

.videos-filter.active:hover,
.videos-filter.active:focus {
    color: #111;
    border-color: var(--videos-accent);
}

.videos-library {
    padding: 56px clamp(24px, 4vw, 64px) 80px;
}

.videos-section-heading {
    display: flex;
    max-width: 1480px;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin: 0 auto 30px;
}

.videos-section-heading h2,
.watch-suggestions-heading h2 {
    margin: 9px 0 0;
    font-size: clamp(1.55rem, 2.5vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.045em;
}

.videos-section-heading p {
    max-width: 430px;
    margin: 0;
    color: var(--videos-muted);
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
}

.videos-grid {
    display: grid;
    width: 100%;
    max-width: 1480px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 22px;
    margin: 0 auto;
}

.video-card {
    min-width: 0;
}

.video-card-link {
    display: block;
    color: #fff;
    text-decoration: none;
}

.video-card-link:hover {
    color: #fff;
}

.video-card-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 11px;
    background: #25262a;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.video-card-thumbnail img,
.suggested-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease, filter 220ms ease;
}

.video-card-play,
.suggested-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #111;
    border-radius: 50%;
    background: var(--videos-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.36);
    opacity: 0;
    transform: translate(-50%, -45%) scale(0.88);
    transition: opacity 180ms ease, transform 180ms ease;
}

.video-card-play svg,
.suggested-video-play svg {
    width: 23px;
    margin-left: 2px;
    fill: currentColor;
}

.video-card-link:hover .video-card-thumbnail img,
.video-card-link:focus .video-card-thumbnail img,
.suggested-video-card a:hover img,
.suggested-video-card a:focus img {
    filter: brightness(0.72);
    transform: scale(1.035);
}

.video-card-link:hover .video-card-play,
.video-card-link:focus .video-card-play,
.suggested-video-card a:hover .suggested-video-play,
.suggested-video-card a:focus .suggested-video-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.video-card-details {
    display: grid;
    grid-template-columns: 39px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 2px 0;
}

.video-channel-avatar {
    width: 39px;
    height: 39px;
    padding: 5px;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    background: #25262a;
}

.video-card-copy h3,
.suggested-video-copy h3 {
    display: -webkit-box;
    margin: 0 0 7px;
    overflow: hidden;
    color: #f4f4f6;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.video-card-copy p,
.video-card-copy small,
.suggested-video-copy p,
.suggested-video-copy small {
    display: block;
    margin: 0;
    color: #929399;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.78rem;
    line-height: 1.45;
}

.videos-empty-state {
    max-width: 620px;
    margin: 80px auto;
    text-align: center;
}

.videos-empty-icon {
    display: grid;
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    place-items: center;
    color: var(--videos-accent);
    border-radius: 50%;
    background: #242529;
}

.videos-empty-icon svg {
    width: 36px;
    fill: currentColor;
}

.videos-empty-state h2 {
    font-weight: 700;
}

.videos-empty-state p {
    color: var(--videos-muted);
    font-family: system-ui, -apple-system, sans-serif;
}

.watch-grid {
    display: grid;
    width: min(1550px, 100%);
    grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
    gap: clamp(28px, 3vw, 48px);
    margin: 0 auto;
    padding: 34px clamp(24px, 4vw, 64px) 80px;
}

.watch-primary {
    min-width: 0;
}

.watch-back-link {
    display: inline-flex;
    gap: 9px;
    margin: 0 0 20px;
    color: #a9aab0;
    font-size: 0.78rem;
    text-decoration: none;
}

.watch-back-link:hover {
    color: #fff;
}

.watch-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    border-radius: 12px;
    background: #000;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

.watch-title-row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
    padding: 23px 0 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.watch-title-row h1 {
    margin: 0;
    font-size: clamp(1.35rem, 2.35vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.04em;
}

.watch-share-button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: #f3f3f5;
    font: inherit;
    font-size: 0.76rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: #25262a;
}

.watch-share-button:hover {
    background: #34353a;
}

.watch-share-button svg {
    width: 17px;
    fill: currentColor;
}

.watch-channel-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
}

.watch-channel-row img {
    width: 45px;
    height: 45px;
    padding: 6px;
    object-fit: contain;
    border-radius: 50%;
    background: #25262a;
}

.watch-channel-row strong,
.watch-channel-row span {
    display: block;
}

.watch-channel-row strong {
    font-size: 0.86rem;
}

.watch-channel-row span,
.watch-channel-row small {
    color: #96979d;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.75rem;
}

.watch-channel-row small {
    margin-left: auto;
    color: var(--videos-accent);
}

.watch-description {
    padding: 20px;
    color: #cacbd0;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.65;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    background: #191a1d;
}

.watch-description p {
    margin: 0;
    white-space: pre-line;
}

.watch-suggestions {
    min-width: 0;
    padding-top: 39px;
}

.watch-suggestions-heading {
    margin-bottom: 22px;
}

.watch-suggestions-heading h2 {
    font-size: 1.5rem;
}

.suggested-video-card {
    margin-bottom: 18px;
}

.suggested-video-card a {
    display: grid;
    grid-template-columns: minmax(130px, 44%) minmax(0, 1fr);
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

.suggested-video-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background: #25262a;
}

.suggested-video-play {
    width: 34px;
    height: 34px;
}

.suggested-video-play svg {
    width: 17px;
}

.suggested-video-copy h3 {
    font-size: 0.78rem;
}

.suggested-video-copy p,
.suggested-video-copy small {
    font-size: 0.7rem;
}

@media (min-width: 1720px) {
    .videos-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1199.98px) {
    .videos-shell {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .videos-sidebar {
        padding-right: 12px;
        padding-left: 12px;
    }

    .videos-sidebar-brand {
        justify-content: center;
        margin-right: 0;
        margin-left: 0;
    }

    .videos-sidebar-brand > span:last-child,
    .videos-sidebar-link span,
    .videos-sidebar-label,
    .videos-sidebar-divider,
    .videos-sidebar-community {
        display: none;
    }

    .videos-sidebar-link {
        justify-content: center;
        padding-right: 0;
        padding-left: 0;
    }

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

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

    .watch-suggestions {
        padding-top: 8px;
    }

    #suggested-videos {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }
}

@media (max-width: 767.98px) {
    .videos-shell {
        display: block;
    }

    .videos-sidebar {
        position: sticky;
        top: 0;
        z-index: 20;
        display: flex;
        width: 100%;
        height: auto;
        gap: 5px;
        padding: 8px 12px;
        overflow-x: auto;
        overflow-y: hidden;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .videos-sidebar-brand,
    .videos-sidebar-divider,
    .videos-sidebar-label,
    .videos-sidebar-community,
    .videos-sidebar-nav:nth-of-type(2) {
        display: none;
    }

    .videos-sidebar-nav {
        display: flex;
        width: 100%;
        justify-content: space-around;
        gap: 4px;
    }

    .videos-sidebar-link {
        min-width: 64px;
        min-height: 44px;
        gap: 5px;
        padding: 6px 9px;
        font-size: 0.62rem;
    }

    .videos-sidebar-link span {
        display: block;
    }

    .videos-sidebar-link.active {
        box-shadow: inset 0 -2px var(--videos-accent);
    }

    .videos-sidebar-link svg {
        width: 18px;
        height: 18px;
    }

    .videos-hero {
        min-height: 620px;
        align-items: end;
    }

    .videos-hero-image {
        background-position: 64% center;
    }

    .videos-hero-overlay {
        background:
            linear-gradient(0deg, #0f1012 3%, rgba(8, 9, 11, 0.58) 58%, rgba(8, 9, 11, 0.12) 100%),
            linear-gradient(90deg, rgba(8, 9, 11, 0.5), rgba(8, 9, 11, 0));
    }

    .videos-hero-content {
        width: 100%;
        padding: 48px 24px;
    }

    .videos-hero h1 {
        font-size: clamp(2.7rem, 14vw, 4rem);
    }

    .videos-section-heading {
        display: block;
    }

    .videos-section-heading p {
        margin-top: 15px;
    }

    .videos-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
    }

    .videos-library {
        padding-top: 42px;
    }

    .watch-grid {
        padding: 22px 14px 60px;
    }

    .watch-player {
        width: calc(100% + 28px);
        margin-left: -14px;
        border-radius: 0;
    }

    .watch-title-row {
        display: block;
    }

    .watch-share-button {
        margin-top: 16px;
    }

    #suggested-videos {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {
    .video-card-thumbnail img,
    .suggested-video-thumbnail img,
    .video-card-play,
    .suggested-video-play {
        transition: none;
    }
}

.home-page .row > *,
.playverse-page .row > *,
.bananaverse-page .row > * {
    min-width: 0;
}

.home-connect a,
.playverse-game-facts span {
    overflow-wrap: anywhere;
}

.home-hero {
    position: relative;
    min-height: min(76svh, 760px);
    overflow: hidden;
    background-color: #262126;
    background-image: url('/assets/images/hero_home.png');
    background-position: center;
    background-size: cover;
}

.home-hero::before {
    position: absolute;
    inset: 0;
    background: rgba(8, 9, 12, 0.5);
    content: "";
}

.home-hero > .container {
    z-index: 1;
}

.home-hero-content {
    max-width: 720px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
}

.home-brand-logo {
    width: min(600px, 82vw);
    height: auto;
}

.home-intro,
.home-creator {
    background: #292a30;
}

.home-intro-details dt {
    letter-spacing: 0;
}

.home-experience-card {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.home-experience-card:hover,
.home-experience-card:focus {
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
    transform: translateY(-4px);
}

.home-experience-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.home-creator-image {
    width: min(230px, 70vw);
    aspect-ratio: 1;
    object-fit: cover;
    border: 3px solid #ffc107;
    border-radius: 50%;
}

@media (max-width: 767.98px) {
    .home-hero {
        min-height: 70svh;
        background-position: right center;
    }

    .home-brand-logo {
        width: min(500px, 88vw);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-experience-card {
        transition: none;
    }

    .home-experience-card:hover,
    .home-experience-card:focus {
        transform: none;
    }
}

.playverse-hero {
    position: relative;
    min-height: min(76svh, 760px);
    overflow: hidden;
    background: #14231a;
}

.playverse-hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(4, 12, 8, 0.54);
    content: "";
}

.playverse-hero > .container {
    z-index: 2;
}

.playverse-hero-image {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
}

.playverse-hero-minecraft {
    background-image: url('/assets/images/playverse/minecraft.png');
    animation: playverseHeroMinecraft 18s ease-in-out infinite;
}

.playverse-hero-mario {
    background-image: url('/assets/images/playverse/mario-kart-world.jpg');
    animation: playverseHeroMario 18s ease-in-out infinite;
}

@keyframes playverseHeroMinecraft {
    0%, 47% {
        opacity: 1;
    }

    50%, 97% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes playverseHeroMario {
    0%, 47% {
        opacity: 0;
    }

    50%, 97% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.playverse-hero-content {
    max-width: 720px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.78);
}

.playverse-hero h1,
.playverse-principles dt {
    letter-spacing: 0;
}

.playverse-intro,
.playverse-join {
    background: #292a30;
}

.playverse-experiences {
    background: #34353c;
}

.playverse-game,
.playverse-join-card {
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.playverse-game-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.playverse-game-facts {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.playverse-join-card .modal-content {
    text-align: left;
}

@media (max-width: 991.98px) {
    .playverse-game-image {
        min-height: auto;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 767.98px) {
    .playverse-hero {
        min-height: 70svh;
    }

    .playverse-hero-image {
        background-position: center center;
    }

    .playverse-hero h1 {
        font-size: 3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .playverse-hero-minecraft,
    .playverse-hero-mario {
        animation: none;
    }

    .playverse-hero-mario {
        display: none;
    }
}

.bananaverse-hero {
    position: relative;
    min-height: min(76svh, 760px);
    overflow: hidden;
    background-color: #17252b;
}

.bananaverse-hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(4, 12, 15, 0.46);
    content: "";
}

.bananaverse-hero > .container {
    z-index: 2;
}

.bananaverse-hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-position: center;
    background-size: cover;
}

.bananaverse-hero-image-primary {
    background-image: url('/assets/images/bananaverse/hero.png');
    animation: bananaverseHeroPrimary 20s ease-in-out infinite;
}

.bananaverse-hero-image-secondary {
    background-image: url('/assets/images/bananaverse/hero2.png');
    animation: bananaverseHeroSecondary 20s ease-in-out infinite;
}

@keyframes bananaverseHeroPrimary {
    0%, 47% {
        opacity: 1;
    }

    50%, 97% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes bananaverseHeroSecondary {
    0%, 47% {
        opacity: 0;
    }

    50%, 97% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.bananaverse-hero-content {
    max-width: 680px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.bananaverse-hero h1 {
    letter-spacing: 0;
}

.bananaverse-intro,
.bananaverse-status {
    background: #292a30;
}

.bananaverse-details dt {
    letter-spacing: 0;
}

.bananaverse-feature {
    border-top: 3px solid #ffc107;
}

@media (max-width: 767.98px) {
    .bananaverse-hero {
        min-height: 68svh;
    }

    .bananaverse-hero-image {
        background-position: center center;
    }

    .bananaverse-hero h1 {
        font-size: 3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bananaverse-hero-image-primary,
    .bananaverse-hero-image-secondary {
        animation: none;
    }

    .bananaverse-hero-image-secondary {
        display: none;
    }
}

.navbar-brand.pride-text,
.navbar-brand.halloween-text,
.navbar-brand.christmas-text,
.navbar-brand.valentine-text {
    display: inline-block;
    position: relative;
}

/* =========================
   PRIDE 🌈
========================= */

.pride-text {
    background: linear-gradient(
        90deg,
        #ff0000,
        #ff8800,
        #ffee00,
        #00cc44,
        #0099ff,
        #aa00ff
    );

    background-size: 300% auto;

    animation: prideFlow 6s linear infinite;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes prideFlow {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 300% center;
    }
}

/* =========================
   HALLOWEEN 🎃
========================= */

.halloween-text {
    background: linear-gradient(
        90deg,
        #ff6a00,
        #ff9500,
        #ff2d55,
        #6a00ff
    );

    text-shadow:
        0 0 10px rgba(255, 106, 0, 0.8),
        0 0 20px rgba(255, 106, 0, 0.5),
        0 0 40px rgba(255, 45, 85, 0.3);

    animation: halloweenGlow 2s ease-in-out infinite alternate;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes halloweenGlow {
    from {
        filter: brightness(1);
    }

    to {
        filter: brightness(1.3);
    }
}

/* =========================
   CHRISTMAS 🎄
========================= */

.christmas-text {
    background: linear-gradient(
        90deg,
        #00c853,
        #ffffff,
        #ff1744
    );

    text-shadow:
        0 0 8px rgba(255,255,255,0.8),
        0 0 16px rgba(255,255,255,0.5);

    animation: christmasShine 3s ease infinite;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes christmasShine {
    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.4);
    }

    100% {
        filter: brightness(1);
    }
}

/* Snow effect */

.christmas-text::after {
    content: " ❄️";
    position: absolute;
    top: -10px;
    right: -25px;

    animation: snowFloat 2s ease-in-out infinite alternate;
}

@keyframes snowFloat {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(6px);
    }
}

/* =========================
   VALENTINE ❤️
========================= */

.valentine-text {
    background: linear-gradient(
        90deg,
        #ff1744,
        #ff4081,
        #ff80ab
    );

    text-shadow:
        0 0 12px rgba(255, 64, 129, 0.7),
        0 0 24px rgba(255, 64, 129, 0.4);

    animation: heartbeat 1.5s ease infinite;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1.04);
    }

    40% {
        transform: scale(1);
    }

    60% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

.valentine-text::after {
    content: " ❤";
    position: absolute;
    margin-left: 8px;

    animation: heartFloat 1.5s ease infinite;
}

@keyframes heartFloat {
    0% {
        transform: translateY(0px);
        opacity: 1;
    }

    50% {
        transform: translateY(-4px);
        opacity: 0.8;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

/* Live */
.live-page {
    --live-red: #ff334d;
}

.live-broadcast {
    width: min(1460px, 100%);
    margin: 0 auto;
    padding: clamp(38px, 5vw, 76px) clamp(24px, 5vw, 78px) 80px;
}

.live-broadcast-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.live-broadcast-heading h1,
.live-offline-content h1 {
    margin: 14px 0 14px;
    font-size: clamp(3rem, 6vw, 6.4rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.075em;
}

.live-broadcast-heading p,
.live-offline-content > p {
    max-width: 650px;
    margin: 0;
    color: #b8b9bf;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
}

.live-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
}

.live-status-online {
    color: #fff;
    background: var(--live-red);
    box-shadow: 0 7px 24px rgba(255, 51, 77, 0.22);
}

.live-status-offline {
    margin-bottom: 30px;
    color: #d0d1d5;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(15, 16, 18, 0.66);
    backdrop-filter: blur(12px);
}

.live-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.live-status-online .live-status-dot {
    animation: livePulse 1.6s ease-out infinite;
}

@keyframes livePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70%,
    100% {
        box-shadow: 0 0 0 7px rgba(255, 255, 255, 0);
    }
}

.live-community-link {
    flex: 0 0 auto;
    padding-bottom: 5px;
    color: #d5d6da;
    font-size: 0.78rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.live-community-link:hover {
    color: #fff;
}

.live-player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 15px;
    background: #000;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.live-player {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.live-player-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    color: #fff;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 6px;
    background: var(--live-red);
    pointer-events: none;
}

.live-player-badge span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
}

.live-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: clamp(64px, 8vw, 92px);
    height: clamp(64px, 8vw, 92px);
    place-items: center;
    color: #111;
    border: 0;
    border-radius: 50%;
    background: var(--videos-accent);
    box-shadow: 0 15px 42px rgba(0, 0, 0, 0.46);
    transform: translate(-50%, -50%);
    transition: background-color 150ms ease, transform 150ms ease;
}

.live-play-button:hover,
.live-play-button:focus {
    background: #ffd044;
    transform: translate(-50%, -50%) scale(1.06);
}

.live-play-button:disabled {
    cursor: wait;
    opacity: 0.72;
}

.live-play-button svg {
    width: 44%;
    margin-left: 5%;
    fill: currentColor;
}

.live-player-message {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: none;
    padding: 12px 16px;
    color: #fff;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.85rem;
    text-align: center;
    border-radius: 8px;
    background: rgba(150, 25, 40, 0.92);
}

.live-player-message.visible {
    display: block;
}

.live-broadcast-meta {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 20px 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.live-broadcast-meta img {
    width: 47px;
    height: 47px;
    padding: 6px;
    object-fit: contain;
    border-radius: 50%;
    background: #27282c;
}

.live-broadcast-meta strong,
.live-broadcast-meta span {
    display: block;
}

.live-broadcast-meta strong {
    font-size: 0.85rem;
}

.live-broadcast-meta span {
    color: #8f9096;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.76rem;
}

.live-broadcast-meta .live-broadcast-quality {
    margin-left: auto;
    color: var(--live-red);
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.live-offline-hero {
    position: relative;
    display: flex;
    min-height: min(76svh, 760px);
    align-items: end;
    overflow: hidden;
    background: #18191c;
}

.live-offline-image,
.live-offline-overlay {
    position: absolute;
    inset: 0;
}

.live-offline-image {
    background-image: url('/assets/images/hero_live.png');
    background-position: center;
    background-size: cover;
    filter: saturate(0.66);
    transform: scale(1.015);
}

.live-offline-overlay {
    background:
        linear-gradient(90deg, rgba(8, 9, 11, 0.96) 0%, rgba(8, 9, 11, 0.7) 46%, rgba(8, 9, 11, 0.13) 82%),
        linear-gradient(0deg, #0f1012 0%, rgba(15, 16, 18, 0.02) 44%);
}

.live-offline-content {
    position: relative;
    z-index: 1;
    width: min(820px, 76%);
    padding: 70px clamp(30px, 5vw, 78px);
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.7);
}

.live-offline-content h1 {
    margin-top: 15px;
}

.live-offline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 30px;
}

.live-secondary-button {
    padding: 12px 20px;
    color: #fff;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 8px;
    background: rgba(15, 16, 18, 0.35);
    backdrop-filter: blur(10px);
}

.live-secondary-button:hover,
.live-secondary-button:focus {
    color: #111;
    background: #fff;
}

.live-experience {
    padding: 80px clamp(24px, 5vw, 78px);
}

.live-experience-heading {
    max-width: 770px;
    margin-bottom: 42px;
}

.live-experience-heading h2,
.live-cta h2 {
    margin: 11px 0 17px;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.live-experience-heading p {
    margin: 0;
    color: #a9aab0;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

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

.live-feature-card {
    position: relative;
    min-height: 300px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: #191a1e;
}

.live-feature-card::before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--videos-accent);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 200ms ease;
}

.live-feature-card:hover::before {
    transform: scaleX(1);
}

.live-feature-card > svg {
    width: 40px;
    height: 40px;
    margin: 48px 0 27px;
    fill: none;
    stroke: var(--videos-accent);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.4;
}

.live-feature-number {
    position: absolute;
    top: 27px;
    right: 29px;
    color: #5e5f65;
    font-size: 0.72rem;
}

.live-feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.12rem;
    font-weight: 700;
}

.live-feature-card p {
    margin: 0;
    color: #96979d;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.9rem;
    line-height: 1.65;
}

.live-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin: 0 clamp(24px, 5vw, 78px) 80px;
    padding: clamp(34px, 4vw, 54px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    background: #1a1b1f;
}

.live-cta h2 {
    max-width: 700px;
    margin-bottom: 0;
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.live-cta-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 991.98px) {
    .live-feature-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .live-feature-card {
        min-height: 250px;
    }

    .live-cta {
        display: block;
    }

    .live-cta-actions {
        margin-top: 25px;
    }
}

@media (max-width: 767.98px) {
    .live-broadcast-heading {
        display: block;
    }

    .live-community-link {
        display: inline-block;
        margin-top: 20px;
    }

    .live-player-shell {
        width: calc(100% + 48px);
        margin-left: -24px;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .live-offline-hero {
        min-height: 680px;
    }

    .live-offline-image {
        background-position: 64% center;
    }

    .live-offline-overlay {
        background:
            linear-gradient(0deg, #0f1012 3%, rgba(8, 9, 11, 0.66) 62%, rgba(8, 9, 11, 0.16) 100%),
            linear-gradient(90deg, rgba(8, 9, 11, 0.48), transparent);
    }

    .live-offline-content {
        width: 100%;
        padding: 48px 24px;
    }

    .live-offline-content h1 {
        font-size: clamp(3rem, 15vw, 4.4rem);
    }

    .live-experience {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .live-feature-card {
        padding: 28px;
    }

    .live-cta {
        margin-bottom: 55px;
    }

    .live-cta-actions {
        display: grid;
    }
}

@media (prefers-reduced-motion: reduce) {
    .live-status-online .live-status-dot {
        animation: none;
    }

    .live-play-button,
    .live-feature-card::before {
        transition: none;
    }
}

/* Cinema */
.cinema-page,
.cinema-booking-page {
    --cinema-gold: #e8b84a;
    --cinema-surface: #19191b;
    --videos-accent: var(--cinema-gold);
    color: #f5f4f1;
    background: #0e0e10;
}

.cinema-hero {
    position: relative;
    display: flex;
    min-height: min(78svh, 820px);
    align-items: flex-end;
    overflow: hidden;
    background: #171719;
}

.cinema-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 24%;
    filter: none;
}

.cinema-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 7, 9, 0.97) 0%, rgba(7, 7, 9, 0.74) 45%, rgba(7, 7, 9, 0.18) 78%),
        linear-gradient(0deg, #0e0e10 0%, rgba(14, 14, 16, 0.04) 48%);
}

.cinema-hero-content {
    position: relative;
    z-index: 1;
    width: min(780px, 76%);
    padding: 76px clamp(30px, 5vw, 78px);
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.76);
}

.cinema-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 28px;
    padding: 8px 12px;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(12, 12, 14, 0.58);
    backdrop-filter: blur(10px);
}

.cinema-kicker span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cinema-gold);
    box-shadow: 0 0 15px rgba(232, 184, 74, 0.8);
}

.cinema-hero h1,
.cinema-empty h1 {
    margin: 14px 0 20px;
    font-size: clamp(3.4rem, 7vw, 7.5rem);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.08em;
}

.cinema-hero-content > p,
.cinema-empty-content > p {
    max-width: 620px;
    margin-bottom: 30px;
    color: #d0cfcf;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    line-height: 1.7;
}

.cinema-hero .videos-hero-button svg,
.cinema-empty .videos-hero-button svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.cinema-empty .videos-hero-button svg {
    fill: currentColor;
    stroke: none;
}

.cinema-hero-caption {
    position: absolute;
    right: clamp(28px, 4vw, 64px);
    bottom: 38px;
    z-index: 1;
    max-width: 290px;
    padding-left: 18px;
    text-align: right;
    border-left: 2px solid var(--cinema-gold);
}

.cinema-hero-caption span,
.cinema-hero-caption strong {
    display: block;
}

.cinema-hero-caption span {
    color: #aaa9ad;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cinema-hero-caption strong {
    margin-top: 5px;
    font-size: 0.85rem;
}

.cinema-program {
    padding: 78px clamp(24px, 5vw, 78px) 90px;
}

.cinema-program-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    max-width: 1500px;
    margin: 0 auto 38px;
}

.cinema-program-heading h2,
.cinema-promise h2 {
    margin: 10px 0 0;
    font-size: clamp(2.15rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.065em;
}

.cinema-program-heading > p {
    max-width: 450px;
    margin: 0;
    color: #9d9da2;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

.cinema-account-notice {
    display: flex;
    max-width: 1500px;
    align-items: center;
    gap: 16px;
    margin: 0 auto 32px;
    padding: 18px 20px;
    color: #f4f2ed;
    border: 1px solid rgba(232, 184, 74, 0.25);
    border-radius: 11px;
    background: rgba(232, 184, 74, 0.08);
}

.cinema-notice-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--cinema-gold);
    border-radius: 50%;
    background: rgba(232, 184, 74, 0.12);
}

.cinema-notice-icon svg {
    width: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.cinema-account-notice strong,
.cinema-account-notice p {
    display: block;
}

.cinema-account-notice strong {
    margin-bottom: 4px;
    font-size: 0.85rem;
}

.cinema-account-notice p {
    margin: 0;
    color: #adacaf;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.82rem;
}

.cinema-account-notice .btn {
    flex: 0 0 auto;
    margin-left: auto;
}

.cinema-movie-list {
    display: grid;
    max-width: 1500px;
    gap: 28px;
    margin: 0 auto;
}

.cinema-movie-card {
    display: grid;
    grid-template-columns: minmax(220px, 310px) minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: var(--cinema-surface);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.cinema-poster-wrap {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    background: #242426;
}

.cinema-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.cinema-movie-card:hover .cinema-poster {
    transform: scale(1.025);
}

.cinema-poster-rating {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 9px;
    color: #111;
    font-size: 0.66rem;
    font-weight: 700;
    border-radius: 5px;
    background: var(--cinema-gold);
}

.cinema-movie-content {
    display: grid;
    grid-template-columns: minmax(240px, 0.85fr) minmax(330px, 1.15fr);
    gap: clamp(30px, 4vw, 68px);
    align-items: center;
    padding: clamp(30px, 4vw, 58px);
}

.cinema-movie-copy h3 {
    margin: 11px 0 17px;
    font-size: clamp(1.65rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.cinema-movie-copy > p {
    display: -webkit-box;
    margin: 0 0 23px;
    overflow: hidden;
    color: #aaa9ae;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.cinema-movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cinema-movie-meta span {
    padding: 7px 10px;
    color: #c8c7ca;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
}

.cinema-showtimes {
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 11px;
    background: #121214;
}

.cinema-showtimes-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}

.cinema-showtimes-heading strong {
    font-size: 0.8rem;
}

.cinema-showtimes-heading span {
    color: #75757b;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.7rem;
}

.cinema-showtime-days {
    display: grid;
    gap: 15px;
}

.cinema-showtime-day {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cinema-showtime-date strong,
.cinema-showtime-date span {
    display: block;
}

.cinema-showtime-date strong {
    color: var(--cinema-gold);
    font-size: 0.7rem;
    text-transform: uppercase;
}

.cinema-showtime-date span {
    margin-top: 4px;
    color: #8e8e94;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.72rem;
}

.cinema-showtime-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cinema-showtime-button {
    padding: 9px 12px;
    color: #f5f4f1;
    font: inherit;
    font-size: 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 7px;
    background: #222225;
    transition: color 140ms ease, border-color 140ms ease, background-color 140ms ease;
}

.cinema-showtime-button:hover,
.cinema-showtime-button:focus {
    color: #111;
    border-color: var(--cinema-gold);
    background: var(--cinema-gold);
}

.cinema-showtime-button.disabled {
    color: #65656a;
    border-color: rgba(255, 255, 255, 0.05);
    background: #19191b;
}

.cinema-promise {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
    gap: 70px;
    align-items: end;
    padding: 76px clamp(24px, 5vw, 78px) 90px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #151517;
}

.cinema-promise-items {
    display: grid;
    gap: 17px;
}

.cinema-promise-items div {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
    padding-bottom: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cinema-promise-items strong {
    color: var(--cinema-gold);
    font-size: 0.72rem;
}

.cinema-promise-items span {
    color: #c1c0c3;
    font-size: 0.82rem;
}

.cinema-empty {
    position: relative;
    display: grid;
    min-height: calc(100svh - 56px);
    overflow: hidden;
    place-items: center;
    text-align: center;
    background:
        radial-gradient(circle at 50% 18%, rgba(232, 184, 74, 0.12), transparent 30%),
        #0e0e10;
}

.cinema-empty-image,
.cinema-empty-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.cinema-empty-image {
    object-fit: cover;
    object-position: center;
    filter: none;
}

.cinema-empty-overlay {
    background: rgba(7, 7, 9, 0.72);
}

.cinema-empty-light {
    position: absolute;
    top: -20%;
    width: 52%;
    height: 90%;
    background: linear-gradient(180deg, rgba(232, 184, 74, 0.14), transparent);
    clip-path: polygon(43% 0, 57% 0, 100% 100%, 0 100%);
    opacity: 0.55;
}

.cinema-empty-content {
    position: relative;
    z-index: 1;
    width: min(750px, calc(100% - 48px));
    padding: 70px 0;
}

.cinema-empty-icon {
    display: grid;
    width: 78px;
    height: 78px;
    margin: 0 auto 28px;
    place-items: center;
    color: var(--cinema-gold);
    border: 1px solid rgba(232, 184, 74, 0.26);
    border-radius: 50%;
    background: rgba(232, 184, 74, 0.08);
}

.cinema-empty-icon svg {
    width: 36px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.cinema-empty-content > p {
    margin-right: auto;
    margin-left: auto;
}

/* Cinema booking flow */
.cinema-booking-page {
    min-height: 72svh;
}

.cinema-booking-container {
    max-width: 1320px;
}

.cinema-back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 42px;
    color: #a1a0a5;
    font-size: 0.78rem;
    text-decoration: none;
}

.cinema-back-link:hover {
    color: #fff;
}

.cinema-booking-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.cinema-booking-heading h1,
.cinema-ticket-container > h1,
.cinema-message-page h1 {
    margin: 11px 0 16px;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.07em;
}

.cinema-booking-heading p,
.cinema-ticket-intro,
.cinema-message-page > p {
    margin: 0;
    color: #a4a3a8;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
}

.cinema-booking-poster {
    display: block;
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.cinema-booking-summary h2 {
    margin: 10px 0 15px;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.05em;
}

.cinema-booking-description {
    color: #98979c;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.65;
}

.cinema-booking-details {
    display: grid;
    gap: 0;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.cinema-booking-details div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.cinema-booking-details span {
    color: #77777d;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.78rem;
}

.cinema-booking-details strong {
    font-size: 0.76rem;
    text-align: right;
}

.cinema-seat-panel,
.cinema-checkout-card {
    padding: clamp(24px, 4vw, 48px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: #171719;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.cinema-screen-wrap {
    margin-bottom: 35px;
    text-align: center;
    perspective: 240px;
}

.cinema-screen {
    width: 76%;
    height: 10px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: linear-gradient(180deg, #fff6dc, #a88b4f);
    box-shadow: 0 12px 34px rgba(232, 184, 74, 0.22);
    transform: rotateX(-18deg);
}

.cinema-screen-wrap small {
    color: #77777c;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
}

.cinema-seat-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px;
    color: #8c8b90;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.7rem;
}

.cinema-seat-legend span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.cinema-seat-legend i {
    width: 11px;
    height: 11px;
    border-radius: 3px;
}

.cinema-seat-legend .available {
    border: 1px solid #e0ded7;
}

.cinema-seat-legend .selected {
    background: var(--cinema-gold);
}

.cinema-seat-legend .unavailable {
    background: #55565a;
}

.seat-wrapper {
    padding-bottom: 12px;
    overflow-x: auto;
}

.seat-row {
    min-width: max-content;
}

.cinema-seat-column,
.cinema-seat-row-label {
    display: flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    margin: 4px;
    color: #77777d;
    font-size: 0.68rem;
}

.cinema-seat-row-label {
    width: 40px;
    margin-right: 8px;
}

.cinema-seat {
    width: 35px;
    height: 35px;
    padding: 0;
    border-radius: 7px 7px 4px 4px;
}

.cinema-seat.btn-outline-light:hover,
.cinema-seat.btn-success {
    color: #111;
    border-color: var(--cinema-gold);
    background: var(--cinema-gold);
}

.cinema-seat-action {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.cinema-continue-button,
.cinema-payment-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 13px 21px;
    color: #111;
    font-weight: 700;
    border: 0;
    border-radius: 8px;
    background: var(--cinema-gold);
}

.cinema-continue-button:hover,
.cinema-continue-button:focus,
.cinema-payment-button:hover,
.cinema-payment-button:focus {
    color: #111;
    background: #f4cc70;
}

.cinema-continue-button:disabled {
    color: #68686b;
    background: #29292c;
}

.cinema-checkout-card > h2 {
    margin: 10px 0 24px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.055em;
}

.cinema-selected-seats {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 35px;
}

.cinema-selected-seats span {
    display: grid;
    min-width: 48px;
    height: 48px;
    place-items: center;
    color: #111;
    font-weight: 700;
    border-radius: 8px 8px 5px 5px;
    background: var(--cinema-gold);
}

.cinema-order-lines {
    margin-bottom: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.cinema-order-lines div {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    color: #a3a2a7;
    font-family: system-ui, -apple-system, sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.cinema-order-lines .total {
    align-items: end;
    padding-top: 22px;
    color: #fff;
    font-family: inherit;
}

.cinema-order-lines .total strong {
    color: var(--cinema-gold);
    font-size: 1.7rem;
}

.cinema-secure-note {
    margin: 16px 0 0;
    color: #77777d;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.72rem;
    text-align: center;
}

.cinema-ticket-container {
    max-width: 920px;
}

.cinema-ticket-success-icon {
    display: grid;
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    place-items: center;
    color: #111;
    border-radius: 50%;
    background: var(--cinema-gold);
}

.cinema-ticket-success-icon svg {
    width: 34px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.cinema-ticket-intro {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
}

.cinema-ticket {
    position: relative;
    display: grid;
    max-width: 820px;
    grid-template-columns: 250px minmax(0, 1fr);
    margin-top: 45px;
    margin-bottom: 30px;
    overflow: hidden;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: #18181a;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.cinema-ticket::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 250px;
    border-left: 1px dashed rgba(255, 255, 255, 0.18);
    content: "";
}

.cinema-ticket-poster-wrap {
    min-height: 390px;
}

.cinema-ticket-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cinema-ticket-content {
    padding: 38px;
}

.cinema-ticket-content h2 {
    margin: 10px 0 27px;
    font-size: clamp(1.6rem, 3vw, 2.7rem);
    font-weight: 700;
    letter-spacing: -0.055em;
}

.cinema-ticket-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.cinema-ticket-details span,
.cinema-ticket-details strong {
    display: block;
}

.cinema-ticket-details span,
.cinema-ticket-number span {
    margin-bottom: 5px;
    color: #76767c;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.7rem;
}

.cinema-ticket-details strong {
    font-size: 0.77rem;
}

.cinema-ticket-number {
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.cinema-ticket-number span,
.cinema-ticket-number strong {
    display: block;
}

.cinema-ticket-number strong {
    color: var(--cinema-gold);
    font-size: 1.4rem;
}

.cinema-message-page {
    display: flex;
    width: min(760px, calc(100% - 48px));
    min-height: 72svh;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    padding: 70px 0;
    text-align: center;
}

.cinema-message-icon {
    display: grid;
    width: 76px;
    height: 76px;
    margin-bottom: 26px;
    place-items: center;
    font-size: 2rem;
    border-radius: 50%;
}

.cinema-message-icon-warning {
    color: var(--cinema-gold);
    border: 1px solid rgba(232, 184, 74, 0.28);
    background: rgba(232, 184, 74, 0.09);
}

.cinema-message-page > p {
    max-width: 620px;
    margin-bottom: 28px;
}

@media (max-width: 1199.98px) {
    .cinema-movie-content {
        grid-template-columns: minmax(0, 1fr);
    }

    .cinema-promise {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 767.98px) {
    .cinema-hero {
        min-height: 700px;
    }

    .cinema-hero-image {
        object-position: 62% center;
    }

    .cinema-hero-overlay {
        background:
            linear-gradient(0deg, #0e0e10 3%, rgba(7, 7, 9, 0.68) 62%, rgba(7, 7, 9, 0.15) 100%),
            linear-gradient(90deg, rgba(7, 7, 9, 0.48), transparent);
    }

    .cinema-hero-content {
        width: 100%;
        padding: 48px 24px;
    }

    .cinema-hero h1,
    .cinema-empty h1 {
        font-size: clamp(3.1rem, 15vw, 4.8rem);
    }

    .cinema-hero-caption {
        display: none;
    }

    .cinema-program-heading {
        display: block;
    }

    .cinema-program-heading > p {
        margin-top: 17px;
    }

    .cinema-account-notice {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .cinema-account-notice .btn {
        width: 100%;
        margin-left: 0;
    }

    .cinema-movie-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .cinema-poster-wrap {
        min-height: auto;
        aspect-ratio: 3 / 4;
    }

    .cinema-movie-content {
        padding: 27px 20px;
    }

    .cinema-showtimes {
        padding: 20px 16px;
    }

    .cinema-promise {
        gap: 45px;
    }

    .cinema-seat-panel,
    .cinema-checkout-card {
        padding: 25px 14px;
    }

    .cinema-seat-action {
        display: block;
    }

    .cinema-seat-action .cinema-continue-button {
        width: 100%;
    }

    .cinema-ticket {
        grid-template-columns: minmax(0, 1fr);
    }

    .cinema-ticket::after {
        display: none;
    }

    .cinema-ticket-poster-wrap {
        max-height: 470px;
    }

    .cinema-ticket-content {
        padding: 28px 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cinema-poster,
    .cinema-showtime-button {
        transition: none;
    }
}

/* Events */
.events-body {
    background: #202126;
}

.events-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    color: #fff;
    background: #202126;
}

.events-page .row > * {
    min-width: 0;
}

.events-theme-valentine {
    --event-accent: #ff6f91;
    --event-accent-rgb: 255, 111, 145;
}

.events-theme-pride {
    --event-accent: #ffc733;
    --event-accent-rgb: 255, 199, 51;
}

.events-theme-halloween {
    --event-accent: #ff8a24;
    --event-accent-rgb: 255, 138, 36;
}

.events-theme-christmas {
    --event-accent: #74d19a;
    --event-accent-rgb: 116, 209, 154;
}

.events-hero {
    position: relative;
    display: flex;
    min-height: min(78svh, 820px);
    align-items: flex-end;
    overflow: hidden;
    background: #18191d;
}

.events-hero-image,
.events-hero-overlay {
    position: absolute;
    inset: 0;
}

.events-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.events-hero-overlay {
    background:
        linear-gradient(90deg, rgba(7, 8, 11, 0.93) 0%, rgba(7, 8, 11, 0.57) 48%, rgba(7, 8, 11, 0.08) 78%),
        linear-gradient(0deg, #202126 0%, rgba(32, 33, 38, 0.02) 45%);
}

.events-hero > .container {
    z-index: 1;
}

.events-hero-content {
    width: min(760px, 78%);
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.72);
}

.events-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 28px;
    padding: 8px 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(9, 10, 13, 0.5);
    backdrop-filter: blur(10px);
}

.events-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--event-accent);
    box-shadow: 0 0 13px rgba(var(--event-accent-rgb), 0.75);
}

.events-eyebrow {
    display: block;
    color: var(--event-accent, #ffc107);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.events-hero h1 {
    margin: 15px 0 20px;
    font-size: clamp(3.5rem, 7vw, 7.3rem);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.08em;
}

.events-hero-content > p {
    max-width: 640px;
    margin-bottom: 30px;
    color: #dedee1;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.7;
}

.events-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
}

.events-primary-button {
    padding: 12px 20px;
    color: #111;
    font-weight: 700;
    border: 0;
    border-radius: 8px;
    background: var(--event-accent);
}

.events-primary-button:hover,
.events-primary-button:focus {
    color: #111;
    background: #fff;
}

.events-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.78rem;
    text-decoration: none;
}

.events-text-link:hover {
    color: var(--event-accent);
}

.events-hero-featured {
    position: absolute;
    right: clamp(30px, 5vw, 78px);
    bottom: 45px;
    z-index: 1;
    max-width: 290px;
    padding-left: 18px;
    border-left: 2px solid var(--event-accent);
}

.events-hero-featured span,
.events-hero-featured strong,
.events-hero-featured small {
    display: block;
}

.events-hero-featured span {
    color: #aaaab0;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.events-hero-featured strong {
    margin: 6px 0;
    font-size: 0.9rem;
}

.events-hero-featured small {
    color: #c7c7cb;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.72rem;
}

.events-intro {
    background: #292a30;
}

.events-intro h2,
.events-closing h2 {
    margin: 12px 0 0;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.07em;
}

.events-intro p {
    color: #b2b2b7;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
}

.events-stories {
    background: #222329;
}

.event-story {
    display: grid;
    min-height: 680px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    scroll-margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.event-story:nth-child(even) .event-story-visual {
    order: 2;
}

.event-story-visual {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #18191d;
}

.event-story-visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 9, 12, 0.32), transparent 48%);
    content: "";
}

.event-story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.event-story:hover .event-story-visual img {
    transform: scale(1.025);
}

.event-story-index {
    position: absolute;
    right: 30px;
    bottom: 24px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
}

.event-story-content {
    display: flex;
    max-width: 760px;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 6vw, 96px);
}

.event-story-content h2 {
    margin: 12px 0 19px;
    font-size: clamp(2.7rem, 5vw, 5.3rem);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.07em;
}

.event-story-lead {
    margin-bottom: 25px;
    color: #dedee1;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 1.08rem;
    line-height: 1.65;
}

.event-countdown-wrap {
    margin-bottom: 27px;
    padding: 20px;
    border-top: 1px solid rgba(var(--event-accent-rgb), 0.42);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(var(--event-accent-rgb), 0.055);
}

.event-countdown-label {
    display: block;
    margin-bottom: 14px;
    color: var(--event-accent);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.event-countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.event-countdown > span {
    min-width: 0;
}

.event-countdown strong,
.event-countdown small {
    display: block;
}

.event-countdown strong {
    font-size: clamp(1.15rem, 2vw, 1.7rem);
}

.event-countdown small {
    margin-top: 4px;
    color: #808087;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.65rem;
}

.event-countdown .event-ended {
    grid-column: 1 / -1;
}

.event-countdown .event-ended strong {
    font-size: 1rem;
}

.event-story-about {
    margin: 0 0 25px;
    color: #a9a9af;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.7;
}

.event-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 20px;
    margin-bottom: 28px;
}

.event-feature-list span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #c3c3c7;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.78rem;
    line-height: 1.45;
}

.event-feature-list i {
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    margin-top: 5px;
    border-radius: 50%;
    background: var(--event-accent);
}

.event-story-note {
    padding-top: 18px;
    color: #77777e;
    font-family: system-ui, -apple-system, sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.events-closing {
    background: #292a30;
}

.events-closing-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
    margin: 30px 0;
    padding: clamp(36px, 5vw, 66px);
    border-left: 4px solid #ffc107;
    background: #1f2025;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.events-closing h2 {
    max-width: 800px;
    font-size: clamp(2rem, 4vw, 3.8rem);
}

.events-closing .btn {
    flex: 0 0 auto;
}

@media (max-width: 991.98px) {
    .events-hero-featured {
        display: none;
    }

    .event-story {
        grid-template-columns: minmax(0, 1fr);
    }

    .event-story:nth-child(even) .event-story-visual {
        order: initial;
    }

    .event-story-visual {
        min-height: auto;
        aspect-ratio: 16 / 10;
    }

    .event-story-content {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .events-hero {
        min-height: 720px;
    }

    .events-hero-image {
        object-position: center;
    }

    .events-hero-overlay {
        background:
            linear-gradient(0deg, #202126 3%, rgba(7, 8, 11, 0.64) 60%, rgba(7, 8, 11, 0.12) 100%),
            linear-gradient(90deg, rgba(7, 8, 11, 0.48), transparent);
    }

    .events-hero-content {
        width: 100%;
    }

    .events-hero h1 {
        font-size: clamp(3.2rem, 16vw, 5rem);
    }

    .events-hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .events-intro h2 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .event-story-content {
        padding: 48px 24px 58px;
    }

    .event-feature-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .event-countdown {
        gap: 8px;
    }

    .events-closing-card {
        display: block;
    }

    .events-closing .btn {
        margin-top: 25px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .event-story-visual img {
        transition: none;
    }
}

/* Editorial refresh: Home, Playverse, Bananaverse */
.home-page,
.playverse-page,
.bananaverse-page {
    color: #fff;
    background: #202126;
}

.home-hero,
.playverse-hero,
.bananaverse-hero {
    min-height: min(78svh, 820px);
}

.home-hero::before,
.playverse-hero::before,
.bananaverse-hero::before {
    background:
        linear-gradient(90deg, rgba(7, 8, 11, 0.93) 0%, rgba(7, 8, 11, 0.57) 48%, rgba(7, 8, 11, 0.08) 78%),
        linear-gradient(0deg, #202126 0%, rgba(32, 33, 38, 0.02) 45%);
}

.home-hero-content,
.playverse-hero-content,
.bananaverse-hero-content {
    width: min(760px, 78%);
    max-width: none;
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.72);
}

.home-hero-content .lead,
.playverse-hero-content .lead,
.bananaverse-hero-content .lead {
    max-width: 650px;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.7;
}

.playverse-hero h1,
.bananaverse-hero h1 {
    margin-bottom: 20px !important;
    font-size: clamp(3.6rem, 7vw, 7.4rem);
    line-height: 0.92;
    letter-spacing: -0.08em;
}

.playverse-hero .badge,
.bananaverse-hero .badge {
    padding: 9px 13px !important;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.playverse-hero .badge {
    color: #d8ffe5;
    background: rgba(25, 135, 84, 0.56) !important;
}

.bananaverse-hero .badge {
    background: rgba(255, 193, 7, 0.86) !important;
}

.home-hero .btn,
.playverse-hero .btn,
.bananaverse-hero .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 8px;
}

.home-brand-logo {
    width: min(640px, 80vw);
    filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.32));
}

.home-intro,
.playverse-intro,
.bananaverse-intro {
    background: #292a30;
}

.home-intro h2,
.playverse-intro h2,
.bananaverse-intro h2 {
    max-width: 760px;
    font-size: clamp(2.35rem, 4.5vw, 4.6rem);
    line-height: 1;
    letter-spacing: -0.065em;
}

.home-intro .fs-5,
.playverse-intro .fs-5,
.bananaverse-intro .fs-5 {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.72;
}

.home-intro .text-secondary,
.playverse-intro .text-secondary,
.bananaverse-intro .text-secondary {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.7;
}

.home-intro-details,
.playverse-principles,
.bananaverse-details {
    padding: 28px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 12px 12px 0;
    background: #1f2025;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.17);
}

.home-intro-details dd,
.playverse-principles dd,
.bananaverse-details dd {
    font-family: system-ui, -apple-system, sans-serif;
}

/* Home */
.home-experiences {
    padding-top: 76px !important;
    padding-bottom: 82px !important;
    background: #222329 !important;
}

.home-experiences .container > .mb-4 {
    margin-bottom: 34px !important;
}

.home-experiences h2,
.home-creator h2 {
    font-size: clamp(2.1rem, 4vw, 3.8rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.home-experiences .row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-experiences .row > * {
    width: auto;
}

.home-experience-card {
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 13px;
    background: #17181c !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}

.home-experience-card:hover,
.home-experience-card:focus {
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.36);
    transform: translateY(-6px);
}

.home-experience-image {
    aspect-ratio: 16 / 10;
}

.home-experience-card .card-body {
    padding: 24px;
}

.home-experience-card h3 {
    font-size: 1.05rem !important;
}

.home-experience-card p {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.55;
}

.home-creator {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
    background: #292a30;
}

.home-creator .row {
    padding: clamp(30px, 5vw, 62px);
    border-left: 4px solid #ffc107;
    background: #1f2025;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.home-creator-image {
    width: min(270px, 70vw);
    border-width: 4px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
}

.home-creator .text-light,
.home-connect p {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.7;
}

.home-connect {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
    background: #222329 !important;
}

.home-connect .col-lg-6 {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: #191a1e;
}

/* Playverse */
.playverse-intro .text-success,
.playverse-experiences .text-success,
.playverse-join .text-success {
    color: #74d19a !important;
}

.playverse-experiences {
    padding-top: 76px !important;
    padding-bottom: 82px !important;
    background: #222329;
}

.playverse-experiences > .container > .d-flex h2,
.playverse-join > .container > .text-center h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.playverse-game,
.playverse-join-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px;
    background: #18191d !important;
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
}

.playverse-game-image {
    min-height: 610px;
    transition: transform 500ms ease;
}

.playverse-game:hover .playverse-game-image {
    transform: scale(1.022);
}

.playverse-game .card-body {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
}

.playverse-game .card-body > .text-secondary,
.playverse-game li,
.playverse-join-card p,
.playverse-join-card li,
.playverse-join-card label {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.65;
}

.playverse-game .h3 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    letter-spacing: -0.05em;
}

.playverse-game-facts {
    margin-top: 12px;
    padding: 18px 0;
}

.playverse-join {
    padding-top: 76px !important;
    padding-bottom: 82px !important;
    background: #222329;
}

.playverse-join-card .card-body {
    padding: clamp(28px, 5vw, 58px) !important;
}

.playverse-join-card .form-control {
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 8px;
    background: #27282d !important;
}

/* Bananaverse */
.bananaverse-hero .btn-warning {
    box-shadow: 0 10px 28px rgba(255, 193, 7, 0.22);
}

.bananaverse-features {
    padding-top: 76px !important;
    padding-bottom: 82px !important;
    background: #222329 !important;
}

.bananaverse-features .row {
    align-items: stretch;
}

.bananaverse-feature {
    min-height: 250px;
    padding: 32px !important;
    border-top: 3px solid #ffc107;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: #18191d;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.bananaverse-feature h3 {
    margin: 45px 0 15px;
    font-size: 1.12rem !important;
}

.bananaverse-feature p {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.65;
}

.bananaverse-status {
    padding-top: 78px !important;
    padding-bottom: 82px !important;
    background: #292a30;
}

.bananaverse-status .container {
    padding: clamp(34px, 5vw, 60px);
    border-left: 4px solid #ffc107;
    background: #1f2025;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.bananaverse-status h2 {
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.bananaverse-status p {
    font-family: system-ui, -apple-system, sans-serif;
}

@media (max-width: 991.98px) {
    .home-experiences .row {
        grid-template-columns: minmax(0, 1fr);
    }

    .playverse-game-image {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .home-hero,
    .playverse-hero,
    .bananaverse-hero {
        min-height: 720px;
    }

    .home-hero::before,
    .playverse-hero::before,
    .bananaverse-hero::before {
        background:
            linear-gradient(0deg, #202126 3%, rgba(7, 8, 11, 0.64) 60%, rgba(7, 8, 11, 0.12) 100%),
            linear-gradient(90deg, rgba(7, 8, 11, 0.48), transparent);
    }

    .home-hero-content,
    .playverse-hero-content,
    .bananaverse-hero-content {
        width: 100%;
    }

    .playverse-hero h1,
    .bananaverse-hero h1 {
        font-size: clamp(3.2rem, 16vw, 5rem);
    }

    .home-brand-logo {
        width: min(520px, 88vw);
    }

    .home-creator .row {
        margin-right: 0;
        margin-left: 0;
    }

    .home-connect .col-lg-6 {
        padding: 24px;
    }

    .bananaverse-feature {
        min-height: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .playverse-game-image {
        transition: none;
    }
}

/* Global header */
.site-navbar {
    position: relative;
    z-index: 1030;
    min-height: 74px;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(17, 18, 21, 0.98);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.16);
}

.site-navbar-inner {
    min-height: 74px;
    padding-right: clamp(18px, 3vw, 46px);
    padding-left: clamp(18px, 3vw, 46px);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-right: clamp(24px, 3vw, 54px);
    padding: 0;
    color: #fff;
    text-decoration: none;
}

.site-brand:hover,
.site-brand:focus {
    color: #fff;
}

.site-brand-symbol {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    color: #111214;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    background: #ffc107;
    box-shadow: 0 7px 20px rgba(255, 193, 7, 0.16);
}

.site-brand-copy {
    display: flex;
    flex-direction: column;
    color: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.site-brand-copy small {
    margin-top: 4px;
    color: #818289;
    font-size: 0.54rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    -webkit-text-fill-color: currentColor;
}

.site-brand-copy.pride-text,
.site-brand-copy.halloween-text,
.site-brand-copy.christmas-text,
.site-brand-copy.valentine-text {
    position: relative;
}

.site-navbar-collapse {
    min-width: 0;
}

.site-nav-links {
    align-items: center;
    gap: 3px;
}

.site-nav-links .nav-link {
    position: relative;
    padding: 10px 12px !important;
    color: #a6a7ad;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 8px;
    transition: color 140ms ease, background-color 140ms ease;
}

.site-nav-links .nav-link::after {
    position: absolute;
    right: 12px;
    bottom: 4px;
    left: 12px;
    height: 2px;
    background: #ffc107;
    content: "";
    opacity: 0;
    transform: scaleX(0.45);
    transition: opacity 140ms ease, transform 140ms ease;
}

.site-nav-links .nav-link:hover,
.site-nav-links .nav-link:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
}

.site-nav-links .nav-link.active {
    color: #fff;
}

.site-nav-links .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.site-account-area {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
    margin-left: 14px;
}

.site-login-button,
.site-signup-button,
.site-account-button {
    min-height: 40px;
    padding: 9px 15px;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 8px;
}

.site-login-button {
    color: #d4d5d9;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: #242529;
}

.site-login-button:hover,
.site-login-button:focus {
    color: #fff;
    background: #303136;
}

.site-signup-button {
    color: #111;
    border: 1px solid #fff;
    background: #fff;
}

.site-signup-button:hover,
.site-signup-button:focus {
    color: #111;
    border-color: #ffc107;
    background: #ffc107;
}

.site-account-button {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #222327;
}

.site-account-button:hover,
.site-account-button:focus,
.site-account-button.show {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
    background: #2c2d32;
}

.site-account-button img {
    width: 27px;
    height: 27px;
    object-fit: cover;
    border-radius: 50%;
}

.site-account-menu {
    min-width: 245px;
    margin-top: 11px !important;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: #1b1c20;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

.site-account-menu-heading {
    padding: 10px 12px 8px;
}

.site-account-menu-heading small,
.site-account-menu-heading strong {
    display: block;
}

.site-account-menu-heading small {
    margin-bottom: 4px;
    color: #77787f;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.68rem;
}

.site-account-menu-heading strong {
    color: #fff;
    font-size: 0.78rem;
}

.site-account-menu .dropdown-item {
    padding: 9px 12px;
    color: #c3c4c9;
    font-size: 0.72rem;
    border-radius: 6px;
}

.site-account-menu .dropdown-item:hover,
.site-account-menu .dropdown-item:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.site-account-menu .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.09);
}

.site-navbar-toggler {
    padding: 7px 9px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

/* Global footer */
.site-footer {
    position: relative;
    margin-top: 0;
    overflow: hidden;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #111215;
}

.site-footer::before {
    position: absolute;
    top: 0;
    left: 8%;
    width: 34%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffc107, transparent);
    content: "";
}

.site-footer-main {
    padding-top: clamp(58px, 7vw, 92px);
    padding-bottom: clamp(48px, 6vw, 76px);
}

.site-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 0.93rem;
    font-weight: 700;
    text-decoration: none;
}

.site-footer-brand:hover {
    color: #fff;
}

.site-footer-manifesto {
    max-width: 480px;
    margin: 24px 0 22px;
    color: #94959b;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
}

.site-footer-email {
    color: #d2d3d7;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.8rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer-email:hover {
    color: #ffc107;
    border-color: #ffc107;
}

.site-footer-heading {
    margin: 6px 0 22px;
    color: #f3f3f5;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer-links,
.site-footer-socials {
    display: grid;
    gap: 13px;
}

.site-footer-links a,
.site-footer-socials a {
    color: #85868d;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.79rem;
    text-decoration: none;
    transition: color 140ms ease, transform 140ms ease;
}

.site-footer-links a:hover,
.site-footer-socials a:hover {
    color: #fff;
    transform: translateX(3px);
}

.site-footer-socials a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-socials strong {
    color: #ffc107;
    font-weight: 400;
}

.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    padding-bottom: 25px;
    color: #62636a;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.68rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1199.98px) {
    .site-navbar-inner {
        padding-top: 13px;
        padding-bottom: 13px;
    }

    .site-navbar-collapse {
        max-height: calc(100svh - 100px);
        margin-top: 13px;
        padding: 18px;
        overflow-y: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        background: #17181c;
    }

    .site-navbar-collapse.show,
    .site-navbar-collapse.collapsing {
        display: flex;
        align-items: stretch;
        flex-direction: column;
    }

    .site-nav-links {
        order: 1;
        width: 100%;
        align-items: stretch;
        gap: 3px;
    }

    .site-nav-links .nav-link {
        padding: 11px 13px !important;
    }

    .site-nav-links .nav-link::after {
        top: 10px;
        right: auto;
        bottom: 10px;
        left: 2px;
        width: 2px;
        height: auto;
        transform: scaleY(0.45);
    }

    .site-nav-links .nav-link.active::after {
        transform: scaleY(1);
    }

    .site-account-area {
        width: 100%;
        order: 0;
        margin-top: 0;
        margin-bottom: 15px;
        margin-left: 0;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-account-area .dropdown,
    .site-account-button {
        width: 100%;
    }

    .site-account-button {
        justify-content: flex-start;
    }

    .site-account-button::after {
        margin-left: auto;
    }

    .site-account-menu {
        position: static !important;
        inset: auto !important;
        width: 100%;
        max-height: none;
        margin-top: 8px !important;
        transform: none !important;
    }
}

@media (max-width: 767.98px) {
    .site-brand-copy {
        font-size: 0.74rem;
    }

    .site-account-area {
        align-items: stretch;
        flex-direction: column;
    }

    .site-account-area .dropdown,
    .site-account-button,
    .site-login-button,
    .site-signup-button {
        width: 100%;
    }

    .site-account-button {
        justify-content: space-between;
    }

    .site-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-nav-links .nav-link,
    .site-nav-links .nav-link::after,
    .site-footer-links a,
    .site-footer-socials a {
        transition: none;
    }
}

/* Shared account cards */
.user-button {
    gap: 15px;
}

.user-button-avatar {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 50%;
}

.user-button-copy {
    min-width: 0;
    flex: 1 1 auto;
}

.user-button-name {
    font-weight: 600;
}

.user-button-meta {
    margin-top: 3px;
    overflow-wrap: anywhere;
    opacity: 0.7;
    font-size: 0.78rem;
}

/* Team */
.team-body,
.team-page {
    background: #202126;
}

.team-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    color: #fff;
}

.team-page .row > * {
    min-width: 0;
}

.team-hero {
    position: relative;
    display: flex;
    min-height: min(78svh, 820px);
    align-items: flex-end;
    overflow: hidden;
    background: #18191d;
}

.team-hero-image,
.team-hero-overlay {
    position: absolute;
    inset: 0;
}

.team-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-hero-overlay {
    background:
        linear-gradient(90deg, rgba(7, 8, 11, 0.94) 0%, rgba(7, 8, 11, 0.59) 48%, rgba(7, 8, 11, 0.08) 78%),
        linear-gradient(0deg, #202126 0%, rgba(32, 33, 38, 0.02) 45%);
}

.team-hero > .container {
    z-index: 1;
}

.team-hero-content {
    width: min(780px, 78%);
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.74);
}

.team-eyebrow {
    display: block;
    color: #ffc107;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.team-hero h1 {
    margin: 15px 0 20px;
    font-size: clamp(3.5rem, 7vw, 7.3rem);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.08em;
}

.team-hero-content > p {
    max-width: 660px;
    margin-bottom: 30px;
    color: #dedee1;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.7;
}

.team-primary-button {
    padding: 12px 20px;
    color: #111;
    font-weight: 700;
    border: 0;
    border-radius: 8px;
    background: #ffc107;
}

.team-primary-button:hover,
.team-primary-button:focus {
    color: #111;
    background: #fff;
}

.team-hero-note {
    position: absolute;
    right: clamp(30px, 5vw, 78px);
    bottom: 45px;
    z-index: 1;
    max-width: 310px;
    padding-left: 18px;
    border-left: 2px solid #ffc107;
}

.team-hero-note span,
.team-hero-note strong {
    display: block;
}

.team-hero-note span {
    color: #aaaab0;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.team-hero-note strong {
    margin-top: 6px;
    font-size: 0.82rem;
    line-height: 1.45;
}

.team-intro {
    background: #292a30;
}

.team-intro h2,
.team-section-heading h2,
.team-values-heading h2,
.team-closing h2 {
    margin: 12px 0 0;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.07em;
}

.team-intro p,
.team-section-heading > p {
    color: #aaaab0;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.team-stats div {
    padding: 28px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.team-stats div:last-child {
    border-right: 0;
}

.team-stats strong,
.team-stats span {
    display: block;
}

.team-stats strong {
    color: #ffc107;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.team-stats span {
    margin-top: 6px;
    color: #898a91;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.76rem;
}

.team-members {
    padding-top: 52px;
    padding-bottom: 62px;
}

.team-leadership {
    scroll-margin-top: 20px;
    background: #222329;
}

.team-crew {
    background: #292a30;
}

.team-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 38px;
    margin-bottom: 36px;
}

.team-section-heading > p {
    max-width: 480px;
    margin: 0;
}

.team-members-grid {
    margin-right: -10px;
    margin-left: -10px;
}

.team-member-column {
    padding-right: 10px;
    padding-left: 10px;
}

.team-member-card {
    position: relative;
    min-height: 128px;
    gap: 19px;
    padding: 22px !important;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px;
    background: #18191d !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.team-member-card::before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #ffc107;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.team-member-card:hover,
.team-member-card:focus {
    border-color: rgba(255, 193, 7, 0.28) !important;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
    transform: translateY(-3px);
}

.team-member-card:hover::before,
.team-member-card:focus::before {
    transform: scaleX(1);
}

.team-member-card .user-button-avatar {
    width: 76px;
    height: 76px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.team-member-card .user-button-name {
    font-size: 0.96rem;
}

.team-member-card .user-button-meta {
    color: #a2a3a9;
    font-family: system-ui, -apple-system, sans-serif;
}

.team-member-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 11px;
}

.team-member-roles span {
    padding: 5px 8px;
    color: #d5b75b;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.62rem;
    border: 1px solid rgba(255, 193, 7, 0.16);
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.065);
}

.team-member-arrow {
    align-self: flex-start;
    margin-left: auto;
    color: #6e6f76;
    font-size: 0.9rem;
    transition: color 160ms ease, transform 160ms ease;
}

.team-member-card:hover .team-member-arrow,
.team-member-card:focus .team-member-arrow {
    color: #ffc107;
    transform: translate(2px, -2px);
}

.team-empty {
    padding: 34px;
    color: #85868d;
    font-family: system-ui, -apple-system, sans-serif;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: #18191d;
}

.team-values {
    padding-top: 50px;
    padding-bottom: 60px;
    background: #222329;
}

.team-values-heading {
    margin-bottom: 34px;
}

.team-value-card {
    position: relative;
    min-height: 280px;
    padding: 32px;
    border-top: 3px solid #ffc107;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: #18191d;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.team-value-card > span {
    color: #ffc107;
    font-size: 0.7rem;
}

.team-value-card h3 {
    margin: 55px 0 14px;
    font-size: 1.16rem;
    font-weight: 700;
}

.team-value-card p {
    margin: 0;
    color: #92939a;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.65;
}

.team-closing {
    background: #292a30;
}

.team-closing-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
    margin: 30px 0;
    padding: clamp(36px, 5vw, 66px);
    border-left: 4px solid #ffc107;
    background: #1f2025;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.team-closing h2 {
    max-width: 790px;
    font-size: clamp(2rem, 4vw, 3.8rem);
}

.team-closing .btn {
    flex: 0 0 auto;
}

@media (max-width: 991.98px) {
    .team-hero-note {
        display: none;
    }

    .team-section-heading {
        display: block;
    }

    .team-section-heading > p {
        margin-top: 18px;
    }

    .team-closing-card {
        display: block;
    }

    .team-closing .btn {
        margin-top: 25px;
    }
}

@media (max-width: 767.98px) {
    .team-hero {
        min-height: 720px;
    }

    .team-hero-image {
        object-position: 58% center;
    }

    .team-hero-overlay {
        background:
            linear-gradient(0deg, #202126 3%, rgba(7, 8, 11, 0.66) 62%, rgba(7, 8, 11, 0.12) 100%),
            linear-gradient(90deg, rgba(7, 8, 11, 0.5), transparent);
    }

    .team-hero-content {
        width: 100%;
    }

    .team-hero h1 {
        font-size: clamp(3.2rem, 16vw, 5rem);
    }

    .team-stats {
        grid-template-columns: minmax(0, 1fr);
    }

    .team-stats div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .team-stats div:last-child {
        border-bottom: 0;
    }

    .team-member-card {
        align-items: flex-start !important;
        min-height: 116px;
        padding: 18px !important;
    }

    .team-member-card .user-button-avatar {
        width: 60px;
        height: 60px;
    }

    .team-member-arrow {
        display: none;
    }

    .team-value-card {
        min-height: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .team-member-card,
    .team-member-card::before,
    .team-member-arrow {
        transition: none;
    }
}

/* Account settings */
.account-body,
.account-settings-page,
.profile-page {
    color: #fff;
    background: #202126;
}

.account-settings-page {
    min-height: 75svh;
}

.account-settings-shell {
    max-width: 1380px;
    padding-top: clamp(42px, 6vw, 82px) !important;
    padding-bottom: clamp(55px, 7vw, 94px) !important;
}

.account-settings-sidebar {
    position: sticky;
    top: 22px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
    background: #17181c;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.account-settings-user {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.account-settings-user img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.account-settings-user strong,
.account-settings-user span {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-settings-user strong {
    font-size: 0.78rem;
}

.account-settings-user span {
    margin-top: 4px;
    color: #7e7f86;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.68rem;
}

.account-settings-label {
    display: block;
    margin: 0 10px 11px;
    color: #62636a;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.account-settings-link {
    position: relative;
    display: flex;
    min-height: 43px;
    align-items: center;
    margin-bottom: 4px;
    padding: 10px 12px;
    color: #a5a6ac;
    font-size: 0.75rem;
    text-decoration: none;
    border-radius: 8px;
    transition: color 140ms ease, background-color 140ms ease;
}

.account-settings-link::before {
    position: absolute;
    top: 11px;
    bottom: 11px;
    left: 0;
    width: 2px;
    background: #ffc107;
    content: "";
    opacity: 0;
}

.account-settings-link:hover,
.account-settings-link:focus,
.account-settings-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.account-settings-link.active::before {
    opacity: 1;
}

.account-settings-profile-link {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding: 16px 10px 3px;
    color: #85868d;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.72rem;
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.account-settings-profile-link:hover {
    color: #ffc107;
}

.account-settings-heading {
    max-width: 760px;
    margin-bottom: 37px;
}

.account-settings-heading > span,
.profile-kicker,
.profile-panel-label {
    display: block;
    color: #ffc107;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.account-settings-heading h1 {
    margin: 11px 0 15px;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.07em;
}

.account-settings-heading p {
    margin: 0;
    color: #a0a1a7;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
}

.account-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.account-overview-card {
    position: relative;
    min-height: 235px;
    padding: 28px;
    color: #fff;
    text-decoration: none;
    border-top: 3px solid #ffc107;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: #18191d;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    transition: border-color 160ms ease, transform 160ms ease;
}

.account-overview-card:hover,
.account-overview-card:focus {
    color: #fff;
    border-color: rgba(255, 193, 7, 0.3);
    transform: translateY(-3px);
}

.account-overview-card > span {
    color: #ffc107;
    font-size: 0.68rem;
}

.account-overview-card h2 {
    margin: 37px 0 11px;
    font-size: 1.15rem;
    font-weight: 700;
}

.account-overview-card p {
    margin-bottom: 21px;
    color: #8f9097;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.86rem;
    line-height: 1.6;
}

.account-overview-card strong {
    color: #d3d4d8;
    font-size: 0.7rem;
}

.account-settings-card {
    width: 100%;
    max-width: 760px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
    background: #18191d !important;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.account-settings-card .card-body {
    padding: clamp(25px, 4vw, 42px);
}

.account-settings-card .card-title,
.account-settings-card .form-label {
    font-weight: 700;
}

.account-settings-card .form-label {
    margin-bottom: 8px;
    color: #c9cace;
    font-size: 0.72rem;
}

.account-settings-card .form-control {
    min-height: 48px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px;
    background: #292a2f !important;
}

.account-settings-card .form-control:focus {
    border-color: rgba(255, 193, 7, 0.55) !important;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.account-settings-card .form-check {
    padding: 12px 14px 12px 42px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    background: #222328;
}

.account-settings-card .form-check-input {
    margin-top: 0.15em;
    margin-left: -1.7em;
}

.account-settings-card .form-check-label,
.account-settings-card .text-secondary {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

.account-settings-card .btn-light {
    min-height: 46px;
    font-weight: 700;
    border-radius: 8px;
}

/* Public profile */
.profile-page {
    padding-bottom: clamp(60px, 8vw, 105px);
}

.profile-cover {
    position: relative;
    height: clamp(260px, 34vw, 450px);
    overflow: hidden;
    background: #18191d;
}

.profile-cover > img,
.profile-cover-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.profile-cover > img {
    object-fit: cover;
    object-position: center 38%;
}

.profile-cover-overlay {
    background:
        linear-gradient(90deg, rgba(7, 8, 11, 0.42), rgba(7, 8, 11, 0.08)),
        linear-gradient(0deg, #202126 0%, rgba(32, 33, 38, 0.08) 58%);
}

.profile-container {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin-top: -86px;
}

.profile-header-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: rgba(24, 25, 29, 0.96);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(16px);
}

.profile-avatar {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 4px solid #ffc107;
    border-radius: 50%;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.38);
}

.profile-heading-copy {
    min-width: 0;
    padding-bottom: 7px;
}

.profile-heading-copy h1 {
    margin: 9px 0 7px;
    overflow-wrap: anywhere;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.065em;
}

.profile-heading-copy > p {
    margin: 0;
    color: #96979d;
    font-family: system-ui, -apple-system, sans-serif;
}

.profile-roles,
.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 15px;
}

.profile-roles span,
.profile-tags span {
    padding: 6px 9px;
    color: #d8ba5f;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.65rem;
    border: 1px solid rgba(255, 193, 7, 0.18);
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.07);
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.profile-primary-action,
.profile-secondary-action {
    min-width: 155px;
    padding: 11px 15px;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 8px;
}

.profile-primary-action {
    color: #111;
    background: #fff;
}

.profile-primary-action:hover {
    color: #111;
    background: #ffc107;
}

.profile-secondary-action {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #27282d;
}

.profile-secondary-action:hover {
    color: #fff;
    background: #33343a;
}

.profile-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    gap: 22px;
    margin-top: 24px;
}

.profile-panel {
    padding: clamp(27px, 4vw, 44px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
    background: #18191d;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.profile-panel h2 {
    margin: 11px 0 17px;
    font-size: clamp(1.55rem, 3vw, 2.55rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.profile-about-panel > p,
.profile-identity-group > p {
    color: #999aa0;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.7;
}

.profile-details {
    margin: 30px 0 0;
}

.profile-details div {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-details dt {
    color: #76777e;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
}

.profile-details dd {
    margin: 0;
    font-size: 0.75rem;
    text-align: right;
}

.profile-identity-group + .profile-identity-group {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-identity-group h2 {
    margin: 0 0 13px;
    font-size: 0.82rem;
    letter-spacing: 0;
}

.profile-tags {
    margin-top: 0;
}

.profile-community-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 24px;
    padding: clamp(30px, 5vw, 52px);
    border-left: 4px solid #ffc107;
    background: #292a30;
}

.profile-community-note h2 {
    max-width: 720px;
    margin: 10px 0 0;
    font-size: clamp(1.7rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.profile-community-note .btn {
    flex: 0 0 auto;
}

@media (max-width: 991.98px) {
    .account-settings-sidebar {
        position: static;
    }

    .profile-header-card {
        grid-template-columns: 140px minmax(0, 1fr);
    }

    .profile-avatar {
        width: 140px;
        height: 140px;
    }

    .profile-actions {
        grid-column: 1 / -1;
        flex-direction: row;
    }

    .profile-content-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 767.98px) {
    .account-overview-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .account-overview-card {
        min-height: 210px;
    }

    .profile-cover {
        height: 280px;
    }

    .profile-container {
        margin-top: -60px;
    }

    .profile-header-card {
        display: block;
        padding: 24px;
        text-align: center;
    }

    .profile-avatar {
        width: 128px;
        height: 128px;
        margin-top: -84px;
        margin-bottom: 20px;
    }

    .profile-roles {
        justify-content: center;
    }

    .profile-actions {
        display: grid;
        margin-top: 22px;
    }

    .profile-community-note {
        display: block;
    }

    .profile-community-note .btn {
        margin-top: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .account-settings-link,
    .account-overview-card {
        transition: none;
    }
}
