* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --bg: #020817;
    --card: rgba(8, 20, 42, .82);
    --card2: rgba(255, 255, 255, .075);
    --line: rgba(90, 198, 255, .18);
    --text: #eef8ff;
    --sub: rgba(238, 248, 255, .72);
    --blue: #25c7ff;
    --blue2: #1377ff;
    --cyan: #6eeeff;
    --deep: #07152d;
    --green: #5dffbf;
    --red: #ff516d;
}

html { -webkit-text-size-adjust: 100%; }

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", "Microsoft YaHei", Arial, sans-serif;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; border: 0; }

.page-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 5%, rgba(37, 199, 255, .28), transparent 30%),
        radial-gradient(circle at 86% 15%, rgba(19, 119, 255, .25), transparent 32%),
        radial-gradient(circle at 50% 95%, rgba(110, 238, 255, .14), transparent 36%),
        linear-gradient(180deg, #07152e 0%, #020817 100%);
}

.page-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image:
        linear-gradient(rgba(110,238,255,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(110,238,255,.07) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(180deg, #000, transparent 88%);
}

.page-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0 42%, rgba(80, 201, 255, .08) 48%, transparent 54% 100%);
    animation: bgSweep 5s linear infinite;
}

.scan-line {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .06;
    background: repeating-linear-gradient(180deg, #fff 0 1px, transparent 1px 4px);
}

@keyframes bgSweep {
    from { transform: translateX(-70%); }
    to { transform: translateX(70%); }
}

.page-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 16px 12px 0;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 2px 12px;
}

.top-pill {
    height: 30px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .7px;
    color: #dff8ff;
    background: linear-gradient(135deg, rgba(37,199,255,.26), rgba(19,119,255,.16));
    border: 1px solid rgba(110,238,255,.24);
    box-shadow: 0 0 24px rgba(37,199,255,.14), inset 0 1px 0 rgba(255,255,255,.16);
}

.top-live {
    height: 30px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(93, 255, 191, .32);
    border-radius: 999px;
    background: rgba(93, 255, 191, .08);
    color: rgba(220, 255, 244, .94);
    font-size: 11px;
    box-shadow: 0 0 18px rgba(93, 255, 191, .08);
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(93, 255, 191, .13), 0 0 18px rgba(93, 255, 191, .58);
    animation: livePulse 1.2s infinite;
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(.7); opacity: .55; }
}

.hero-title-block { padding: 8px 2px 14px; }
.eyebrow {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    margin-bottom: 8px;
}

.hero-title-block h1 {
    white-space: pre-line;
    font-size: 32px;
    line-height: 1.15;
    letter-spacing: .4px;
    font-weight: 950;
    text-shadow: 0 12px 34px rgba(0, 0, 0, .48), 0 0 20px rgba(37,199,255,.15);
}

.hero-title-block h1 span,
.hero-title-block h1::first-line {
    color: #fff;
}

.hero-title-block p {
    margin-top: 11px;
    color: var(--sub);
    font-size: 14px;
    line-height: 1.65;
}

.live-terminal,
.lineup-panel,
.content-panel {
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.04)),
        rgba(4, 13, 29, .7);
    border: 1px solid rgba(110,238,255,.18);
    box-shadow: 0 24px 70px rgba(0,0,0,.35), 0 0 32px rgba(37,199,255,.08);
    backdrop-filter: blur(16px);
}

.terminal-head {
    height: 42px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(3, 11, 25, .72);
    border-bottom: 1px solid rgba(110,238,255,.14);
}

.terminal-left {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
}

.terminal-left b {
    margin-left: 4px;
    font-size: 13px;
    color: rgba(238,248,255,.95);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.terminal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.terminal-dot.red { background: #ff516d; }
.terminal-dot.yellow { background: #ffd15c; }
.terminal-dot.green { background: #5dffbf; }

.terminal-status {
    height: 22px;
    padding: 0 9px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    color: var(--green);
    border: 1px solid rgba(93,255,191,.26);
    background: rgba(93,255,191,.08);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .7px;
}

.score-strip {
    display: grid;
    grid-template-columns: 1fr 108px 1fr;
    align-items: center;
    gap: 8px;
    padding: 13px 12px;
    background: linear-gradient(135deg, rgba(7, 25, 54, .86), rgba(11, 37, 77, .66));
}

.team-side {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.team-side.right { justify-content: flex-end; text-align: right; }
.team-side strong {
    display: block;
    max-width: 74px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    font-weight: 900;
}
.team-side span {
    display: block;
    margin-top: 2px;
    color: rgba(238,248,255,.45);
    font-size: 9px;
    font-weight: 800;
}
.team-badge {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 950;
    background: linear-gradient(135deg, #d71920, #ff6b70);
    box-shadow: 0 10px 24px rgba(215,25,32,.24);
}
.team-badge.away {
    background: linear-gradient(135deg, #0b67d5, #4cc2ff);
    box-shadow: 0 10px 24px rgba(37,199,255,.22);
}

.score-center { text-align: center; }
.score-center em {
    display: inline-flex;
    align-items: center;
    height: 18px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(93, 255, 191, .13);
    color: var(--green);
    font-size: 10px;
    font-style: normal;
    font-weight: 950;
}
.score-center strong {
    display: block;
    margin-top: 3px;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 950;
    color: #fff;
    text-shadow: 0 0 18px rgba(37,199,255,.26);
}
.score-center small {
    display: inline-block;
    margin-top: 3px;
    color: rgba(255,255,255,.62);
    font-size: 10px;
}

.player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

#liveVideo,
.live-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

#liveVideo { z-index: 2; }
.live-poster { z-index: 3; }
.player-shell.is-playing .live-poster { display: none; }

.player-glow {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.36)),
        radial-gradient(circle at 50% 50%, transparent 38%, rgba(37,199,255,.14));
}
.player-shell.is-playing .player-glow { opacity: .35; }

.player-msg {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 6;
    transform: translate(-50%, -50%);
    width: 78%;
    min-height: 76px;
    padding: 14px 15px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: rgba(2, 10, 22, .76);
    border: 1px solid rgba(110,238,255,.22);
    box-shadow: 0 0 28px rgba(37,199,255,.1);
    backdrop-filter: blur(10px);
}
.player-msg strong { font-size: 15px; font-weight: 950; }
.player-msg span { margin-top: 4px; color: rgba(238,248,255,.68); font-size: 12px; line-height: 1.5; }

.center-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    padding-left: 4px;
    color: #041226;
    background: linear-gradient(135deg, #dffaff, #25c7ff 48%, #1377ff);
    box-shadow: 0 0 0 8px rgba(37,199,255,.1), 0 14px 34px rgba(37,199,255,.26);
    font-size: 24px;
    font-weight: 950;
    cursor: pointer;
}
.player-shell.is-playing .center-play { display: none; }

.player-actions {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 7;
    display: flex;
    gap: 7px;
}
.player-actions button {
    flex: 1;
    height: 32px;
    border: 1px solid rgba(110,238,255,.2);
    border-radius: 999px;
    color: #eafaff;
    font-size: 12px;
    font-weight: 850;
    background: rgba(5, 18, 39, .68);
    backdrop-filter: blur(9px);
    cursor: pointer;
}

.match-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(238, 248, 255, .96);
    color: #172232;
}
.match-tabs span {
    position: relative;
    height: 44px;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 950;
}
.match-tabs span.active { color: #057bff; }
.match-tabs span.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 26px;
    height: 4px;
    border-radius: 99px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--blue), var(--blue2));
    box-shadow: 0 0 12px rgba(37,199,255,.45);
}

.lineup-panel { margin-top: 14px; padding: 15px; }
.panel-title { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.panel-title span {
    width: 5px;
    height: 18px;
    border-radius: 99px;
    background: linear-gradient(180deg, var(--cyan), var(--blue2));
    box-shadow: 0 0 12px rgba(37,199,255,.5);
}
.panel-title strong { font-size: 17px; font-weight: 950; }

.lineup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.lineup-team {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.club-mark {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 950;
}
.club-mark.red { background: linear-gradient(135deg, #d71920, #ff6b70); }
.club-mark.blue { background: linear-gradient(135deg, #0b67d5, #4cc2ff); }
.lineup-team b { font-size: 14px; }

.player-card {
    min-height: 58px;
    display: grid;
    grid-template-columns: 34px 1fr 20px;
    align-items: center;
    gap: 7px;
    padding: 8px;
    margin-bottom: 8px;
    border-radius: 14px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(110,238,255,.12);
}
.player-card img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.player-card strong {
    display: block;
    max-width: 92px;
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.player-card span {
    display: block;
    margin-top: 3px;
    color: rgba(238,248,255,.55);
    font-size: 11px;
}
.player-card em {
    color: rgba(110,238,255,.84);
    font-style: normal;
    font-size: 12px;
    font-weight: 900;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 13px;
}
.contact-btn {
    height: 50px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(110,238,255,.16);
    background: rgba(255,255,255,.07);
    box-shadow: 0 12px 30px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}
.contact-btn b { font-size: 14px; font-weight: 950; }
.mini-icon {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 950;
}
.mini-icon.qq { color: #061421; background: linear-gradient(135deg, #dffaff, #21a6ff); }
.mini-icon.st { color: #061421; background: linear-gradient(135deg, #b7f5ff, #1377ff); }

.content-panel { margin-top: 14px; padding: 16px; }
.main-desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,.9);
}
.info-card {
    margin-top: 12px;
    padding: 13px;
    border-radius: 18px;
    color: rgba(255,255,255,.82);
    font-size: 14px;
    line-height: 1.75;
    background: linear-gradient(135deg, rgba(37,199,255,.13), rgba(19,119,255,.08));
    border: 1px solid rgba(110,238,255,.14);
}
.quote-box {
    margin-top: 13px;
    padding: 12px 13px;
    border-radius: 16px;
    color: #c8f8ff;
    font-size: 14px;
    line-height: 1.65;
    background: rgba(37, 199, 255, .08);
    border: 1px solid rgba(37, 199, 255, .22);
}

.float-action-bar {
    position: fixed;
    left: 50%;
    bottom: 0;
    z-index: 20;
    width: 100%;
    max-width: 480px;
    transform: translateX(-50%);
    padding: 14px 14px calc(16px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, transparent, rgba(2,8,23,.92) 36%, rgba(2,8,23,.98));
}
.main-btn {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #021126;
    font-size: 17px;
    font-weight: 950;
    letter-spacing: .4px;
    background: linear-gradient(135deg, #e9fbff, #25c7ff 48%, #5e99ff);
    box-shadow: 0 12px 34px rgba(37, 199, 255, .34), inset 0 1px 0 rgba(255,255,255,.6);
    animation: btnFloat 2.2s ease-in-out infinite;
}
@keyframes btnFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
.bottom-space { height: 96px; }

/* 三条弹窗 */
.st-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}
.st-modal.show { display: flex; }
.st-modal-mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(8px);
}
.st-modal-box {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 380px;
    padding: 16px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(16, 35, 58, .98), rgba(5, 13, 26, .98));
    border: 1px solid rgba(110,238,255,.18);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
    animation: stPop .22s ease-out;
}
@keyframes stPop {
    from { opacity: 0; transform: translateY(16px) scale(.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.st-modal-x {
    position: absolute;
    right: 12px;
    top: 10px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    line-height: 30px;
    background: rgba(255, 255, 255, .12);
    cursor: pointer;
}
.st-modal-title {
    padding: 4px 40px 12px 4px;
    color: #fff;
    font-size: 18px;
    font-weight: 950;
}
.st-modal-img-wrap {
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
}
.st-modal-img-wrap img { width: 100%; display: block; }
.st-modal-btn {
    margin-top: 14px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #021126;
    font-size: 16px;
    font-weight: 950;
    background: linear-gradient(135deg, #e9fbff, #25c7ff 48%, #5e99ff);
    box-shadow: 0 12px 30px rgba(37,199,255,.28);
}

@media (min-width: 700px) {
    body { display: flex; justify-content: center; }
    .page-wrap { padding-top: 28px; }
}

@media (max-width: 390px) {
    .score-strip { grid-template-columns: 1fr 96px 1fr; }
    .score-center strong { font-size: 23px; }
    .team-side strong { max-width: 62px; }
    .player-actions button { font-size: 11px; }
    .lineup-grid { gap: 8px; }
    .player-card { grid-template-columns: 30px 1fr 18px; padding: 7px; }
    .player-card img { width: 30px; height: 30px; }
    .player-card strong { max-width: 78px; }
}
/* ================= 蓝色科技直播卡片 V2 ================= */

.live-card-v2 {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(15, 44, 82, .9), rgba(4, 12, 28, .95)),
        radial-gradient(circle at 10% 0%, rgba(31, 194, 255, .34), transparent 38%),
        radial-gradient(circle at 95% 10%, rgba(63, 112, 255, .22), transparent 34%);
    border: 1px solid rgba(94, 204, 255, .28);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, .42),
        0 0 35px rgba(28, 172, 255, .12),
        inset 0 1px 0 rgba(255, 255, 255, .12);
}

.live-card-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .28;
    background-image:
        linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(180deg, #000, transparent 80%);
}

.live-title-bar {
    position: relative;
    z-index: 2;
    padding: 16px 15px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.live-kicker {
    display: inline-flex;
    height: 20px;
    align-items: center;
    padding: 0 8px;
    border-radius: 999px;
    color: #8ce7ff;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .8px;
    background: rgba(41, 183, 255, .12);
    border: 1px solid rgba(104, 213, 255, .24);
}

.live-title-bar h2 {
    margin-top: 7px;
    color: #fff;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 950;
    text-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.live-badge-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex: 0 0 auto;
}

.live-badge-group span,
.live-badge-group em {
    min-width: 54px;
    height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-size: 11px;
    font-weight: 950;
}

.live-badge-group span {
    color: #dff8ff;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
}

.live-badge-group em {
    color: #071421;
    background: linear-gradient(135deg, #69ffbd, #22d8ff);
    box-shadow: 0 0 18px rgba(34, 216, 255, .32);
}

.team-vs-panel {
    position: relative;
    z-index: 2;
    margin: 0 14px 14px;
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 62px 1fr;
    align-items: center;
    gap: 8px;
    border-radius: 22px;
    background: rgba(3, 15, 34, .58);
    border: 1px solid rgba(112, 213, 255, .16);
    backdrop-filter: blur(12px);
}

.team-v2 {
    min-width: 0;
    padding: 10px 8px;
    border-radius: 18px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.1);
}

.team-v2 strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 950;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-v2 span {
    display: inline-flex;
    margin-top: 4px;
    color: rgba(204, 236, 255, .62);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .8px;
}

.team-mark {
    width: 38px;
    height: 38px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 950;
    background:
        linear-gradient(135deg, #1b8cff, #19d5ff);
    box-shadow: 0 12px 22px rgba(25, 213, 255, .2);
}

.team-mark.blue {
    background:
        linear-gradient(135deg, #285cff, #7aa8ff);
    box-shadow: 0 12px 22px rgba(80, 120, 255, .22);
}

.vs-core {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.vs-core i {
    width: 10px;
    height: 2px;
    border-radius: 9px;
    background: rgba(118, 219, 255, .5);
}

.vs-core b {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #081a2c;
    font-size: 13px;
    font-weight: 950;
    background: linear-gradient(135deg, #d9fbff, #2ddcff);
    box-shadow:
        0 0 24px rgba(45, 220, 255, .35),
        inset 0 1px 0 rgba(255,255,255,.85);
}

.live-player-box {
    position: relative;
    z-index: 2;
    margin: 0 14px;
    overflow: hidden;
    border-radius: 22px;
    background: #000;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(130, 225, 255, .2);
    box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

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

.live-loading {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 78%;
    transform: translate(-50%, -50%);
    padding: 12px 14px;
    border-radius: 14px;
    color: #eaf8ff;
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    background: rgba(2, 11, 24, .78);
    border: 1px solid rgba(115, 219, 255, .18);
    backdrop-filter: blur(10px);
    z-index: 3;
}

.live-tool-row {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 9px;
    z-index: 4;
    display: flex;
    gap: 7px;
}

.live-tool-row button {
    flex: 1;
    height: 30px;
    border: 0;
    border-radius: 999px;
    color: #eaf8ff;
    font-size: 11px;
    font-weight: 900;
    background: rgba(12, 34, 60, .76);
    border: 1px solid rgba(128, 224, 255, .22);
    backdrop-filter: blur(10px);
}

.action-tabs {
    position: relative;
    z-index: 2;
    margin-top: 14px;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
    background: transparent;
    color: #fff;
}

.action-tabs button {
    height: 40px;
    border: 0;
    border-radius: 15px;
    color: rgba(235, 249, 255, .82);
    font-size: 13px;
    font-weight: 950;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.action-tabs button.active {
    color: #071421;
    background: linear-gradient(135deg, #bff5ff, #28cfff);
    box-shadow:
        0 10px 24px rgba(40, 207, 255, .26),
        inset 0 1px 0 rgba(255,255,255,.78);
}

.action-tabs button:active {
    transform: scale(.96);
}