/* ============================================================
   site.css — game-orange-esports 橙黑电竞赛事面板
   1xBET游戏|唯一官网 站点设计系统
   石墨黑 / 能量橙 / 灰白，矩形硬裁切，模块化砖块网格
   断点：≥1024 桌面侧栏；≤1023 顶栏抽屉；≤767 单列收拢
   ============================================================ */

/* ---------- 1. 设计令牌 ---------- */
:root {
    --og-ink: #15120f;          /* 石墨黑主底 */
    --og-coal: #0e0b08;         /* 近黑 */
    --og-panel: #1c1711;        /* 面板底 */
    --og-panel-2: #231d14;      /* 面板提亮 */
    --og-line: #32291c;         /* 分隔线 */
    --og-line-2: #453828;       /* 强分隔线 */
    --og-orange: #f97316;       /* 能量橙主色 */
    --og-orange-deep: #ea580c;  /* 橙深 */
    --og-orange-soft: #fbbf7e;  /* 橙浅 */
    --og-text: #f7f0e4;         /* 暖白正文 */
    --og-dim: #b4a78f;          /* 次级文字 */
    --og-paper: #f4eee1;        /* 浅色带底 */
    --og-paper-2: #e8dfcc;      /* 浅色带底 2 */
    --og-dark-ink: #221a10;     /* 浅底上的深字 */
    --og-rail-w: 252px;
    --og-font: "PingFang SC", "Microsoft YaHei", "Noto Sans SC",
               "Segoe UI", system-ui, sans-serif;
}

/* ---------- 2. 基础 ---------- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    margin: 0;
    background: var(--og-ink);
    color: var(--og-text);
    font-family: var(--og-font);
    font-size: 16px;
    line-height: 1.75;
    overflow-x: clip;
}

html[data-theme] body { background: var(--og-ink); }

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

a { color: inherit; text-decoration: none; }
a:hover { color: var(--og-orange-soft); }

::selection { background: var(--og-orange); color: #1a1207; }

:focus-visible {
    outline: 2px solid var(--og-orange);
    outline-offset: 2px;
}

button { font-family: inherit; }

/* ---------- 3. 页面骨架：桌面左窄侧栏 + 内容区 ---------- */
@media (min-width: 1024px) {
    body {
        padding-left: var(--og-rail-w);
    }
}

.og-shell {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .og-shell { padding: 0 14px; }
}

/* ---------- 4. 左侧栏 Header（桌面 fixed / 移动顶部） ---------- */
.og-rail {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    width: var(--og-rail-w);
    background:
        repeating-linear-gradient(
            180deg,
            transparent 0 26px,
            rgba(249, 115, 22, 0.05) 26px 27px
        ),
        linear-gradient(180deg, #100d09, #17120c 70%, #0e0b08);
    border-right: 1px solid var(--og-line);
    box-sizing: border-box;
}

.og-rail-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 18px 16px 14px;
    border-bottom: 2px solid var(--og-orange);
}

.og-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.og-brand-glyph {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    background: var(--og-orange);
    color: #160d04;
    font-size: 20px;
}

.og-brand-text {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 1px;
    color: var(--og-text);
}

.og-brand-text em {
    font-style: normal;
    color: var(--og-orange);
}

.og-burger {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--og-line-2);
    background: var(--og-panel);
    color: var(--og-orange);
    font-size: 18px;
    cursor: pointer;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.og-rail-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 18px 12px;
}

.og-rail-nav a {
    position: relative;
    padding: 11px 14px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--og-dim);
    border-left: 3px solid transparent;
}

.og-rail-nav a:hover { color: var(--og-text); background: rgba(249, 115, 22, 0.08); }

.og-rail-nav a.is-current,
.og-rail-nav a[aria-current="page"] {
    color: var(--og-text);
    background: rgba(249, 115, 22, 0.14);
    border-left-color: var(--og-orange);
}

.og-rail-note {
    margin: 0 16px 16px;
    padding: 14px;
    border: 1px solid var(--og-line);
    background: var(--og-panel);
}

.og-mini {
    margin: 0 0 6px;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--og-orange);
    font-weight: 700;
}

.og-sub {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--og-dim);
}

.og-sub a { border-bottom: 1px dotted var(--og-line-2); }
.og-sub a:hover { color: var(--og-orange-soft); }

.og-tip {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    color: var(--og-dim);
}

.og-rail-cta {
    margin-top: auto;
    padding: 14px 16px 18px;
    border-top: 1px solid var(--og-line);
}

/* ---------- 5. 按钮体系（矩形硬切角） ---------- */
.og-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 10px 22px;
    box-sizing: border-box;
    border: 2px solid transparent;
    border-radius: 0;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.12s ease, background 0.12s ease;
    text-align: center;
}

.og-btn:hover { transform: translateY(-1px); color: inherit; }

.og-btn--primary {
    background: var(--og-orange);
    color: #180e04;
    border-color: var(--og-orange);
}

.og-btn--primary:hover { background: var(--og-orange-soft); }

.og-btn--ghost-dark {
    background: transparent;
    color: var(--og-dark-ink);
    border-color: var(--og-dark-ink);
}

.og-btn--ghost-dark:hover { background: var(--og-dark-ink); color: var(--og-text); }

.og-btn--ghost-light {
    background: transparent;
    color: var(--og-text);
    border-color: var(--og-text);
}

.og-btn--ghost-light:hover { background: var(--og-text); color: var(--og-dark-ink); }

.og-btn--block { width: 100%; }

.og-btn--sm {
    min-height: 40px;
    padding: 6px 16px;
    font-size: 13px;
}

.og-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ---------- 6. 标题 / 眉标体系 ---------- */
.og-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    padding: 4px 10px;
    background: var(--og-orange);
    color: #160d04;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
}

.og-kicker--ghost {
    background: transparent;
    border: 1px solid var(--og-orange);
    color: var(--og-orange);
}

.og-h2 {
    margin: 0;
    font-size: clamp(28px, 4.4vw, 46px);
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 1px;
}

.og-h3 {
    margin: 0 0 14px;
    font-size: clamp(21px, 2.6vw, 28px);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 1px;
}

.og-h3 em, .og-h2 em { font-style: normal; color: var(--og-orange); }

.og-lead {
    margin: 0 0 26px;
    color: var(--og-dim);
    font-size: 16px;
}

/* ---------- 7. 通用区块与分区头 ---------- */
.og-section { padding: 54px 0; }

.og-section--rule { border-top: 1px solid var(--og-line); }

.og-section-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 26px;
}

.og-section-head p:last-child { margin-bottom: 0; }

.og-note {
    margin: 0;
    font-size: 12px;
    color: var(--og-dim);
    line-height: 1.6;
}

/* ---------- 8. Hero（左标题右大图 + 赛事数字） ---------- */
.og-hero {
    padding: 46px 0 10px;
    background:
        linear-gradient(115deg, rgba(249, 115, 22, 0.10), transparent 42%),
        radial-gradient(1200px 300px at 85% 0%, rgba(249, 115, 22, 0.10), transparent);
}

.og-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 34px;
    align-items: stretch;
}

.og-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.og-hero-copy .og-h2 { margin-bottom: 18px; }

.og-hero-copy > p {
    margin: 0 0 14px;
    color: var(--og-dim);
    font-size: 16px;
    max-width: 46ch;
}

.og-hero-copy > p strong { color: var(--og-orange-soft); font-weight: 800; }

.og-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 22px 0 24px;
}

.og-stat {
    border: 1px solid var(--og-line-2);
    background: rgba(28, 23, 17, 0.7);
    padding: 10px 12px;
}

.og-stat b {
    display: block;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 900;
    color: var(--og-orange);
}

.og-stat small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--og-dim);
}

.og-hero-figure {
    position: relative;
    margin: 0;
}

.og-hero-figure img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--og-line-2);
    filter: saturate(0.92);
}

.og-flag {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 12px;
    background: var(--og-ink);
    border: 1px solid var(--og-orange);
    color: var(--og-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.og-figure-cap {
    margin: 8px 0 0;
    font-size: 12px;
    color: var(--og-dim);
    text-align: right;
}

/* ---------- 9. Hero 玩法标签（command-tags） ---------- */
.command-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 0;
    padding: 16px 0 0;
    border-top: 1px dashed var(--og-line-2);
}

.command-tags span {
    padding: 6px 14px;
    background: var(--og-panel);
    border: 1px solid var(--og-line-2);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--og-text);
}

.command-tags span::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    background: var(--og-orange);
}

/* ---------- 10. 快速入口砖块（quick-lane） ---------- */
.og-lane-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.og-lane {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 16px;
    background: var(--og-panel);
    border: 1px solid var(--og-line);
    border-bottom: 3px solid var(--og-orange);
    min-width: 0;
}

.og-lane:hover { background: var(--og-panel-2); }

.og-lane-ico {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    background: var(--og-orange);
    color: #170c03;
    font-size: 19px;
}

.og-lane h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.3;
}

.og-lane p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: var(--og-dim);
    flex: 1 1 auto;
}

.og-lane-more {
    font-size: 13px;
    font-weight: 800;
    color: var(--og-orange);
    letter-spacing: 1px;
}

.og-lane-more i { margin-left: 6px; }

/* ---------- 11. 热门赛事：横向比分卡 ---------- */
.og-match-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 18px;
}

.og-match-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.og-match-row {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto minmax(0, 1fr) 108px;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    background: linear-gradient(90deg, var(--og-panel-2), var(--og-panel));
    border: 1px solid var(--og-line);
}

.og-date {
    font-size: 12px;
    color: var(--og-dim);
    letter-spacing: 1px;
}

.og-team {
    font-weight: 800;
    font-size: 16px;
    text-align: right;
    min-width: 0;
    overflow-wrap: break-word;
}

.og-team--away { text-align: left; }

.og-score {
    display: inline-block;
    padding: 4px 12px;
    background: var(--og-orange);
    color: #170c03;
    font-weight: 900;
    letter-spacing: 1px;
    white-space: nowrap;
    border-radius: 0;
}

.og-state {
    font-size: 13px;
    font-weight: 700;
    color: var(--og-dim);
    text-align: right;
    white-space: nowrap;
}

.og-state--soon { color: var(--og-orange-soft); }

/* ---------- 12. 砖块卡 / 媒体卡通用 ---------- */
.og-mode-media { margin: 0 0 14px; }

.og-mode-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--og-line-2);
}

.og-mode-card h4 {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 900;
}

.og-mode-card h4 i {
    margin-right: 8px;
    color: var(--og-orange);
    font-size: 17px;
}

.og-mode-card p {
    margin: 0;
    font-size: 14px;
    color: var(--og-dim);
    line-height: 1.75;
}

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

/* ---------- 13. 足球玩法横条 + 小图 ---------- */
.og-fb-wrap {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 22px;
    align-items: center;
}

.og-fb-bars {
    display: grid;
    gap: 14px;
}

.og-fb-bar {
    padding: 16px 18px;
    border-left: 4px solid var(--og-orange);
    background: var(--og-panel);
}

.og-fb-bar h4 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 900;
}

.og-fb-bar h4 i { margin-right: 8px; color: var(--og-orange); }

.og-fb-bar p {
    margin: 0;
    font-size: 14px;
    color: var(--og-dim);
}

.og-fb-media { margin: 0; }

.og-fb-media img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border: 1px solid var(--og-line-2);
}

/* ---------- 14. 客户端双端卡 ---------- */
.og-client-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.og-client-card {
    border: 1px solid var(--og-line);
    background: var(--og-panel);
    padding: 22px 20px;
    min-width: 0;
}

.og-client-card--light {
    background: linear-gradient(135deg, var(--og-paper), var(--og-paper-2));
    color: var(--og-dark-ink);
}

.og-client-card--light .og-lane-more,
.og-client-card--light p { color: #4d4030; }

.og-client-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.og-client-head i {
    font-size: 24px;
    color: var(--og-orange);
}

.og-client-head h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
}

.og-client-card p {
    margin: 0 0 14px;
    font-size: 14px;
    color: var(--og-dim);
    line-height: 1.75;
}

.og-client-card--light p { color: #4d4030; }

.og-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.og-pill {
    padding: 3px 10px;
    font-size: 12px;
    border: 1px solid var(--og-line-2);
    color: var(--og-dim);
}

.og-client-card--light .og-pill {
    border-color: #b7a377;
    color: #55462f;
}

/* ---------- 15. 活动任务（quest） ---------- */
.og-quest {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.og-quest li {
    padding: 16px 15px 15px;
    background: var(--og-panel);
    border-top: 3px solid var(--og-orange-deep);
    border-left: 1px solid var(--og-line);
    border-right: 1px solid var(--og-line);
    border-bottom: 1px solid var(--og-line);
    min-width: 0;
}

.og-quest li b {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 900;
}

.og-quest li b i { margin-right: 8px; color: var(--og-orange); }

.og-quest li p {
    margin: 0;
    font-size: 13px;
    color: var(--og-dim);
    line-height: 1.7;
}

/* ---------- 16. 评论 voices ---------- */
.og-voices-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.og-voice {
    position: relative;
    padding: 18px 18px 14px;
    background: var(--og-panel);
    border: 1px solid var(--og-line);
}

.og-voice::before {
    content: "\201C";
    position: absolute;
    top: -14px;
    left: 10px;
    font-size: 44px;
    line-height: 1;
    color: var(--og-orange);
}

.og-voice blockquote {
    margin: 8px 0 10px;
    font-size: 14px;
    color: var(--og-text);
}

.og-voice p {
    margin: 0;
    font-size: 12px;
    color: var(--og-dim);
}

.og-voice p i { margin-right: 6px; color: var(--og-orange); }

/* ---------- 17. FAQ（details 大字号，右侧宽区） ---------- */
.og-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: 30px;
}

.og-faq-item {
    border: 1px solid var(--og-line);
    background: var(--og-panel);
    margin: 0 0 10px;
}

.og-faq-item summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    cursor: pointer;
    list-style: none;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.5;
}

.og-faq-item summary::-webkit-details-marker { display: none; }

.og-faq-item summary::before {
    content: "\002B";
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    background: var(--og-orange);
    color: #170c03;
    font-weight: 900;
}

.og-faq-item[open] summary::before { content: "\2212"; }

.og-faq-item .og-faq-a {
    padding: 0 18px 16px 56px;
    font-size: 14px;
    color: var(--og-dim);
}

.og-faq-a p { margin: 0 0 8px; }
.og-faq-a p:last-child { margin-bottom: 0; }

/* ---------- 18. Final CTA 浅底反黑 ---------- */
.og-final {
    background:
        repeating-linear-gradient(
            45deg,
            rgba(34, 26, 16, 0.04) 0 10px,
            transparent 10px 20px
        ),
        var(--og-paper);
    color: var(--og-dark-ink);
}

.og-final .og-h3 { color: var(--og-dark-ink); }
.og-final .og-h3 em { color: var(--og-orange-deep); }
.og-final .og-lead { color: #5a4b36; margin-bottom: 0; }
.og-final .og-btn-row { margin-top: 22px; }

/* ---------- 19. 页脚（黑底三段，橙色细顶边） ---------- */
.og-footer {
    background: var(--og-coal);
    border-top: 3px solid var(--og-orange);
    color: var(--og-text);
}

.og-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr);
    gap: 30px;
    padding: 44px 0 30px;
}

.og-f-title {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--og-orange);
}

.og-f-brand {
    display: inline-block;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.2;
}

.og-f-brand:hover { color: var(--og-orange-soft); }

.og-f-desc {
    margin: 12px 0 0;
    font-size: 13px;
    line-height: 1.8;
    color: var(--og-dim);
    max-width: 40ch;
}

.og-f-links {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.og-f-links a {
    font-size: 14px;
    color: var(--og-dim);
}

.og-f-links a::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 8px;
    background: var(--og-orange-deep);
}

.og-f-links a:hover { color: var(--og-orange-soft); }

.og-friend p {
    margin: 0 0 8px;
    font-size: 14px;
}

.og-friend a { color: var(--og-dim); }
.og-friend a:hover { color: var(--og-orange-soft); }

.og-footbar {
    border-top: 1px solid var(--og-line);
    padding: 16px 0 22px;
}

.og-footbar p {
    margin: 0;
    font-size: 12px;
    color: var(--og-dim);
    line-height: 1.8;
}

/* ---------- 20. 返回顶部 ---------- */
.og-topbtn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    background: var(--og-orange);
    border: 0;
    color: #170c03;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.og-topbtn.is-shown { opacity: 1; visibility: visible; }

/* ---------- 21. 内页通用：页首 + 面包屑 ---------- */
.og-pagehead {
    padding: 40px 0 8px;
}

.og-crumbs {
    margin: 0 0 14px;
    font-size: 13px;
    color: var(--og-dim);
}

.og-crumbs a { color: var(--og-orange); }
.og-crumbs a:hover { color: var(--og-orange-soft); }

.og-pagehead .og-lead { max-width: 62ch; }

.og-head-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.og-goback {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 6px 14px;
    background: var(--og-panel);
    border: 1px solid var(--og-line-2);
    font-size: 13px;
    font-weight: 800;
    color: var(--og-orange-soft);
}

.og-goback i { color: var(--og-orange); }

/* ---------- 22. 双栏 / 三栏通用 ---------- */
.og-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

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

.og-ico-sq {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    background: var(--og-orange);
    color: #170c03;
    font-size: 19px;
}

/* ---------- 23. About：品牌模块说明 ---------- */
.og-ab-intro {
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    gap: 26px;
    align-items: center;
    margin-bottom: 30px;
}

.og-ab-intro img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid var(--og-line-2);
}

.og-ab-intro .og-ico-sq { margin-bottom: 12px; }

.og-ab-module {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: 22px;
    padding: 26px 0;
    border-top: 1px solid var(--og-line);
}

.og-ab-module:nth-of-type(even) .og-ab-side { order: 2; }

.og-ab-side h4 {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 900;
}

.og-ab-side .og-ico-sq { margin-bottom: 14px; }

.og-ab-body p {
    margin: 0 0 12px;
    font-size: 15px;
    color: var(--og-text);
}

.og-ab-body p:last-child { margin-bottom: 0; }

/* ---------- 24. Product：竞技分类 ---------- */
.og-cat-zone {
    margin: 0 0 30px;
    padding: 26px 24px;
    background: var(--og-panel);
    border: 1px solid var(--og-line);
    border-left: 4px solid var(--og-orange);
}

.og-cat-top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.og-cat-top h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
}

.og-cat-top h3 i { margin-right: 10px; color: var(--og-orange); }

.og-heat {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.og-heat span {
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--og-text);
    background: var(--og-panel-2);
    border: 1px solid var(--og-line-2);
}

.og-cat-body {
    display: grid;
    grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
    gap: 20px;
    align-items: center;
}

.og-cat-body img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--og-line-2);
}

.og-cat-body--imgleft { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); }
.og-cat-body--imgleft img { order: 1; }
.og-cat-body--imgleft div { order: 2; }

.og-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.og-points li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--og-text);
}

.og-points li i {
    margin-top: 5px;
    color: var(--og-orange);
}

/* ---------- 25. News：时间轴 ---------- */
.og-bulletin {
    display: grid;
    grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
    gap: 26px;
    align-items: start;
}

.og-tl {
    position: relative;
    margin: 0;
    padding: 0 0 0 22px;
    list-style: none;
}

.og-tl::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--og-line-2);
}

.og-tl li {
    position: relative;
    margin-bottom: 20px;
    padding: 16px 18px;
    background: var(--og-panel);
    border: 1px solid var(--og-line);
}

.og-tl li::before {
    content: "";
    position: absolute;
    left: -22px;
    top: 22px;
    width: 12px;
    height: 12px;
    background: var(--og-orange);
}

.og-tl time {
    display: inline-block;
    margin-bottom: 6px;
    padding: 2px 10px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid var(--og-orange);
    color: var(--og-orange-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.og-tl h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.45;
}

.og-tl p {
    margin: 0;
    font-size: 14px;
    color: var(--og-dim);
}

.og-bulletin-rail {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 16px;
}

.og-bulletin-rail figure { margin: 0; }

.og-bulletin-rail img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--og-line-2);
}

.og-bulletin-rail .og-flag { top: 10px; right: 10px; }

.og-bulletin-rail p {
    margin: 0;
    font-size: 13px;
    color: var(--og-dim);
}

.og-archive {
    display: grid;
    gap: 10px;
    margin-top: 8px;
    padding: 18px;
    border: 1px dashed var(--og-line-2);
}

.og-archive a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 12px;
    background: var(--og-panel);
    border: 1px solid var(--og-line);
    font-size: 14px;
    font-weight: 700;
}

.og-archive a i { color: var(--og-orange); }
.og-archive a:hover { border-color: var(--og-orange-deep); }

/* ---------- 26. Contact：支持控制台 ---------- */
.og-cons {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: 26px;
    align-items: start;
}

.og-cons-nav {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.og-cons-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    background: var(--og-panel);
    border: 1px solid var(--og-line);
    border-left: 3px solid transparent;
    font-size: 15px;
    font-weight: 800;
    color: var(--og-dim);
}

.og-cons-nav a i { color: var(--og-orange); width: 18px; text-align: center; }

.og-cons-nav a:hover {
    color: var(--og-text);
    border-left-color: var(--og-orange);
    background: var(--og-panel-2);
}

.og-cons-panel .og-faq-item summary { font-size: 15px; }

.og-resp-card {
    margin-top: 18px;
    padding: 18px 20px;
    background: var(--og-panel);
    border: 1px solid var(--og-line);
    border-top: 3px solid var(--og-orange);
}

.og-resp-card h4 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 900;
}

.og-resp-card h4 i { margin-right: 8px; color: var(--og-orange); }

.og-resp-card p {
    margin: 0 0 8px;
    font-size: 14px;
    color: var(--og-dim);
}

.og-resp-card p:last-child { margin-bottom: 0; }

/* ---------- 27. 内页收尾带 ---------- */
.og-outro {
    margin-top: 10px;
    padding: 26px 24px;
    background: var(--og-panel);
    border: 1px solid var(--og-line);
    border-left: 4px solid var(--og-orange);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.og-outro p { margin: 0; font-size: 14px; color: var(--og-dim); }
.og-outro p b { color: var(--og-text); }

/* ---------- 28. Page6 sports：赛程砖 + 双栏 ---------- */
.og-sc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.og-sc-brick {
    padding: 16px 15px;
    background: var(--og-panel);
    border: 1px solid var(--og-line);
    border-bottom: 3px solid var(--og-orange-deep);
    min-width: 0;
}

.og-sc-brick:hover { background: var(--og-panel-2); }

.og-sc-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.og-sc-meta span {
    font-size: 12px;
    color: var(--og-dim);
    letter-spacing: 1px;
}

.og-sc-meta b {
    font-size: 12px;
    font-weight: 800;
    color: var(--og-orange);
    letter-spacing: 1px;
}

.og-sc-vs {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.45;
}

.og-sc-vs small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--og-dim);
}

.og-feat-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
}

.og-feat-list li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--og-text);
}

.og-feat-list li i {
    margin-top: 5px;
    color: var(--og-orange);
}

/* ---------- 29. 响应式 ---------- */
@media (max-width: 1199px) {
    .og-match-row {
        grid-template-columns: 64px minmax(0, 1fr) auto minmax(0, 1fr);
    }
    .og-state { display: none; }
}

@media (max-width: 1023px) {
    body { padding-left: 0; }

    .og-rail {
        position: sticky;
        top: 0;
        width: auto;
        border-right: 0;
        border-bottom: 2px solid var(--og-orange);
        height: auto;
    }

    .og-rail-top { padding: 8px 14px; border-bottom: 0; }
    .og-rail-top .og-brand-glyph { width: 36px; height: 36px; font-size: 17px; }

    .og-burger { display: grid; place-items: center; }

    .og-rail.is-open .og-ico-open { display: none; }
    .og-rail .og-ico-close { display: none; }
    .og-rail.is-open .og-ico-close { display: inline; }

    .og-rail-nav,
    .og-rail-note,
    .og-rail-cta {
        display: none;
    }

    .og-rail.is-open .og-rail-nav,
    .og-rail.is-open .og-rail-note,
    .og-rail.is-open .og-rail-cta {
        display: flex;
    }

    .og-rail.is-open .og-rail-nav {
        border-top: 1px solid var(--og-line);
    }

    .og-rail-note { margin: 0 14px 14px; }
    .og-rail-cta { padding: 0 14px 14px; border-top: 0; }

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

    .og-ab-intro,
    .og-cat-body,
    .og-cat-body--imgleft {
        grid-template-columns: minmax(0, 1fr);
    }

    .og-cat-body--imgleft img { order: 0; }
    .og-cat-body--imgleft div { order: 1; }
}

@media (max-width: 767px) {
    .og-section { padding: 40px 0; }

    .og-lane-grid,
    .og-quest,
    .og-voices-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .og-modes-grid,
    .og-client-grid,
    .og-cols-2,
    .og-cols-3 { grid-template-columns: minmax(0, 1fr); }

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

    .og-fb-wrap .og-fb-media { order: -1; }

    .og-match-row {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        gap: 8px;
        padding: 11px 10px;
    }

    .og-date { display: none; }
    .og-score { padding: 3px 8px; font-size: 14px; }
    .og-team { font-size: 14px; }

    .og-faq-grid,
    .og-bulletin,
    .og-cons { grid-template-columns: minmax(0, 1fr); }

    .og-bulletin-rail { position: static; }

    .og-footer-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
        padding: 30px 0 20px;
    }

    .og-hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }

    .og-stat b { font-size: 20px; }

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

    .og-ab-module {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    .og-ab-module:nth-of-type(even) .og-ab-side { order: 0; }

    .og-hero { padding-top: 30px; }
}

@media (max-width: 419px) {
    .og-hero-stats { grid-template-columns: minmax(0, 1fr); }

    .og-sc-grid,
    .og-lane-grid,
    .og-quest,
    .og-voices-grid { grid-template-columns: minmax(0, 1fr); }

    .og-rail-nav a { font-size: 15px; }
}

/* ---------- 30. 动效克制 ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .og-btn,
    .og-topbtn { transition: none; }

    * { animation: none !important; }
}
