/* ============================================================
   ty-003 电竞体育游戏企业模板
   配色体系：碳黑红底 + 猩红单色系（#ff2d55 主 / #d61f44 深）
   结构：左对齐 HERO / 通告条 / 双列业务大卡 / 三列游戏竖卡
        深红数据面板 / 横向四步流程 / 红框荣誉图集 / 六边形伙伴徽章
        双列动态行卡 / 红底 CTA 横幅
   ============================================================ */

/* ---------- 基础 ---------- */
body {
    font-family: "Microsoft YaHei", "PingFang SC", Tahoma, Helvetica, sans-serif;
    background-color: #0a0508;
    background-image:
        radial-gradient(ellipse at 82% -10%, rgba(255, 45, 85, .12), transparent 55%),
        linear-gradient(180deg, #0a0508 0%, #0d060b 100%);
    background-attachment: fixed;
    color: #fff0f3;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

a { color: #ff6b8a; text-decoration: none; transition: color .15s ease, text-shadow .15s ease; }
a:hover { color: #ff2d55; text-decoration: none; text-shadow: 0 0 12px rgba(255, 45, 85, .5); }

img { max-width: 100%; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

/* ---------- 顶部通告条（仅首页） ---------- */
.r-notice {
    background: linear-gradient(90deg, #d61f44, #ff2d55 55%, #d61f44);
    color: #fff0f3;
}

.r-notice .container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.r-notice-badge {
    flex-shrink: 0;
    padding: 2px 10px;
    background: rgba(10, 5, 8, .35);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.r-notice p {
    margin: 0;
    font-size: 13px;
    letter-spacing: .5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ---------- 顶部导航 ---------- */
.r-header {
    background: linear-gradient(180deg, rgba(14, 6, 10, .98), rgba(10, 5, 8, .92));
    border-bottom: 1px solid rgba(255, 45, 85, .22);
    box-shadow: 0 4px 26px rgba(0, 0, 0, .6);
}

.r-header-inner {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
    min-height: 64px;
}

.r-logo {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    line-height: 64px;
    white-space: nowrap;
    flex-shrink: 0;
}

.r-logo .logo-badge {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-right: 10px;
    background: linear-gradient(135deg, #ff2d55, #d61f44);
    box-shadow: 0 0 18px rgba(255, 45, 85, .45);
    position: relative;
    top: 8px;
    transform: skewX(-12deg);
}

.r-logo .logo-badge::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    width: 8px;
    height: 8px;
    background: #fff0f3;
    transform: skewX(12deg);
}

.r-logo .logo-word {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
    background: linear-gradient(90deg, #ff2d55, #ff6b8a, #ffd6de);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.r-nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    min-width: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.r-nav::-webkit-scrollbar { display: none; }

.r-nav > li { position: relative; margin: 0; }

.r-nav > li > a {
    display: block;
    padding: 0 8px;
    line-height: 64px;
    color: #b08a95;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

.r-nav > li > a:hover,
.r-nav > li.active > a {
    color: #ff2d55;
    border-bottom-color: #ff2d55;
    text-shadow: 0 0 12px rgba(255, 45, 85, .55);
}

.r-nav .r-nav-hasdrop > a .drop-caret {
    display: inline-block;
    margin-left: 4px;
    font-size: 10px;
    transition: transform .2s ease;
}

.r-nav > li.r-nav-hasdrop:hover > a .drop-caret { transform: rotate(180deg); }

.r-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    padding: 6px 0;
    margin: 0;
    list-style: none;
    background: #12060c;
    border: 1px solid rgba(255, 45, 85, .28);
    border-top: 2px solid #ff2d55;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .6);
    z-index: 99;
    display: none;
}

.r-nav > li:hover .r-dropdown,
.r-nav > li.open .r-dropdown { display: block; }

.r-dropdown li a {
    display: block;
    padding: 9px 18px;
    color: #b08a95;
    font-size: 13px;
}

.r-dropdown li a:hover {
    color: #ff2d55;
    background: rgba(255, 45, 85, .08);
}

.r-dropdown-cols {
    min-width: 180px;
    max-height: 320px;
    overflow-y: auto;
}

.r-dropdown-sub { padding-left: 14px; margin: 0; list-style: none; }

.r-dropdown-sub li a { color: #5d424c; font-size: 12px; }

.r-header-side {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.r-search {
    display: inline-flex;
    align-items: center;
}

/* MIP 运行时会给 mip-form 包一层内层 form(display:block)，强制横向 */
.r-search form {
    display: flex;
    align-items: center;
}

.r-search input {
    width: 128px;
    height: 34px;
    padding: 0 12px;
    background: rgba(22, 9, 14, .9);
    border: 1px solid rgba(255, 45, 85, .3);
    border-right: none;
    color: #fff0f3;
    outline: none;
}

.r-search input::placeholder { color: #6e4a56; }

.r-search .r-search-btn {
    height: 34px;
    padding: 0 16px;
    border: none;
    background: linear-gradient(90deg, #ff2d55, #d61f44);
    color: #fff0f3;
    font-weight: 700;
    font-size: 13px;
}

.r-play-btn {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid rgba(255, 45, 85, .5);
    color: #ff2d55;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    background: rgba(255, 45, 85, .07);
    transform: skewX(-10deg);
}

.r-play-btn:hover {
    color: #fff0f3 !important;
    background: linear-gradient(90deg, #ff2d55, #d61f44);
    box-shadow: 0 0 18px rgba(255, 45, 85, .5);
}

/* ---------- 按钮（斜切方向与 ty-002 相反：左上/右下） ---------- */
.r-btn {
    display: inline-block;
    padding: 10px 28px;
    border: none;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .2s ease;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.r-btn-main {
    background: linear-gradient(90deg, #ff2d55, #d61f44);
    color: #fff0f3 !important;
    box-shadow: 0 0 22px rgba(255, 45, 85, .35);
}

.r-btn-main:hover {
    color: #fff0f3 !important;
    filter: brightness(1.12);
    text-shadow: none !important;
    box-shadow: 0 0 30px rgba(255, 45, 85, .6);
}

.r-btn-ghost {
    border: 1px solid rgba(255, 45, 85, .5);
    color: #ff6b8a;
    background: rgba(255, 45, 85, .05);
}

.r-btn-ghost:hover {
    color: #ff2d55;
    border-color: #ff2d55;
    box-shadow: 0 0 18px rgba(255, 45, 85, .3);
}

.r-btn-light {
    background: #fff0f3;
    color: #d61f44 !important;
}

.r-btn-light:hover {
    color: #ff2d55 !important;
    text-shadow: none !important;
    box-shadow: 0 0 22px rgba(255, 240, 243, .5);
}

.r-btn-line {
    border: 1px solid rgba(255, 240, 243, .65);
    color: #fff0f3;
}

.r-btn-line:hover {
    color: #fff0f3 !important;
    border-color: #fff0f3;
    box-shadow: 0 0 16px rgba(255, 240, 243, .35);
}

/* ---------- HERO（左对齐架构） ---------- */
.r-hero {
    position: relative;
    padding: 76px 0 0;
    overflow: hidden;
}

.r-hero-beam {
    position: absolute;
    left: -140px;
    top: -160px;
    width: 620px;
    height: 560px;
    background: linear-gradient(135deg, rgba(255, 45, 85, .22), transparent 65%);
    transform: rotate(0deg);
    pointer-events: none;
}

.r-hero-vtx {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-60%);
    writing-mode: vertical-rl;
    color: rgba(255, 45, 85, .28);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 10px;
    border-right: 1px solid rgba(255, 45, 85, .25);
    padding-right: 10px;
    pointer-events: none;
}

.r-hero-main {
    position: relative;
    max-width: 720px;
}

.r-kicker {
    display: inline-block;
    padding: 5px 0 5px 14px;
    margin-bottom: 18px;
    border-left: 4px solid #ff2d55;
    color: #ff6b8a;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
    background: linear-gradient(90deg, rgba(255, 45, 85, .1), transparent 80%);
}

.r-hero-title {
    margin: 0 0 10px;
    font-size: 46px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 2px;
    color: #fff0f3;
    text-shadow: 0 0 40px rgba(255, 45, 85, .35);
}

.r-hero-slogan {
    display: inline-block;
    margin: 0 0 14px;
    padding: 6px 16px;
    background: linear-gradient(90deg, #ff2d55, #d61f44);
    color: #fff0f3;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 5px;
    transform: skewX(-10deg);
}

.r-hero-sub {
    max-width: 620px;
    margin: 0 0 30px;
    color: #b08a95;
    font-size: 14px;
    line-height: 1.9;
}

.r-hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

/* 底部数据带：通栏 + 左粗边格（区别 ty-002 竖线分隔居中行） */
.r-ticker {
    border-top: 1px solid rgba(255, 45, 85, .18);
    background: linear-gradient(180deg, rgba(255, 45, 85, .05), transparent);
}

.r-ticker-row {
    display: flex;
    flex-wrap: wrap;
}

.r-tick {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 18px 34px;
    border-left: 4px solid #ff2d55;
    margin: 18px 34px 18px 0;
    background: rgba(255, 45, 85, .04);
}

.r-tick .tk-num {
    font-size: 30px;
    font-weight: 900;
    color: #ff2d55;
    text-shadow: 0 0 22px rgba(255, 45, 85, .45);
    line-height: 1;
}

.r-tick .tk-num i { font-style: normal; font-size: 16px; }

.r-tick .tk-lab { color: #b08a95; font-size: 13px; letter-spacing: 2px; }

/* ---------- 通用区块 ---------- */
.r-sec { padding: 64px 0; }

.r-sec-dark {
    background: linear-gradient(180deg, #0d060b, #0a0508);
    border-top: 1px solid rgba(255, 45, 85, .12);
    border-bottom: 1px solid rgba(255, 45, 85, .12);
}

.r-sec-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 34px;
}

.r-sec-title {
    position: relative;
    margin: 0;
    padding-left: 16px;
    font-size: 26px;
    font-weight: 900;
    color: #fff0f3;
    letter-spacing: 2px;
}

.r-sec-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 26px;
    background: linear-gradient(180deg, #ff2d55, #d61f44);
}

.r-sec-title .en {
    margin-left: 12px;
    color: rgba(255, 45, 85, .4);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
}

/* ---------- 关于我们（右图左文） ---------- */
.r-about {
    display: flex;
    align-items: stretch;
    gap: 36px;
}

.r-about-copy {
    flex: 1 1 54%;
    min-width: 0;
}

.r-about-copy p { margin: 0 0 14px; color: #ecc8d2; font-size: 14px; line-height: 2; }

.r-about-copy strong { color: #ff6b8a; }

.r-about-points {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.r-about-points li {
    position: relative;
    padding: 7px 0 7px 24px;
    color: #b08a95;
    font-size: 14px;
    border-bottom: 1px dashed rgba(255, 45, 85, .14);
}

.r-about-points li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 14px;
    width: 8px;
    height: 8px;
    background: #ff2d55;
    transform: rotate(45deg);
}

.r-about-fig {
    position: relative;
    flex: 1 1 46%;
    min-width: 0;
    border: 1px solid rgba(255, 45, 85, .25);
    padding: 10px;
    background: rgba(255, 45, 85, .03);
}

.r-about-fig mip-img img {
    display: block;
    width: 100%;
    height: 380px !important;
    object-fit: cover;
}

.r-about-fig .fig-tag {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 6px 16px;
    background: linear-gradient(90deg, #ff2d55, #d61f44);
    color: #fff0f3;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

/* ---------- 核心业务（双列大卡 + 左上角标编号） ---------- */
.r-srv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.r-srv-card {
    position: relative;
    display: block;
    padding: 26px 24px 22px;
    background: rgba(20, 8, 13, .6);
    border: 1px solid rgba(255, 45, 85, .16);
    overflow: hidden;
}

.r-srv-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-style: solid;
    border-width: 26px 26px 0 0;
    border-color: #ff2d55 transparent transparent transparent;
    opacity: .85;
}

.r-srv-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #ff2d55, #d61f44);
    transition: width .3s ease;
}

.r-srv-card:hover::after { width: 100%; }

.r-srv-card:hover { border-color: rgba(255, 45, 85, .45); }

.r-srv-card .sc-no {
    display: block;
    margin-bottom: 10px;
    padding-left: 30px;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 45, 85, .35);
}

.r-srv-card b {
    display: block;
    margin-bottom: 8px;
    color: #fff0f3;
    font-size: 18px;
    font-weight: 800;
}

.r-srv-card p { margin: 0 0 14px; color: #b08a95; font-size: 13px; line-height: 1.8; }

.r-srv-card .sc-more { color: #ff6b8a; font-size: 13px; font-weight: 700; letter-spacing: 1px; }

.r-srv-card:hover .sc-more { color: #ff2d55; }

/* ---------- 游戏产品（三列竖版卡） ---------- */
.r-game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.r-game-card {
    display: flex;
    flex-direction: column;
    background: rgba(20, 8, 13, .6);
    border: 1px solid rgba(255, 45, 85, .16);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.r-game-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 45, 85, .5);
    box-shadow: 0 14px 30px rgba(255, 45, 85, .16);
}

.r-game-card .gc-fig {
    display: block;
    border-bottom: 2px solid #ff2d55;
}

.r-game-card .gc-fig mip-img img {
    display: block;
    width: 100%;
    height: 200px !important;
    object-fit: cover;
    transition: transform .3s ease;
}

.r-game-card:hover .gc-fig mip-img img { transform: scale(1.06); }

.r-game-card .gc-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
}

.r-game-card .gc-body b { color: #fff0f3; font-size: 17px; font-weight: 800; }

.r-game-card .gc-body i { color: #b08a95; font-size: 13px; font-style: normal; line-height: 1.7; }

.r-game-card .gc-btn {
    align-self: flex-start;
    margin-top: 4px;
    padding: 6px 18px;
    background: linear-gradient(90deg, #ff2d55, #d61f44);
    color: #fff0f3;
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.r-game-card:hover .gc-btn { filter: brightness(1.15); }

/* ---------- 企业数据（深红面板四格） ---------- */
.r-stats-panel {
    display: flex;
    flex-wrap: wrap;
    padding: 34px 10px;
    background: linear-gradient(135deg, #220a14, #12050c);
    border: 1px solid rgba(255, 45, 85, .3);
    box-shadow: inset 0 0 60px rgba(255, 45, 85, .06);
}

.r-stat-cell {
    flex: 1 1 25%;
    min-width: 200px;
    padding: 8px 30px;
    border-left: 4px solid #ff2d55;
}

.r-stat-cell .cell-num {
    display: block;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff0f3;
    text-shadow: 0 0 26px rgba(255, 45, 85, .5);
}

.r-stat-cell .cell-num i { font-style: normal; font-size: 24px; color: #ff2d55; margin-left: 2px; }

.r-stat-cell .cell-lab { display: block; margin-top: 6px; color: #b08a95; font-size: 13px; letter-spacing: 3px; }

/* ---------- 服务流程（横向四步箭头） ---------- */
.r-flow {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: rflow;
}

.r-flow-step {
    position: relative;
    flex: 1 1 25%;
    padding: 22px 24px 20px;
    background: rgba(20, 8, 13, .6);
    border: 1px solid rgba(255, 45, 85, .16);
    border-left: none;
}

.r-flow-step:first-child { border-left: 1px solid rgba(255, 45, 85, .16); }

.r-flow-step::after {
    content: "";
    position: absolute;
    right: -9px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 9px;
    border-color: transparent transparent transparent #ff2d55;
    z-index: 2;
}

.r-flow-step:last-child::after { display: none; }

.r-flow-step .fs-no {
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 12px;
    background: linear-gradient(90deg, #ff2d55, #d61f44);
    color: #fff0f3;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 2px;
}

.r-flow-step b { display: block; margin-bottom: 8px; color: #fff0f3; font-size: 17px; font-weight: 800; }

.r-flow-step p { margin: 0; color: #b08a95; font-size: 13px; line-height: 1.8; }

.r-flow-step:hover { background: rgba(255, 45, 85, .08); }

/* ---------- 资质荣誉（三列图卡红框） ---------- */
.r-honor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.r-honor-fig {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 45, 85, .2);
    background: rgba(20, 8, 13, .5);
    transition: border-color .25s ease, box-shadow .25s ease;
}

.r-honor-fig:hover {
    border-color: rgba(255, 45, 85, .65);
    box-shadow: 0 10px 26px rgba(255, 45, 85, .14);
}

.r-honor-fig mip-img img {
    display: block;
    width: 100%;
    height: 250px !important;
    object-fit: cover;
}

.r-honor-fig span {
    padding: 9px 14px;
    color: #b08a95;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    border-top: 1px solid rgba(255, 45, 85, .14);
    background: rgba(255, 45, 85, .05);
    transition: all .25s ease;
}

.r-honor-fig:hover span {
    color: #fff0f3;
    background: linear-gradient(90deg, #ff2d55, #d61f44);
}

/* ---------- APP 下载（左文右图） ---------- */
.r-app {
    display: flex;
    align-items: center;
    gap: 36px;
}

.r-app-copy { flex: 1 1 46%; min-width: 0; }

.r-app-copy h2 {
    position: relative;
    margin: 0 0 14px;
    padding-left: 16px;
    font-size: 26px;
    font-weight: 900;
    color: #fff0f3;
    letter-spacing: 2px;
}

.r-app-copy h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 26px;
    background: linear-gradient(180deg, #ff2d55, #d61f44);
}

.r-app-copy h2 .en {
    margin-left: 12px;
    color: rgba(255, 45, 85, .4);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
}

.r-app-copy p { margin: 0 0 24px; color: #b08a95; font-size: 14px; line-height: 1.9; }

.r-app-figs {
    display: flex;
    flex: 1 1 54%;
    gap: 18px;
    justify-content: center;
}

.r-app-figs .af-item {
    display: block;
    flex: 0 1 300px;
    padding: 8px;
    border: 1px solid rgba(255, 45, 85, .22);
    background: rgba(255, 45, 85, .03);
    transition: transform .25s ease, border-color .25s ease;
}

.r-app-figs .af-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 45, 85, .6);
}

.r-app-figs .af-item mip-img img {
    display: block;
    width: 100%;
    height: 340px !important;
    object-fit: cover;
    object-position: top;
}

/* ---------- 合作伙伴（六边形徽章） ---------- */
.r-hex-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 18px;
}

.r-hex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.r-hex .hex-fig {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 132px;
    background: linear-gradient(160deg, rgba(255, 45, 85, .9), rgba(214, 31, 68, .9));
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    transition: filter .25s ease, transform .25s ease;
}

.r-hex .hex-fig mip-img {
    width: 78px;
}

.r-hex .hex-fig mip-img img {
    display: block;
    width: 78px !important;
    height: 78px !important;
    object-fit: contain;
}

.r-hex:hover .hex-fig {
    filter: brightness(1.25) drop-shadow(0 0 14px rgba(255, 45, 85, .55));
    transform: translateY(-4px);
}

.r-hex .hex-name {
    color: #b08a95;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.r-hex:hover .hex-name { color: #ff2d55; }

/* ---------- 最新动态（双列行卡） ---------- */
.r-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.r-news-card {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: rgba(20, 8, 13, .6);
    border: 1px solid rgba(255, 45, 85, .16);
    transition: border-color .25s ease, background .25s ease;
}

.r-news-card:hover {
    border-color: rgba(255, 45, 85, .5);
    background: rgba(255, 45, 85, .06);
}

.r-news-card .nc-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 76px;
    background: linear-gradient(180deg, #ff2d55, #d61f44);
    color: #fff0f3;
}

.r-news-card .nc-date b { font-size: 24px; font-weight: 900; line-height: 1; }

.r-news-card .nc-date i { margin-top: 4px; font-style: normal; font-size: 11px; opacity: .85; }

.r-news-card .nc-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 14px 16px;
    min-width: 0;
}

.r-news-card .nc-main b {
    color: #fff0f3;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.r-news-card:hover .nc-main b { color: #ff2d55; }

.r-news-card .nc-main i {
    color: #85626d;
    font-size: 12px;
    font-style: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.r-news-more { margin-top: 26px; text-align: center; }

/* ---------- 合作 CTA（红底横幅） ---------- */
.r-cta {
    position: relative;
    padding: 54px 30px;
    text-align: center;
    background: linear-gradient(120deg, #ff2d55, #d61f44 60%, #b31240);
    overflow: hidden;
}

.r-cta::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: repeating-linear-gradient(135deg, rgba(255, 240, 243, .06) 0 14px, transparent 14px 28px);
    pointer-events: none;
}

.r-cta h2 {
    position: relative;
    margin: 0 0 10px;
    font-size: 30px;
    font-weight: 900;
    color: #fff0f3;
    letter-spacing: 2px;
    text-shadow: 0 2px 16px rgba(10, 5, 8, .4);
}

.r-cta p { position: relative; margin: 0 0 26px; color: rgba(255, 240, 243, .85); font-size: 14px; }

.r-cta-btns {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ---------- 首页功能速览弹窗（仅 index.html 引用，倒计时与按钮统一执行 ad_ky_jump） ---------- */
.r-popup-mask {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(5, 2, 4, .86);
}

.r-popup {
    position: relative;
    width: 560px;
    max-width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 0 28px 26px;
    box-sizing: border-box;
    background: linear-gradient(180deg, #160910 0%, #0b0409 100%);
    border: 1px solid rgba(255, 45, 85, .4);
    box-shadow: 0 0 70px rgba(255, 45, 85, .18), 0 24px 60px rgba(0, 0, 0, .6);
}

.r-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 20px;
    color: #ffd6de;
    background: rgba(255, 45, 85, .25);
}

.r-popup-close:hover { color: #fff0f3 !important; background: #ff2d55; }

.r-popup-head {
    margin: 0 -28px 20px;
    padding: 22px 28px 18px;
    text-align: center;
    background: linear-gradient(120deg, #ff2d55, #d61f44);
}

.r-popup-title {
    margin: 0 0 6px;
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #fff0f3;
    text-shadow: 0 2px 12px rgba(10, 5, 8, .35);
}

.r-popup-sub { margin: 0; color: rgba(255, 240, 243, .85); font-size: 13px; }

.r-popup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.r-popup-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 45, 85, .05);
    border: 1px solid rgba(255, 45, 85, .14);
}

.r-popup-item .pi-dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    background: #ff2d55;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(255, 45, 85, .6);
}

.r-popup-item .pi-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.r-popup-item .pi-txt b { color: #fff0f3; font-size: 14px; }

.r-popup-item .pi-txt span { color: #85626d; font-size: 12px; }

.r-popup-btns { text-align: center; }

.r-popup-btn {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 13px 20px;
    font-size: 17px;
    letter-spacing: 2px;
    animation: rPopupPulse 1.6s ease-in-out infinite;
}

.r-popup-btn em { font-style: normal; }

@keyframes rPopupPulse {
    0%, 100% { box-shadow: 0 0 18px rgba(255, 45, 85, .35); }
    50% { box-shadow: 0 0 34px rgba(255, 45, 85, .7); }
}

.r-popup-tip { margin: 12px 0 0; color: #5d424c; font-size: 12px; }

/* ---------- footer ---------- */
.r-footer {
    margin-top: 40px;
    padding: 34px 0 22px;
    border-top: 1px solid rgba(255, 45, 85, .16);
    background: linear-gradient(180deg, #0d060b, #0a0508);
}

.r-foot-co {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 45, 85, .12);
    flex-wrap: wrap;
}

.r-foot-co .co-name {
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ff2d55, #ff6b8a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.r-foot-co .co-intro p { margin: 0; color: #85626d; font-size: 13px; }

.r-foot-co .co-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.r-foot-co .co-contact li { color: #b08a95; font-size: 13px; }

.r-friend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 0;
    margin: 0 0 10px;
    list-style: none;
}

.r-friend li { color: #5d424c; font-size: 12px; }

.r-friend a { color: #85626d; font-size: 12px; }
.r-friend a:hover { color: #ff2d55; }

.r-copy { margin: 14px 0 0; color: #5d424c; font-size: 12px; }

.r-copy a { color: #5d424c; }
.r-copy a:hover { color: #ff2d55; }

/* ---------- 响应式 ---------- */
/* 中屏（992-1199px）：隐藏头部搜索框，保证 logo+导航+立即游玩单行放下 */
@media (max-width: 1199px) {
    .r-search { display: none; }
}

/* 平板及以下：第一行 logo+立即游玩，导航整行横向滑动，下拉变全宽面板 */
@media (max-width: 991px) {
    .r-header-inner { flex-wrap: wrap; min-height: 56px; }
    .r-logo { line-height: 56px; }
    .r-nav { order: 3; flex: 1 1 100%; overflow-x: auto; scrollbar-width: none; }
    .r-nav > li > a { padding: 0 10px; font-size: 13px; line-height: 44px; }
    .r-nav .r-dropdown { position: fixed; left: 12px; right: 12px; top: 110px; max-height: 56vh; overflow-y: auto; }
    .mipcms-main { padding-top: 109px !important; }
    .r-notice { display: none; }
    .r-hero { padding: 46px 0 0; }
    .r-hero-title { font-size: 30px; }
    .r-hero-slogan { font-size: 15px; letter-spacing: 3px; }
    .r-hero-vtx { display: none; }
    .r-hero-btns { margin-bottom: 36px; }
    .r-tick { padding: 12px 20px; margin: 12px 20px 12px 0; }
    .r-tick .tk-num { font-size: 24px; }
    .r-about { flex-direction: column-reverse; gap: 24px; }
    .r-about-fig mip-img img { height: 260px !important; }
    .r-srv-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .r-game-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .r-stats-panel { gap: 18px 0; }
    .r-stat-cell { flex: 1 1 46%; }
    .r-stat-cell .cell-num { font-size: 38px; }
    .r-flow { flex-wrap: wrap; gap: 14px; }
    .r-flow-step { flex: 1 1 46%; border-left: 1px solid rgba(255, 45, 85, .16); }
    .r-flow-step::after { display: none; }
    .r-honor-grid { grid-template-columns: repeat(2, 1fr); }
    .r-honor-fig mip-img img { height: 180px !important; }
    .r-app { flex-direction: column; gap: 24px; }
    .r-app-figs { flex-wrap: wrap; }
    .r-hex-grid { grid-template-columns: repeat(2, 1fr); }
    .r-news-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
    .r-logo .logo-word { font-size: 17px; }
    .r-hero { padding: 34px 0 0; }
    .r-hero-title { font-size: 26px; }
    .r-hero-btns { flex-direction: column; gap: 10px; }
    .r-hero-btns .r-btn { width: 100%; text-align: center; }
    .r-tick { flex: 1 1 100%; margin-right: 0; }
    .r-srv-grid { grid-template-columns: 1fr; }
    .r-game-grid { grid-template-columns: 1fr; }
    .r-game-card .gc-fig mip-img img { height: 170px !important; }
    .r-stat-cell { flex: 1 1 100%; }
    .r-flow-step { flex: 1 1 100%; }
    .r-honor-grid { grid-template-columns: 1fr; }
    .r-honor-fig mip-img img { height: 160px !important; }
    .r-app-figs { flex-direction: column; align-items: center; }
    .r-app-figs .af-item { flex: 0 1 auto; width: 100%; }
    .r-app-figs .af-item mip-img img { height: 300px !important; }
    .r-hex-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 10px; }
    .r-cta-btns { flex-direction: column; align-items: center; }
    .r-cta-btns .r-btn { width: 100%; text-align: center; }
    .r-news-card .nc-main b { white-space: normal; }
    /* 弹窗压缩单行 + sticky 按钮（ty-002 移动端溢出教训直接内置） */
    .r-popup { padding: 0 16px 18px; }
    .r-popup-head { margin: 0 -16px 14px; padding: 16px 16px 12px; }
    .r-popup-title { font-size: 18px; }
    .r-popup-sub { font-size: 12px; }
    .r-popup-grid { grid-template-columns: 1fr; gap: 6px; margin-bottom: 14px; }
    .r-popup-item { padding: 8px 10px; gap: 8px; }
    .r-popup-item .pi-txt span { display: none; }
    .r-popup-item .pi-txt b { font-size: 13px; }
    .r-popup-btns { position: sticky; bottom: 0; padding-top: 8px; background: linear-gradient(180deg, rgba(11, 4, 9, 0), #0b0409 26%); }
    .r-popup-btn { padding: 11px 16px; font-size: 15px; }
}


/* ---------- 内页通用（面包屑/盒子/列表/标签/分页） ---------- */
.ty-crumb {
    padding: 18px 0 !important;
    margin: 0;
    list-style: none;
    font-size: 13px;
}

.ty-crumb a { color: #85626d; }
.ty-crumb a:hover { color: #ff2d55; }

.ty-cat-banner {
    padding: 26px 22px;
    margin-bottom: 26px;
    border: 1px solid rgba(255, 45, 85, .18);
    background: rgba(255, 45, 85, .03);
    clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.ty-cat-banner h1 { margin: 0 0 4px; font-size: 26px; font-weight: 900; color: #fff0f3; }

.ty-cat-banner .cat-en {
    color: #5d424c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
}

.ty-box {
    margin-bottom: 22px;
    border: 1px solid rgba(255, 45, 85, .14);
    background: rgba(20, 8, 13, .55);
}

.ty-box-head {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 45, 85, .14);
}

.ty-box-head h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: #ff2d55;
    letter-spacing: 1px;
}

.ty-box-body { padding: 18px; }

.ty-list-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px dashed rgba(255, 45, 85, .12);
}

.ty-list-item .item-media { flex: 0 0 168px; }

.ty-list-item .item-media mip-img img {
    width: 100% !important;
    height: 104px !important;
    object-fit: cover;
    border: 1px solid rgba(255, 45, 85, .15);
}

.ty-list-item .item-content { flex: 1 1 auto; min-width: 0; }

.ty-list-item h4 { margin: 0 0 8px; font-size: 16px; line-height: 1.5; }

.ty-list-item h4 a { color: #fff0f3; }
.ty-list-item h4 a:hover { color: #ff2d55; }

.ty-list-item .description {
    margin: 0 0 8px;
    color: #85626d;
    font-size: 13px;
    line-height: 1.8;
}

.ty-list-item .item-meta { margin: 0; color: #5d424c; font-size: 12px; }

.ty-side-list {
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: gside;
}

.ty-side-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px dashed rgba(255, 45, 85, .1);
}

.ty-side-list li a {
    flex: 1 1 auto;
    min-width: 0;
    color: #b08a95;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ty-side-list li a:hover { color: #ff2d55; }

.ty-side-list .rank {
    flex: 0 0 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border: 1px solid rgba(255, 45, 85, .3);
    color: #ff2d55;
    font-size: 12px;
    font-weight: 800;
    counter-increment: gside;
}

.ty-side-list .rank::before { content: counter(gside); }

.ty-side-list li:nth-child(-n+3) .rank {
    background: #ff2d55;
    color: #33060f;
}

.ty-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ty-tags-cloud li a {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid rgba(255, 45, 85, .22);
    color: #b08a95;
    font-size: 13px;
    background: rgba(255, 45, 85, .03);
}

.ty-tags-cloud li a:hover {
    color: #33060f;
    background: #ff2d55;
    border-color: #ff2d55;
    text-shadow: none;
}

.ty-pagination {
    padding: 18px 0 6px;
    text-align: center;
}

.ty-pagination .pagination { justify-content: center; }

.ty-pagination li a,
.ty-pagination li span {
    color: #b08a95 !important;
    background: rgba(20, 8, 13, .8) !important;
    border: 1px solid rgba(255, 45, 85, .2) !important;
}

.ty-pagination li.active a,
.ty-pagination li.active span {
    color: #33060f !important;
    background: #ff2d55 !important;
    border-color: #ff2d55 !important;
}

.ty-img-card {
    display: block;
    position: relative;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 45, 85, .15);
    background: rgba(20, 8, 13, .6);
    overflow: hidden;
}

.ty-img-card mip-img img {
    width: 100% !important;
    height: 150px !important;
    object-fit: cover;
    transition: transform .25s ease;
}

.ty-img-card:hover mip-img img { transform: scale(1.04); }

.ty-img-card .img-card-title {
    margin: 0;
    padding: 10px 12px;
    color: #fff0f3;
    font-size: 14px;
    border-top: 1px solid rgba(255, 45, 85, .12);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ---------- 详情页 ---------- */
.ty-detail-title { margin: 0 0 12px; font-size: 26px; font-weight: 900; color: #fff0f3; line-height: 1.5; }

.ty-detail-info {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding-bottom: 14px;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 45, 85, .16);
    color: #85626d;
    font-size: 13px;
}

.ty-detail-tags a {
    margin-right: 8px;
    padding: 2px 10px;
    border: 1px solid rgba(255, 45, 85, .3);
    color: #ff6b8a;
    font-size: 12px;
}

.ty-detail-tags a:hover { color: #33060f; background: #ff2d55; text-shadow: none; }

.ty-guess-title {
    margin: 30px 0 6px;
    padding-left: 12px;
    border-left: 3px solid #ff2d55;
    color: #fff0f3;
    font-size: 16px;
    font-weight: 800;
}

.ty-updown {
    display: flex;
    gap: 16px;
    margin-top: 26px;
}

.ty-updown .updown-item {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid rgba(255, 45, 85, .14);
    background: rgba(255, 45, 85, .03);
}

.ty-updown .updown-item p { margin: 0 0 4px; color: #5d424c; font-size: 12px; letter-spacing: 1px; }

.ty-updown .updown-item a {
    display: block;
    color: #b08a95;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ty-tag-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 16px;
    margin-bottom: 8px;
    border-bottom: 1px dashed rgba(255, 45, 85, .16);
}

.ty-tag-header .tag-badge {
    flex: 0 0 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid rgba(255, 45, 85, .35);
    color: #ff2d55;
    font-size: 20px;
    font-weight: 900;
}

.ty-tag-header h2 { margin: 0 0 6px; font-size: 22px; color: #fff0f3; }

.ty-tag-header p { margin: 0; color: #85626d; font-size: 13px; }

.ty-search-head h1 { margin: 0 0 4px; font-size: 22px; font-weight: 900; color: #f0fff8; }

.ty-search-head .search-tip { color: #85626d; font-size: 13px; margin: 0; }

.ty-empty { padding: 40px 0; text-align: center; color: #5d424c; font-size: 14px; }

.ty-empty .empty-icon {
    display: block;
    margin-bottom: 10px;
    color: #ff2d55;
    font-size: 30px;
    font-weight: 900;
}

/* ---------- 正文排版 ---------- */
.mipcms-detail-body { color: #ecc8d2; font-size: 15px; line-height: 2; }

.mipcms-detail-body p { margin: 0 0 14px; }

.mipcms-detail-body h2, .mipcms-detail-body h3 {
    margin: 24px 0 12px;
    color: #fff0f3;
    font-weight: 800;
}

.mipcms-detail-body mip-img { margin: 10px 0; }

.mipcms-detail-body mip-img img { border: 1px solid rgba(255, 45, 85, .12); }
