/* ============================================================
   ty-001 电竞体育游戏企业模板 - 主样式表
   暗黑电竞风：深空蓝黑底 + 霓虹青蓝渐变 + 竞技光效
   ============================================================ */

/* ---------- 基础 ---------- */
[v-cloak] { display: none; }

body {
    font-family: "Microsoft YaHei", "PingFang SC", Tahoma, Helvetica, sans-serif;
    background-color: #0a0e1c;
    background-image:
        radial-gradient(ellipse at 20% -10%, rgba(47, 123, 255, .16), transparent 55%),
        radial-gradient(ellipse at 85% 0%, rgba(139, 92, 246, .12), transparent 50%),
        linear-gradient(180deg, #0a0e1c 0%, #0c1124 100%);
    background-attachment: fixed;
    color: #e8ecff;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

a { color: #9db4ff; text-decoration: none; transition: color .15s ease, text-shadow .15s ease; }
a:hover { color: #00e0ff; text-decoration: none; text-shadow: 0 0 12px rgba(0, 224, 255, .45); }

img { max-width: 100%; }

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

/* ---------- 顶部导航 ---------- */
.ty-header {
    background: linear-gradient(180deg, rgba(13, 18, 38, .98), rgba(10, 14, 28, .92));
    border-bottom: 1px solid rgba(96, 130, 255, .18);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .55);
}

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

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

.ty-logo .logo-badge {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-right: 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, #00e0ff, #2f7bff 55%, #8b5cf6);
    box-shadow: 0 0 18px rgba(0, 224, 255, .5);
    position: relative;
    top: 8px;
}

.ty-logo .logo-word {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
    background: linear-gradient(90deg, #00e0ff, #6ea8ff, #b48bff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

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

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

.ty-nav > li > a:hover,
.ty-nav > li.active > a {
    color: #ffffff;
    border-bottom-color: #00e0ff;
    text-shadow: 0 0 14px rgba(0, 224, 255, .55);
}

.ty-nav .ty-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    padding: 6px 0;
    margin: 0;
    list-style: none;
    background: #10173a;
    border: 1px solid rgba(96, 130, 255, .25);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .6);
    z-index: 99;
    display: none;
}

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

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

.ty-nav .ty-dropdown li a:hover {
    color: #00e0ff;
    background: rgba(0, 224, 255, .08);
}

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

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

/* MIP 运行时会给 mip-form 包一层内层 form(display:block)，会把输入框和按钮上下叠放，强制横向 */
.ty-search form {
    display: flex;
    align-items: center;
}

.ty-search input {
    width: 128px;
    height: 34px;
    padding: 0 12px;
    background: rgba(20, 28, 60, .9);
    border: 1px solid rgba(96, 130, 255, .28);
    border-radius: 17px 0 0 17px;
    color: #e8ecff;
    outline: none;
    font-size: 13px;
}

.ty-search input::placeholder { color: #5f6c99; }

.ty-search .ty-search-btn {
    height: 34px;
    padding: 0 16px;
    border: none;
    border-radius: 0 17px 17px 0;
    background: linear-gradient(90deg, #00e0ff, #2f7bff);
    color: #04122c;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}

.ty-admin-link {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid rgba(96, 130, 255, .35);
    border-radius: 16px;
    color: #8fa2d6;
    font-size: 13px;
}

.ty-admin-link:hover {
    color: #00e0ff;
    border-color: #00e0ff;
    box-shadow: 0 0 14px rgba(0, 224, 255, .35);
}

/* ---------- 首页 HERO ---------- */
.ty-hero {
    position: relative;
    margin-bottom: 26px;
    padding: 52px 0 46px;
    background:
        linear-gradient(120deg, rgba(10, 14, 28, .92) 30%, rgba(13, 20, 48, .55) 70%),
        linear-gradient(135deg, #12306e 0%, #1b2a6b 45%, #3b1f7a 100%);
    overflow: hidden;
    border-bottom: 1px solid rgba(96, 130, 255, .2);
}

.ty-hero::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, #00e0ff, #2f7bff, #8b5cf6, #00e0ff);
    background-size: 200% 100%;
}

.ty-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 130px;
    background: linear-gradient(180deg, transparent, rgba(10, 14, 28, .9));
    pointer-events: none;
}

.ty-hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.ty-hero-copy { flex: 1 1 380px; min-width: 300px; position: relative; z-index: 2; }

.ty-hero-tag {
    display: inline-block;
    padding: 4px 14px;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #00e0ff;
    border: 1px solid rgba(0, 224, 255, .5);
    border-radius: 14px;
    background: rgba(0, 224, 255, .08);
}

.ty-hero-title {
    margin: 0 0 10px;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.25;
    color: #ffffff;
    text-shadow: 0 0 26px rgba(47, 123, 255, .55);
}

.ty-hero-title .grad {
    background: linear-gradient(90deg, #00e0ff, #7aa5ff, #b48bff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ty-hero-sub {
    margin: 0 0 22px;
    color: #9fb0e0;
    font-size: 15px;
    line-height: 1.8;
}

.ty-hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

.ty-btn {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 22px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.ty-btn-main {
    background: linear-gradient(90deg, #00e0ff, #2f7bff);
    color: #05122b;
    box-shadow: 0 0 22px rgba(0, 224, 255, .4);
}

/* 立即游玩按钮：醒目橙金渐变（游戏 CTA 专用） */
.ty-btn-play {
    background: linear-gradient(90deg, #ff9d2f, #ff4d4d);
    color: #2b0a00 !important;
    box-shadow: 0 0 22px rgba(255, 120, 40, .45);
    cursor: pointer;
    border: none;
}

.ty-btn-play:hover {
    color: #2b0a00 !important;
    filter: brightness(1.12);
    text-shadow: none !important;
}

.ty-btn-sm { padding: 6px 18px; font-size: 13px; border-radius: 18px; }

.ty-btn-block { display: block; width: 100%; text-align: center; margin-top: 8px; }

.ty-btn-main:hover {
    color: #05122b;
    box-shadow: 0 0 30px rgba(0, 224, 255, .75);
    text-shadow: none;
}

.ty-btn-ghost {
    border: 1px solid rgba(154, 175, 255, .45);
    color: #c9d4f6;
}

.ty-btn-ghost:hover { border-color: #00e0ff; color: #00e0ff; }

.ty-hero-art { flex: 0 1 420px; position: relative; z-index: 2; }

.ty-hero-art .hero-img-main {
    border-radius: 14px;
    border: 1px solid rgba(96, 130, 255, .4);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .65), 0 0 34px rgba(47, 123, 255, .35);
    overflow: hidden;
}

.ty-hero-art .hero-img-main mip-img,
.ty-hero-art .hero-img-main img { display: block; width: 100%; }

.ty-hero-stats {
    display: flex;
    gap: 34px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.ty-hero-stat .num {
    font-size: 24px;
    font-weight: 900;
    color: #00e0ff;
    text-shadow: 0 0 16px rgba(0, 224, 255, .5);
}

.ty-hero-stat .lab { color: #8291c4; font-size: 12px; letter-spacing: 1px; }

/* ---------- 通用版块 ---------- */
.ty-section { margin-bottom: 30px; }

.ty-sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.ty-sec-title {
    position: relative;
    margin: 0;
    padding-left: 14px;
    font-size: 20px;
    font-weight: 800;
    color: #f2f5ff;
    letter-spacing: 1px;
}

.ty-sec-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, #00e0ff, #2f7bff, #8b5cf6);
    box-shadow: 0 0 12px rgba(0, 224, 255, .6);
}

.ty-sec-title .en {
    margin-left: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #55639a;
    letter-spacing: 2px;
}

.ty-sec-more { font-size: 13px; color: #7d8cbd; }
.ty-sec-more:hover { color: #00e0ff; }

/* ---------- 面板盒子 ---------- */
.ty-box {
    background: linear-gradient(180deg, rgba(18, 26, 54, .96), rgba(14, 20, 44, .96));
    border: 1px solid rgba(96, 130, 255, .16);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    margin-bottom: 20px;
    overflow: hidden;
}

.ty-box-head {
    padding: 13px 18px;
    border-bottom: 1px solid rgba(96, 130, 255, .14);
    background: linear-gradient(90deg, rgba(0, 224, 255, .07), transparent 60%);
}

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

.ty-box-head h3::before {
    content: "▪ ";
    color: #00e0ff;
    text-shadow: 0 0 10px rgba(0, 224, 255, .7);
}

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

/* ---------- 游戏专区 ---------- */
.ty-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ty-game-card {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(96, 130, 255, .2);
    background: #10173a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
}

.ty-game-card mip-img,
.ty-game-card img {
    display: block;
    width: 100%;
    transition: transform .25s ease;
}

.ty-game-card:hover mip-img,
.ty-game-card:hover img { transform: scale(1.06); }

.ty-game-card .ty-game-name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px 12px 10px;
    background: linear-gradient(180deg, transparent, rgba(5, 9, 22, .92));
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    letter-spacing: 2px;
}

.ty-game-card .ty-game-name::after {
    content: "";
    display: block;
    width: 26px;
    height: 2px;
    margin: 6px auto 0;
    background: linear-gradient(90deg, #00e0ff, #8b5cf6);
    border-radius: 1px;
}

/* ---------- 豪门战队 ---------- */
.ty-team-strip {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}

.ty-team-item {
    display: block;
    text-align: center;
    padding: 12px 4px 10px;
    border-radius: 10px;
    border: 1px solid rgba(96, 130, 255, .16);
    background: rgba(16, 23, 58, .75);
    transition: border-color .15s ease, box-shadow .15s ease;
}

.ty-team-item:hover {
    border-color: rgba(0, 224, 255, .55);
    box-shadow: 0 0 18px rgba(0, 224, 255, .25);
}

.ty-team-item mip-img,
.ty-team-item img {
    display: block;
    width: 44px;
    height: 44px;
    margin: 0 auto 6px;
    object-fit: contain;
}

.ty-team-item .team-name {
    color: #93a0c8;
    font-size: 12px;
}

.ty-team-item:hover .team-name { color: #00e0ff; }

/* ---------- 焦点推荐 ---------- */
.ty-focus-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
}

.ty-focus-item {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(96, 130, 255, .22);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .45);
    background: #10173a;
}

.ty-focus-item.ty-focus-main {
    grid-row: 1 / 3;
    grid-column: 1;
}

.ty-focus-item mip-img,
.ty-focus-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.ty-focus-item:hover mip-img,
.ty-focus-item:hover img { transform: scale(1.05); }

.ty-focus-item .focus-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 34px 14px 12px;
    background: linear-gradient(180deg, transparent, rgba(4, 8, 20, .94));
}

.ty-focus-item .focus-caption h3,
.ty-focus-item .focus-caption h4 {
    margin: 4px 0 0;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.45;
}

.ty-focus-item.ty-focus-main .focus-caption h3 { font-size: 19px; }

.ty-focus-item .focus-caption time {
    font-size: 12px;
    color: #00e0ff;
    letter-spacing: 1px;
}

/* ---------- 文章列表项（block/article-list） ---------- */
.ty-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(96, 130, 255, .14);
}

.ty-list-item:last-child { border-bottom: none; }

.ty-list-item .item-media {
    flex: 0 0 168px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(96, 130, 255, .2);
}

.ty-list-item .item-media mip-img,
.ty-list-item .item-media img {
    display: block;
    width: 100%;
    transition: transform .25s ease;
}

.ty-list-item:hover .item-media mip-img,
.ty-list-item:hover .item-media img { transform: scale(1.06); }

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

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

.ty-list-item h4 a { color: #eef2ff; }
.ty-list-item h4 a:hover { color: #00e0ff; }

.ty-list-item .description {
    margin: 0 0 8px;
    color: #8b96c2;
    font-size: 13px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ty-list-item .item-meta {
    display: flex;
    gap: 14px;
    color: #5f6c99;
    font-size: 12px;
}

.ty-list-item .item-meta .ty-tag-hot {
    color: #ff5c7a;
    font-weight: 700;
}

/* ---------- 图片网格（articleImg 栏目风格） ---------- */
.ty-img-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.ty-img-card {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(96, 130, 255, .2);
    background: #10173a;
}

.ty-img-card mip-img,
.ty-img-card img {
    display: block;
    width: 100%;
    transition: transform .25s ease;
}

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

.ty-img-card .img-card-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 12px 10px;
    margin: 0;
    background: linear-gradient(180deg, transparent, rgba(4, 8, 20, .94));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

/* ---------- 侧栏组件 ---------- */
.ty-side-list { list-style: none; padding: 0; margin: 0; counter-reset: tyrank; }

.ty-side-list li {
    counter-increment: tyrank;
}

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

.ty-side-list li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(96, 130, 255, .12);
}

.ty-side-list li:last-child { border-bottom: none; }

.ty-side-list .rank {
    flex: 0 0 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
    color: #7d8cbd;
    background: rgba(96, 130, 255, .12);
}

.ty-side-list li:nth-child(1) .rank { background: linear-gradient(135deg, #ff5c7a, #ff8f5c); color: #fff; }
.ty-side-list li:nth-child(2) .rank { background: linear-gradient(135deg, #00e0ff, #2f7bff); color: #05122b; }
.ty-side-list li:nth-child(3) .rank { background: linear-gradient(135deg, #8b5cf6, #d06bff); color: #fff; }

.ty-side-list a {
    flex: 1;
    color: #c9d4f6;
    font-size: 14px;
    line-height: 1.55;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ty-side-list a:hover { color: #00e0ff; }

.ty-side-list .side-date { color: #5f6c99; font-size: 12px; }

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

.ty-tags-cloud li a {
    display: inline-block;
    padding: 5px 13px;
    border-radius: 15px;
    border: 1px solid rgba(96, 130, 255, .25);
    background: rgba(18, 26, 58, .8);
    color: #9db4ff;
    font-size: 13px;
}

.ty-tags-cloud li a:hover {
    color: #05122b;
    background: linear-gradient(90deg, #00e0ff, #2f7bff);
    border-color: transparent;
    text-shadow: none;
}

/* ---------- 面包屑 ---------- */
.ty-crumb {
    padding: 14px 0;
    font-size: 13px;
    color: #7d8cbd;
}

.ty-crumb a { color: #9db4ff; }
.ty-crumb a:hover { color: #00e0ff; }

.ty-crumb .sep { margin: 0 8px; color: #3d4a78; }

/* ---------- 栏目标题横幅 ---------- */
.ty-cat-banner {
    position: relative;
    padding: 26px 24px;
    margin-bottom: 20px;
    border-radius: 12px;
    background:
        linear-gradient(115deg, rgba(13, 20, 48, .96) 35%, rgba(20, 32, 80, .8)),
        linear-gradient(135deg, #12306e, #3b1f7a);
    border: 1px solid rgba(96, 130, 255, .22);
    overflow: hidden;
}

.ty-cat-banner::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 224, 255, .18), transparent 70%);
}

.ty-cat-banner h1 {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
}

.ty-cat-banner .cat-en {
    color: #55639a;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
}

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

.ty-detail-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    padding-bottom: 14px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(96, 130, 255, .16);
    color: #7d8cbd;
    font-size: 13px;
}

.ty-detail-info time { color: #00e0ff; }

.ty-detail-tags { display: inline-flex; flex-wrap: wrap; gap: 8px; }

.ty-detail-tags a {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 13px;
    border: 1px solid rgba(139, 92, 246, .4);
    background: rgba(139, 92, 246, .1);
    color: #b9a2ff;
    font-size: 12px;
}

.ty-detail-tags a:hover { border-color: #b48bff; color: #d6c5ff; }

.mipcms-detail-body {
    color: #ccd5f5;
    font-size: 15px;
    line-height: 2;
    word-wrap: break-word;
}

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

.mipcms-detail-body h1, .mipcms-detail-body h2, .mipcms-detail-body h3,
.mipcms-detail-body h4, .mipcms-detail-body h5 {
    color: #f0f3ff;
    font-weight: 800;
    margin: 26px 0 14px;
}

.mipcms-detail-body mip-img, .mipcms-detail-body img {
    max-width: 100%;
    border-radius: 10px;
    margin: 10px auto;
    display: block;
    border: 1px solid rgba(96, 130, 255, .18);
}

.mipcms-detail-body blockquote {
    margin: 16px 0;
    padding: 12px 18px;
    border-left: 3px solid #00e0ff;
    background: rgba(0, 224, 255, .06);
    border-radius: 0 8px 8px 0;
    color: #aebce8;
}

.mipcms-detail-body a { border-bottom: 1px dashed rgba(0, 224, 255, .4); }

.mipcms-detail-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0;
}

.mipcms-detail-body table td, .mipcms-detail-body table th {
    border: 1px solid rgba(96, 130, 255, .22);
    padding: 8px 12px;
}

/* 上一篇下一篇 */
.ty-updown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 22px 0;
}

.ty-updown .updown-item {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(96, 130, 255, .18);
    background: rgba(16, 23, 58, .7);
}

.ty-updown .updown-item p {
    margin: 0 0 6px;
    color: #00e0ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.ty-updown .updown-item a { color: #c9d4f6; font-size: 14px; line-height: 1.5; }
.ty-updown .updown-item a:hover { color: #00e0ff; }

/* 猜你喜欢标题 */
.ty-guess-title {
    margin: 26px 0 12px;
    font-size: 16px;
    font-weight: 800;
    color: #eef2ff;
    padding-left: 12px;
    border-left: 4px solid #8b5cf6;
}

/* ---------- 分页 ---------- */
.ty-pagination { text-align: center; margin: 20px 0 6px; }

.ty-pagination ul,
.mip-page-pagination ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 6px;
}

.ty-pagination li a,
.ty-pagination li span,
.mip-page-pagination li a,
.mip-page-pagination li span {
    display: inline-block;
    min-width: 34px;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(96, 130, 255, .25);
    background: rgba(18, 26, 58, .85);
    color: #9db4ff;
    font-size: 13px;
    line-height: 1.5;
}

.ty-pagination li a:hover,
.mip-page-pagination li a:hover {
    color: #05122b;
    background: linear-gradient(90deg, #00e0ff, #2f7bff);
    border-color: transparent;
    text-shadow: none;
}

.ty-pagination li.active span,
.mip-page-pagination li.active span {
    color: #05122b;
    background: linear-gradient(90deg, #00e0ff, #2f7bff);
    border-color: transparent;
    font-weight: 800;
}

.ty-pagination li.disabled span { opacity: .45; }

/* ---------- 页脚 ---------- */
.ty-footer {
    margin-top: 40px;
    padding: 26px 0 22px;
    background: linear-gradient(180deg, rgba(10, 14, 28, .4), rgba(7, 10, 22, .98));
    border-top: 1px solid rgba(96, 130, 255, .18);
}

/* 页脚企业信息条 */
.ty-foot-co {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 18px;
    margin-bottom: 6px;
    border-bottom: 1px dashed rgba(96, 130, 255, .18);
}

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

.ty-foot-co .co-intro p {
    margin: 0;
    color: #8b96c2;
    font-size: 13px;
}

.ty-foot-co .co-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #8b96c2;
    font-size: 13px;
}

.ty-foot-co .co-contact li { padding: 2px 0; }

.ty-foot-co .co-contact li:before {
    content: "\25B8";
    margin-right: 8px;
    color: #00e0ff;
}

.ty-footer .ty-friend {
    margin-bottom: 16px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    align-items: center;
}

.ty-footer .ty-friend .friend-label {
    color: #55639a;
    font-size: 13px;
    font-weight: 700;
}

.ty-footer .ty-friend a { color: #7d8cbd; font-size: 13px; }
.ty-footer .ty-friend a:hover { color: #00e0ff; }

.ty-footer .ty-copy {
    margin: 0;
    text-align: center;
    color: #55639a;
    font-size: 13px;
    line-height: 1.9;
}

.ty-footer .ty-copy a { color: #7d8cbd; }

/* ---------- 搜索页 ---------- */
.ty-search-head h1 {
    margin: 0 0 4px;
    font-size: 22px;
    font-weight: 900;
    color: #f0f3ff;
}

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

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

.ty-empty .empty-icon { font-size: 40px; display: block; margin-bottom: 12px; }

/* ---------- 标签页 ---------- */
.ty-tag-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(96, 130, 255, .16);
}

.ty-tag-header .tag-badge {
    flex: 0 0 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 14px;
    font-size: 26px;
    background: linear-gradient(135deg, rgba(0, 224, 255, .2), rgba(139, 92, 246, .2));
    border: 1px solid rgba(0, 224, 255, .35);
    color: #00e0ff;
    text-shadow: 0 0 14px rgba(0, 224, 255, .6);
}

.ty-tag-header h2 { margin: 0 0 6px; font-size: 20px; font-weight: 800; color: #f0f3ff; }
.ty-tag-header p { margin: 0; color: #8b96c2; font-size: 13px; }

/* ---------- 关于我们（企业站） ---------- */
.ty-about-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.ty-about-copy { flex: 1 1 55%; }

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

.ty-about-copy strong { color: #00e0ff; font-weight: 700; }

.ty-about-points {
    list-style: none;
    padding: 0;
    margin: 18px 0 22px;
}

.ty-about-points li {
    position: relative;
    padding: 6px 0 6px 26px;
    color: #c9d4f6;
    font-size: 14px;
}

.ty-about-points li:before {
    content: "\2714";
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    font-size: 11px;
    color: #05122b;
    background: linear-gradient(135deg, #00e0ff, #2f7bff);
    box-shadow: 0 0 10px rgba(0, 224, 255, .5);
}

.ty-about-fig {
    flex: 0 0 42%;
    display: flex;
}

.ty-about-fig mip-img {
    flex: 1 1 auto;
    min-width: 0;
}

.ty-about-fig mip-img,
.ty-about-fig img {
    border-radius: 14px;
    border: 1px solid rgba(96, 130, 255, .25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

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

/* ---------- 核心业务（企业站） ---------- */
.ty-srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ty-srv-card {
    position: relative;
    padding: 26px 22px 22px;
    border: 1px solid rgba(96, 130, 255, .18);
    border-radius: 14px;
    background: rgba(16, 23, 58, .55);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.ty-srv-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 224, 255, .5);
    box-shadow: 0 12px 32px rgba(0, 90, 190, .28);
}

.ty-srv-card .srv-no {
    display: block;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #00e0ff, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: .85;
}

.ty-srv-card h3 {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 800;
    color: #f0f3ff;
}

.ty-srv-card p {
    margin: 0;
    color: #8b96c2;
    font-size: 13px;
    line-height: 1.9;
}

/* ---------- 资质荣誉（企业站） ---------- */
.ty-honor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ty-honor-item {
    padding: 12px;
    border: 1px solid rgba(96, 130, 255, .2);
    border-radius: 12px;
    background: rgba(16, 23, 58, .55);
    transition: transform .2s ease, border-color .2s ease;
}

.ty-honor-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 224, 255, .45);
}

.ty-honor-item mip-img,
.ty-honor-item img { border-radius: 8px; }

/* ---------- 合作伙伴（企业站） ---------- */
.ty-sec-note {
    margin: 0;
    color: #8b96c2;
    font-size: 13px;
    letter-spacing: 1px;
}

/* ---------- 合作CTA（企业站） ---------- */
.ty-cta {
    margin: 40px 0 10px;
    padding: 46px 0;
    border-radius: 18px;
    background:
        radial-gradient(ellipse at 15% 0%, rgba(0, 224, 255, .18), transparent 55%),
        radial-gradient(ellipse at 85% 100%, rgba(139, 92, 246, .16), transparent 55%),
        linear-gradient(135deg, #101a3f, #141a44);
    border: 1px solid rgba(0, 224, 255, .28);
    box-shadow: 0 14px 44px rgba(0, 20, 60, .5);
    text-align: center;
}

.ty-cta-inner h2 {
    margin: 0 0 12px;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #00e0ff, #6ea8ff, #b48bff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ty-cta-inner p {
    margin: 0 0 22px;
    color: #aab6de;
    font-size: 14px;
}

.cta-btns {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ---------- 栏目中心下拉（header） ---------- */
.ty-nav .ty-nav-hasdrop > a .drop-caret {
    display: inline-block;
    margin-left: 4px;
    font-size: 10px;
    transition: transform .2s ease;
}

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

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

.ty-nav .ty-dropdown-sub { padding-left: 14px; margin: 0; }

.ty-nav .ty-dropdown-sub li a { color: #7f8cbd; font-size: 12px; }

/* ---------- 游戏产品区 ---------- */
.ty-prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.ty-prod-card {
    padding: 18px 16px 16px;
    text-align: center;
    border: 1px solid rgba(96, 130, 255, .18);
    border-radius: 14px;
    background: rgba(16, 23, 58, .55);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.ty-prod-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 140, 60, .55);
    box-shadow: 0 12px 32px rgba(180, 60, 0, .25);
}

.ty-prod-card .prod-img mip-img,
.ty-prod-card .prod-img img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 12px;
}

.ty-prod-card h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 800;
    color: #f0f3ff;
}

.ty-prod-card p {
    margin: 0 0 12px;
    color: #8b96c2;
    font-size: 12px;
    line-height: 1.7;
}

/* ---------- 核心优势区 ---------- */
.ty-adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.ty-adv-card {
    padding: 26px 20px;
    border: 1px solid rgba(96, 130, 255, .18);
    border-radius: 14px;
    background: rgba(16, 23, 58, .55);
    text-align: center;
    transition: transform .2s ease, border-color .2s ease;
}

.ty-adv-card:hover { transform: translateY(-4px); border-color: rgba(0, 224, 255, .45); }

.ty-adv-card .adv-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    border-radius: 14px;
    font-size: 24px;
    color: #00e0ff;
    background: linear-gradient(135deg, rgba(0, 224, 255, .18), rgba(139, 92, 246, .18));
    border: 1px solid rgba(0, 224, 255, .35);
    text-shadow: 0 0 14px rgba(0, 224, 255, .6);
}

.ty-adv-card h3 { margin: 0 0 8px; font-size: 16px; font-weight: 800; color: #f0f3ff; }
.ty-adv-card p { margin: 0; color: #8b96c2; font-size: 13px; line-height: 1.8; }

/* ---------- APP下载区 ---------- */
.ty-app-sec {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    border-radius: 18px;
    border: 1px solid rgba(255, 140, 60, .28);
    background:
        radial-gradient(ellipse at 10% 0%, rgba(255, 140, 40, .14), transparent 55%),
        radial-gradient(ellipse at 90% 100%, rgba(47, 123, 255, .14), transparent 55%),
        linear-gradient(135deg, #12183a, #171b45);
    box-shadow: 0 14px 44px rgba(0, 20, 60, .5);
}

.ty-app-sec .app-copy { flex: 1 1 55%; }

.ty-app-sec .app-copy h2 {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ff9d2f, #ffd36e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ty-app-sec .app-copy > p {
    margin: 0 0 10px;
    color: #aab6de;
    font-size: 14px;
    line-height: 1.9;
}

.ty-app-sec .app-fig {
    flex: 1 1 45%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ty-app-sec .app-fig mip-img,
.ty-app-sec .app-fig img {
    border-radius: 14px;
    border: 1px solid rgba(255, 180, 100, .25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

/* ---------- 服务流程区 ---------- */
.ty-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.ty-flow-step {
    position: relative;
    padding: 24px 20px;
    border: 1px dashed rgba(96, 130, 255, .3);
    border-radius: 14px;
    background: rgba(16, 23, 58, .4);
    text-align: center;
}

.ty-flow-step .flow-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 900;
    color: #05122b;
    background: linear-gradient(135deg, #00e0ff, #2f7bff);
    box-shadow: 0 0 16px rgba(0, 224, 255, .5);
}

.ty-flow-step h3 { margin: 0 0 8px; font-size: 16px; font-weight: 800; color: #f0f3ff; }
.ty-flow-step p { margin: 0; color: #8b96c2; font-size: 13px; line-height: 1.8; }

/* 商务合作卡片 */
.ty-box-contact .ty-box-body p {
    margin: 0 0 6px;
    color: #8b96c2;
    font-size: 13px;
    line-height: 1.8;
}

/* ---------- 新闻中心（最新动态） ---------- */
.ty-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.ty-news-card {
    border: 1px solid rgba(96, 130, 255, .18);
    border-radius: 14px;
    background: rgba(16, 23, 58, .55);
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.ty-news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 224, 255, .5);
    box-shadow: 0 12px 30px rgba(0, 224, 255, .12);
}

.ty-news-card .news-fig {
    position: relative;
    display: block;
}

/* 游戏图可能是竖图，统一高度封顶裁剪，防止卡片高度爆炸 */
.ty-news-card .news-fig mip-img img {
    width: 100% !important;
    height: 170px !important;
    object-fit: cover;
}

.ty-news-card .news-date {
    position: absolute;
    left: 12px;
    top: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, #00e0ff, #2f7bff);
    color: #04122c;
    line-height: 1.25;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .45);
}

.ty-news-card .news-date b { font-size: 18px; font-weight: 900; }
.ty-news-card .news-date i { font-style: normal; font-size: 11px; font-weight: 700; }

.ty-news-card .news-body { padding: 14px 16px 16px; }

.ty-news-card .news-body h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
}

.ty-news-card .news-body h3 a { color: #e8ecff; }
.ty-news-card .news-body h3 a:hover { color: #00e0ff; text-shadow: 0 0 12px rgba(0, 224, 255, .45); }

.ty-news-card .news-body p {
    margin: 0 0 10px;
    color: #8b96c2;
    font-size: 13px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ty-news-card .news-meta {
    display: flex;
    justify-content: space-between;
    color: #5f6c99;
    font-size: 12px;
    border-top: 1px solid rgba(96, 130, 255, .12);
    padding-top: 10px;
}

.ty-news-card .news-meta em { font-style: normal; color: #00e0ff; }

/* ---------- 首页功能速览弹窗 ---------- */
.ty-popup-mask {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(4, 8, 22, .82);
    box-sizing: border-box;
}

.ty-popup {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px 22px 20px;
    border: 1px solid rgba(0, 224, 255, .35);
    border-radius: 16px;
    background: linear-gradient(180deg, #141b40, #0c1130);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .7), 0 0 40px rgba(0, 224, 255, .12);
    box-sizing: border-box;
}

.ty-popup-close {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 34px;
    height: 34px;
    line-height: 32px;
    text-align: center;
    font-size: 22px;
    color: #7f8cbd;
    border: 1px solid rgba(96, 130, 255, .25);
    border-radius: 50%;
}

.ty-popup-close:hover {
    color: #00e0ff;
    border-color: #00e0ff;
}

.ty-popup-head { margin-bottom: 16px; }

.ty-popup-title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(90deg, #00e0ff, #6ea8ff, #b48bff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ty-popup-sub { margin: 0; color: #8b96c2; font-size: 13px; }

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

.ty-popup-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(96, 130, 255, .18);
    border-radius: 10px;
    background: rgba(16, 23, 58, .55);
}

.ty-popup-item .pi-ico {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #00e0ff, #2f7bff);
    color: #04122c;
    font-size: 13px;
    box-shadow: 0 0 12px rgba(0, 224, 255, .45);
}

.ty-popup-item .pi-txt { display: flex; flex-direction: column; min-width: 0; }

.ty-popup-item .pi-txt b {
    color: #e8ecff;
    font-size: 14px;
    margin-bottom: 2px;
}

.ty-popup-item .pi-txt span { color: #7f8cbd; font-size: 12px; line-height: 1.6; }

.ty-popup-btns { margin-top: 16px; text-align: center; }

.ty-popup-btn {
    display: inline-block;
    min-width: 220px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 24px;
    animation: tyPopupPulse 1.2s ease-in-out infinite;
}

.ty-popup-btn em { font-style: normal; font-family: Consolas, monospace; }

@keyframes tyPopupPulse {
    0%, 100% { box-shadow: 0 0 22px rgba(255, 120, 40, .45); }
    50% { box-shadow: 0 0 34px rgba(255, 150, 60, .75); }
}

.ty-popup-tip { margin: 10px 0 0; color: #5f6c99; font-size: 12px; }

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

/* 平板及以下：第一行 logo+立即游玩，导航整行横向滑动，下拉变全宽面板 */
@media (max-width: 991px) {
    .ty-game-grid { grid-template-columns: repeat(2, 1fr); }
    .ty-team-strip { grid-template-columns: repeat(4, 1fr); }
    .ty-focus-grid { grid-template-columns: 1fr 1fr; }
    .ty-focus-item.ty-focus-main { grid-row: auto; grid-column: 1 / 3; }
    .ty-img-grid { grid-template-columns: repeat(2, 1fr); }
    .ty-hero-title { font-size: 26px; }
    .ty-header-inner { flex-wrap: wrap; min-height: 56px; }
    .ty-logo { line-height: 56px; }
    .ty-nav { order: 3; flex: 1 1 100%; overflow-x: auto; scrollbar-width: none; }
    .ty-nav > li > a { padding: 0 10px; font-size: 13px; line-height: 44px; }
    .ty-nav .ty-dropdown { position: fixed; left: 12px; right: 12px; top: 110px; max-height: 56vh; overflow-y: auto; }
    .mipcms-main { padding-top: 100px !important; }
    .ty-about-grid { flex-direction: column; gap: 24px; }
    .ty-about-fig { flex: 1 1 auto; }
    .ty-srv-grid { grid-template-columns: repeat(2, 1fr); }
    .ty-honor-grid { grid-template-columns: repeat(2, 1fr); }
    .ty-prod-grid { grid-template-columns: repeat(2, 1fr); }
    .ty-adv-grid { grid-template-columns: repeat(2, 1fr); }
    .ty-flow-grid { grid-template-columns: repeat(2, 1fr); }
    .ty-app-sec { flex-direction: column; gap: 24px; padding: 28px; }
}

@media (max-width: 575px) {
    .ty-game-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .ty-team-strip { grid-template-columns: repeat(4, 1fr); }
    .ty-focus-grid { grid-template-columns: 1fr; }
    .ty-focus-item.ty-focus-main { grid-column: auto; }
    .ty-img-grid { grid-template-columns: 1fr; }
    .ty-list-item .item-media { flex-basis: 110px; }
    .ty-list-item h4 { font-size: 15px; }
    .ty-logo .logo-word { font-size: 17px; }
    .ty-hero { padding: 34px 0 30px; }
    .ty-hero-art { flex-basis: 100%; }
    .ty-about-fig mip-img img { height: 260px !important; }
    .ty-news-grid { grid-template-columns: 1fr; }
    .ty-news-card .news-fig mip-img img { height: 200px !important; }
    .ty-popup-grid { grid-template-columns: 1fr; }
    .ty-popup-btn { width: 100%; min-width: 0; }
    .ty-srv-grid { grid-template-columns: 1fr; }
    .ty-honor-grid { grid-template-columns: 1fr; }
    .ty-prod-grid { grid-template-columns: 1fr; }
    .ty-adv-grid { grid-template-columns: 1fr; }
    .ty-flow-grid { grid-template-columns: 1fr; }
    .ty-cta { padding: 32px 0; margin: 26px 0 6px; }
    .ty-cta-inner h2 { font-size: 21px; }
    .cta-btns .ty-btn { width: 100%; }
}
