:root {
    --bg: #08111b;
    --bg-deep: #050b12;
    --text: rgba(244, 247, 252, 0.96);
    --muted: rgba(228, 236, 245, 0.68);
    --line: rgba(255, 255, 255, 0.16);
    --glass-top: rgba(255, 255, 255, 0.24);
    --glass-mid: rgba(255, 255, 255, 0.12);
    --glass-low: rgba(255, 255, 255, 0.06);
    --blue: #74d4ff;
    --blue-strong: #2c95ff;
    --gold: #ffd56f;
    --shadow: 0 0.24rem 0.84rem rgba(0, 0, 0, 0.32);
    --radius-xl: 0.36rem;
    --radius-lg: 0.28rem;
    --radius-md: 0.22rem;
    --radius-sm: 0.18rem;
}

* {
    box-sizing: border-box;
}

html,
body,
div,
section,
article,
header,
footer,
main,
p,
h1,
h2,
h3,
span,
strong,
em,
button,
img {
    margin: 0;
    padding: 0;
}

html,
body {
    min-height: 100%;
}

body {
    position: relative;
    overflow-x: hidden;
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Helvetica Neue", sans-serif;
    background:
        radial-gradient(circle at top, rgba(116, 212, 255, 0.16), transparent 28%),
        linear-gradient(180deg, #0b1520 0%, #09111b 54%, #050b12 100%);
}

.page-bg {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 10, 16, 0.42), rgba(6, 10, 16, 0.82)),
        radial-gradient(circle at top left, rgba(116, 212, 255, 0.14), transparent 28%),
        image-set(url("../images/bg-generated.webp") type("image/webp"), url("../images/bg-generated.jpg") type("image/jpeg")) center / cover no-repeat;
    filter: saturate(0.88) blur(0.02rem);
    transform: scale(1.04);
}

.page-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 0.34rem 0.34rem;
    opacity: 0.34;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 92%);
}

img {
    display: block;
    max-width: 100%;
}

button {
    border: none;
    background: none;
    color: inherit;
    font: inherit;
}

.page-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 0.18rem;
}

.glass-panel,
.glass-card,
.glass-pill,
.glass-row {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
    box-shadow:
        inset 0 0.01rem 0 rgba(255, 255, 255, 0.26),
        inset 0 -0.01rem 0 rgba(255, 255, 255, 0.06),
        var(--shadow);
    backdrop-filter: blur(0.34rem) saturate(1.4);
    -webkit-backdrop-filter: blur(0.34rem) saturate(1.4);
}

.glass-panel::before,
.glass-card::before,
.glass-pill::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.24), transparent 32%, transparent 68%, rgba(255, 255, 255, 0.08));
    opacity: 0.7;
}

.hero,
.scene,
.platforms {
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.hero {
    padding: 0.2rem;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.16rem;
    padding: 0.14rem 0.16rem;
    border-radius: 999px;
}

.topbar__brand {
    display: flex;
    align-items: center;
    gap: 0.14rem;
}

.topbar__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 1.08rem;
    height: 0.52rem;
    padding: 0.02rem;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 229, 155, 0.28), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
    box-shadow:
        inset 0 0.01rem 0 rgba(255, 255, 255, 0.24),
        0 0.08rem 0.26rem rgba(74, 173, 255, 0.18);
}

.topbar__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.topbar__copy strong {
    display: block;
    font-size: 0.2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.topbar__copy span {
    display: block;
    margin-top: 0.04rem;
    color: var(--muted);
    font-size: 0.12rem;
}

.topbar__support,
.cta,
.platform-btn {
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.topbar__support:hover,
.cta:hover,
.platform-btn:hover {
    transform: translateY(-0.02rem);
}

.topbar__support {
    padding: 0.12rem 0.18rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #f4f8ff;
    font-size: 0.14rem;
    font-weight: 600;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    gap: 0.18rem;
    margin-top: 0.18rem;
}

.hero__content,
.hero__stack {
    min-width: 0;
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 5.74rem;
    padding: 0.18rem 0.1rem 0.1rem;
}

.eyebrow {
    color: rgba(178, 233, 255, 0.94);
    font-size: 0.12rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-shadow: 0 0.08rem 0.24rem rgba(116, 212, 255, 0.22);
}

.hero__title {
    margin-top: 0.16rem;
    max-width: 4.6rem;
    font-size: 0.7rem;
    line-height: 0.94;
    font-weight: 850;
    letter-spacing: -0.04em;
    text-shadow: 0 0.1rem 0.28rem rgba(0, 0, 0, 0.24);
}

.hero__title span {
    display: block;
}

.hero__title-main {
    color: rgba(246, 250, 255, 0.98);
}

.hero__title-accent {
    margin-top: -0.01rem;
    color: transparent;
    background: linear-gradient(92deg, #ffffff 0%, #b9efff 44%, #ffd56f 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0.08rem 0.22rem rgba(75, 176, 255, 0.18));
}

.hero__lead,
.section-desc,
.platform-card p,
.live-board__note {
    color: var(--muted);
    line-height: 1.6;
}

.hero__lead {
    margin-top: 0.18rem;
    max-width: 4.28rem;
    font-size: 0.16rem;
}

.category-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.07rem;
    margin-top: 0.16rem;
    max-width: 4.7rem;
}

.category-strip button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0.28rem;
    padding: 0 0.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(241, 248, 255, 0.9);
    font-size: 0.115rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.category-strip button:hover {
    transform: translateY(-0.015rem);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.category-strip button:first-child {
    background: linear-gradient(180deg, rgba(255, 213, 111, 0.32), rgba(44, 149, 255, 0.12));
    border-color: rgba(255, 213, 111, 0.34);
    color: #fff;
}

.category-strip button:nth-child(2) {
    background: linear-gradient(180deg, rgba(116, 212, 255, 0.26), rgba(44, 149, 255, 0.1));
    border-color: rgba(116, 212, 255, 0.34);
    color: rgba(244, 251, 255, 0.98);
}

.hero__cta,
.platform-card__actions,
.live-board__main {
    display: flex;
    align-items: center;
    gap: 0.12rem;
}

.hero__cta {
    margin-top: 0.22rem;
    max-width: 4.7rem;
    flex-wrap: wrap;
}

.cta {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.12rem;
    min-width: 1.78rem;
    min-height: 0.78rem;
    padding: 0.1rem 0.14rem;
    border-radius: 0.22rem;
    font-size: 0.16rem;
    font-weight: 700;
    text-align: left;
    overflow: hidden;
}

.cta--primary {
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 213, 111, 0.34), transparent 0.52rem),
        linear-gradient(135deg, rgba(255, 229, 160, 0.34), rgba(92, 183, 255, 0.2) 48%, rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 213, 111, 0.42);
    color: #fff;
    box-shadow:
        inset 0 0.01rem 0 rgba(255, 255, 255, 0.28),
        0 0.12rem 0.34rem rgba(255, 191, 69, 0.16);
}

.cta--secondary {
    background:
        radial-gradient(circle at 18% 22%, rgba(116, 212, 255, 0.3), transparent 0.52rem),
        linear-gradient(135deg, rgba(116, 212, 255, 0.22), rgba(255, 255, 255, 0.09));
    border: 1px solid rgba(116, 212, 255, 0.3);
    color: #eef5ff;
}

.cta__icon,
.cta__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.cta__icon {
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 0.16rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0.01rem 0 rgba(255, 255, 255, 0.24);
    font-size: 0.25rem;
    line-height: 1;
}

.cta__icon--mk {
    color: #c9f4ff;
    font-size: 0.17rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.cta__copy {
    display: grid;
    gap: 0.03rem;
    min-width: 0;
}

.cta__copy strong,
.cta__copy em {
    display: block;
    font-style: normal;
    line-height: 1.15;
}

.cta__copy strong {
    font-size: 0.17rem;
}

.cta__copy em {
    color: rgba(238, 246, 255, 0.76);
    font-size: 0.115rem;
    font-weight: 600;
}

.cta__arrow {
    margin-left: auto;
    width: 0.28rem;
    height: 0.28rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.26rem;
    line-height: 1;
}

.hero__ticker {
    display: flex;
    flex-wrap: wrap;
    gap: 0.1rem;
}

.hero__ticker {
    margin-top: 0.18rem;
    padding: 0.1rem;
    max-width: 4.7rem;
    border-radius: var(--radius-md);
}

.glass-chip {
    flex: 1 1 calc(50% - 0.05rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0.32rem;
    padding: 0 0.14rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f3f8ff;
    font-size: 0.12rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.hero__ticker .glass-chip:first-child {
    background: linear-gradient(180deg, rgba(255, 213, 111, 0.26), rgba(255, 213, 111, 0.08));
    border-color: rgba(255, 213, 111, 0.38);
    color: #fff7d6;
    box-shadow: inset 0 0.01rem 0 rgba(255, 255, 255, 0.2), 0 0.08rem 0.26rem rgba(255, 213, 111, 0.12);
}

.hero__ticker .glass-chip:last-child {
    background: linear-gradient(180deg, rgba(116, 212, 255, 0.2), rgba(44, 149, 255, 0.08));
    border-color: rgba(116, 212, 255, 0.28);
    color: #eaf9ff;
}

.glass-chip:hover {
    transform: translateY(-0.02rem);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.hero__stack {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 0.14rem;
}

.live-board,
.poster-card,
.scene__copy,
.platform-card {
    border-radius: var(--radius-lg);
}

.live-board {
    padding: 0.18rem;
    overflow: hidden;
}

.live-board__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.1rem;
}

.live-board__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 0.28rem;
    padding: 0 0.12rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 127, 127, 0.92), rgba(255, 110, 135, 0.76));
    color: #fff;
    font-size: 0.12rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.live-board__label {
    color: rgba(236, 244, 252, 0.92);
    font-size: 0.12rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.live-board__hero {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.1rem;
    margin-top: 0.16rem;
}

.live-board__hero div {
    min-width: 0;
    padding: 0.12rem;
    border-radius: 0.2rem;
    background:
        radial-gradient(circle at 15% 15%, rgba(255, 213, 111, 0.22), transparent 0.46rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.live-board__hero div:nth-child(2) {
    background:
        radial-gradient(circle at 15% 15%, rgba(116, 212, 255, 0.22), transparent 0.46rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
}

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

.live-board__hero strong {
    color: #fff;
    font-size: 0.17rem;
    font-weight: 850;
}

.live-board__hero span {
    margin-top: 0.04rem;
    color: rgba(226, 238, 249, 0.72);
    font-size: 0.105rem;
    white-space: nowrap;
}

.live-board__icons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.1rem;
    margin-top: 0.12rem;
}

.play-tile {
    position: relative;
    overflow: hidden;
    min-width: 0;
    min-height: 1.04rem;
    padding: 0.12rem 0.08rem 0.1rem;
    border-radius: 0.22rem;
    background:
        radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.22), transparent 0.56rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.055));
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #f6fbff;
    cursor: pointer;
    box-shadow: inset 0 0.01rem 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.play-tile::after {
    content: attr(data-symbol);
    position: absolute;
    right: 0.06rem;
    bottom: -0.1rem;
    z-index: 0;
    color: rgba(255, 255, 255, 0.1);
    font-size: 0.74rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.08em;
    text-shadow: 0 0.18rem 0.32rem rgba(116, 212, 255, 0.18);
    pointer-events: none;
}

.play-tile--gold::after {
    color: rgba(255, 213, 111, 0.16);
}

.play-tile--gold,
.play-tile:hover {
    background:
        radial-gradient(circle at 50% 8%, rgba(255, 213, 111, 0.3), transparent 0.58rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.065));
    border-color: rgba(255, 213, 111, 0.28);
}

.play-tile:hover {
    transform: translateY(-0.02rem);
}

.play-tile__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.5rem;
    height: 0.5rem;
    margin: 0 auto 0.08rem;
    border-radius: 0.17rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 0.08rem 0.18rem rgba(0, 0, 0, 0.18);
    color: #fff7d6;
    font-size: 0.24rem;
    font-weight: 900;
    line-height: 1;
}

.play-tile strong,
.play-tile em {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-style: normal;
    text-align: center;
}

.play-tile strong {
    font-size: 0.125rem;
    font-weight: 850;
}

.play-tile em {
    margin-top: 0.03rem;
    color: rgba(226, 238, 249, 0.7);
    font-size: 0.1rem;
    font-weight: 600;
}

.poster-card {
    position: relative;
    overflow: hidden;
    min-height: 4.64rem;
}

.poster-card picture {
    display: block;
    width: 100%;
    height: 100%;
}

.scene > picture {
    display: contents;
}

.poster-card img,
.scene__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-card img {
    object-position: center 12%;
}

.poster-card__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 14, 24, 0.12), rgba(8, 14, 24, 0.72)),
        radial-gradient(circle at top left, rgba(116, 212, 255, 0.22), transparent 34%);
}

.poster-card__badges {
    position: absolute;
    top: 0.16rem;
    left: 0.16rem;
    right: 0.16rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.07rem;
}

.poster-card__badges span {
    display: inline-flex;
    align-items: center;
    min-height: 0.28rem;
    padding: 0 0.1rem;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.11rem;
    font-weight: 800;
    box-shadow: 0 0.08rem 0.22rem rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(0.18rem);
    -webkit-backdrop-filter: blur(0.18rem);
}

.poster-card__badges span:first-child {
    background: linear-gradient(180deg, rgba(255, 213, 111, 0.34), rgba(44, 149, 255, 0.12));
    border-color: rgba(255, 213, 111, 0.38);
}

.poster-card__copy {
    position: absolute;
    left: 0.18rem;
    right: 0.18rem;
    bottom: 0.18rem;
}

.poster-card__copy span {
    display: block;
    color: rgba(189, 238, 255, 0.92);
    font-size: 0.12rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.poster-card__copy strong {
    display: block;
    margin-top: 0.08rem;
    font-size: 0.34rem;
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.scene,
.platforms {
    margin-top: 0.18rem;
    padding: 0.2rem;
}

.scene {
    position: relative;
    min-height: 3.2rem;
}

.scene__image {
    position: absolute;
    inset: 0;
    object-position: center center;
    filter: saturate(0.92);
}

.scene__overlay {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    min-height: 2.8rem;
}

.scene__copy {
    width: 3.3rem;
    padding: 0.22rem;
}

.section-head {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
}

.section-title {
    font-size: 0.36rem;
    line-height: 1;
    font-weight: 850;
    letter-spacing: -0.03em;
    text-shadow: 0 0.08rem 0.24rem rgba(0, 0, 0, 0.2);
}

.section-desc {
    font-size: 0.15rem;
}

.scene__plays {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.08rem;
    margin-top: 0.16rem;
}

.scene-play {
    min-width: 0;
    min-height: 0.84rem;
    padding: 0.1rem 0.08rem;
    border-radius: 0.18rem;
    background:
        radial-gradient(circle at 24% 0%, rgba(255, 255, 255, 0.24), transparent 0.5rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #f6fbff;
    cursor: pointer;
    text-align: left;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.scene-play--gold,
.scene-play:hover {
    background:
        radial-gradient(circle at 24% 0%, rgba(255, 213, 111, 0.28), transparent 0.52rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
    border-color: rgba(255, 213, 111, 0.28);
}

.scene-play:hover {
    transform: translateY(-0.02rem);
}

.scene-play span,
.scene-play strong,
.scene-play em {
    display: block;
    font-style: normal;
}

.scene-play span {
    width: 0.32rem;
    height: 0.32rem;
    margin-bottom: 0.07rem;
    border-radius: 0.12rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff4c4;
    font-size: 0.14rem;
    font-weight: 900;
}

.scene-play strong {
    font-size: 0.125rem;
    font-weight: 850;
    line-height: 1.15;
}

.scene-play em {
    margin-top: 0.04rem;
    color: rgba(226, 238, 249, 0.68);
    font-size: 0.095rem;
    font-weight: 600;
    white-space: nowrap;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.14rem;
    margin-top: 0.18rem;
}

.platform-card {
    position: relative;
    overflow: hidden;
    padding: 0.18rem;
}

.platform-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.18), transparent 0.76rem),
        linear-gradient(135deg, rgba(126, 211, 255, 0.08), transparent 54%);
    opacity: 0.86;
    pointer-events: none;
}

.platform-card::after {
    content: attr(data-brand) " " attr(data-icon);
    position: absolute;
    right: 0.12rem;
    top: 0.46rem;
    color: rgba(255, 255, 255, 0.11);
    font-size: 0.66rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.07em;
    pointer-events: none;
    text-shadow: 0 0.16rem 0.34rem rgba(0, 0, 0, 0.22);
}

.platform-card:nth-child(2)::before {
    background:
        radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.18), transparent 0.76rem),
        linear-gradient(135deg, rgba(138, 255, 210, 0.1), transparent 54%);
}

.platform-card:nth-child(3)::before,
.platform-card:nth-child(6)::before {
    background:
        radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.18), transparent 0.76rem),
        linear-gradient(135deg, rgba(255, 221, 147, 0.09), transparent 54%);
}

.platform-card > * {
    position: relative;
    z-index: 1;
}

.platform-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.1rem;
}

.platform-card__code,
.platform-card__state {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 0.3rem;
    padding: 0 0.12rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.12rem;
    font-weight: 700;
}

.platform-card__code {
    min-width: 0.56rem;
    color: #fff;
    letter-spacing: 0.1em;
}

.platform-card__state {
    color: rgba(232, 238, 245, 0.76);
}

.platform-card h3 {
    margin-top: 0.14rem;
    font-size: 0.26rem;
    line-height: 1;
    font-weight: 850;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 0.06rem 0.22rem rgba(116, 212, 255, 0.16);
}

.platform-card p {
    margin-top: 0.08rem;
    font-size: 0.14rem;
}

.platform-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.06rem;
    margin-top: 0.12rem;
}

.platform-card__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 0.26rem;
    padding: 0 0.09rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(244, 249, 255, 0.86);
    font-size: 0.11rem;
    font-weight: 700;
}

.platform-card__tags span:first-child {
    background: linear-gradient(180deg, rgba(255, 213, 111, 0.2), rgba(255, 213, 111, 0.05));
    border-color: rgba(255, 213, 111, 0.26);
    color: #fff3bf;
}

.platform-card__actions {
    margin-top: 0.16rem;
    flex-wrap: wrap;
}

.platform-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 0.5rem;
    border-radius: 999px;
    font-size: 0.14rem;
    font-weight: 600;
}

.platform-btn--primary {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(83, 162, 255, 0.14));
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

.platform-btn--secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(241, 246, 251, 0.94);
}

.platform-card__actions--triple .platform-btn {
    flex: 1 1 calc(50% - 0.06rem);
}

.platform-card__actions--triple .platform-btn--full {
    flex-basis: 100%;
}

@media screen and (max-width: 749px) {
    .page-shell {
        padding: 0.14rem;
    }

    .hero,
    .scene,
    .platforms {
        max-width: 100%;
        padding: 0.16rem;
        border-radius: 0.3rem;
    }

    .topbar {
        flex-direction: column;
        align-items: stretch;
    }

    .topbar__brand {
        align-items: flex-start;
    }

    .topbar__mark {
        width: 1.16rem;
        height: 0.58rem;
    }

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

    .hero__content {
        min-height: auto;
        padding: 0;
    }

    .hero__stack {
        grid-template-rows: auto;
    }

    .poster-card {
        display: none;
    }

    .hero__title {
        max-width: none;
        font-size: 0.54rem;
    }

    .category-strip {
        max-width: none;
        gap: 0.06rem;
    }

    .category-strip button {
        min-height: 0.34rem;
        padding: 0 0.09rem;
        font-size: 0.125rem;
    }

    .hero__cta {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 0.12rem;
        max-width: none;
    }

    .cta {
        min-width: 0;
        width: 100%;
        min-height: 0.82rem;
        padding: 0.12rem 0.14rem;
        border-radius: 0.24rem;
    }

    .cta__icon {
        width: 0.42rem;
        height: 0.42rem;
        border-radius: 0.14rem;
        font-size: 0.22rem;
    }

    .cta__icon--mk {
        font-size: 0.15rem;
    }

    .cta__copy strong {
        font-size: 0.145rem;
    }

    .cta__copy em {
        font-size: 0.095rem;
    }

    .cta__arrow {
        display: none;
    }

    .hero__ticker {
        border-radius: 0.24rem;
    }

    .glass-chip {
        min-height: 0.46rem;
        font-size: 0.14rem;
    }

    .hero__ticker .glass-chip {
        flex-basis: calc(50% - 0.05rem);
    }

    .hero__ticker .glass-chip:last-child {
        flex-basis: calc(50% - 0.05rem);
    }

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

    .live-board__icons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.08rem;
    }

    .play-tile {
        min-height: 0.98rem;
        padding: 0.1rem 0.08rem;
        border-radius: 0.18rem;
    }

    .play-tile::after {
        right: 0.04rem;
        bottom: -0.08rem;
        font-size: 0.82rem;
    }

    .play-tile__icon {
        width: 0.52rem;
        height: 0.52rem;
        font-size: 0.25rem;
    }

    .play-tile strong {
        font-size: 0.125rem;
    }

    .play-tile em {
        font-size: 0.1rem;
    }

    .scene__overlay {
        justify-content: stretch;
        min-height: 2.25rem;
    }

    .scene__copy {
        width: 100%;
        align-self: flex-end;
    }

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

    .scene-play {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        column-gap: 0.1rem;
        align-items: center;
        min-height: 0.68rem;
    }

    .scene-play span {
        grid-row: span 2;
        margin: 0;
    }

    .platform-card {
        padding: 0.2rem;
    }

    .platform-card h3 {
        font-size: 0.3rem;
    }

    .platform-card p {
        font-size: 0.16rem;
    }

    .platform-card__tags span {
        min-height: 0.32rem;
        padding: 0 0.11rem;
        font-size: 0.13rem;
    }

    .platform-card__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.12rem;
    }

    .platform-btn {
        min-height: 0.64rem;
        height: auto;
        font-size: 0.16rem;
    }

    .platform-card__actions--triple .platform-btn {
        flex: none;
    }

    .platform-card__actions--triple .platform-btn--full {
        grid-column: 1 / -1;
    }
}
