.idx-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.65rem 0.85rem 2rem;
    color: #eee;
}
.idx-search {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 0.45rem;
}
.idx-search input {
    flex: 1;
    background: #141414;
    border: 1px solid #2a2a2a;
    color: #eee;
    border-radius: 8px;
    padding: 0.55rem 0.75rem;
    font-size: 0.95rem;
}
.idx-search button {
    background: #00A676;
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 0.55rem 1rem;
    font-weight: 600;
    cursor: pointer;
}
.idx-search-pager { margin-top: 1rem; display: flex; gap: 0.8rem; }
.idx-search-pager a { color: #00A676; text-decoration: none; }
.idx-sec-title {
    margin: 0 0 0.55rem;
    font-size: 1.15rem;
    color: #fff;
}
.idx-empty { color: #888; }
.idx-more {
    display: inline-block;
    margin-top: 0.7rem;
    color: #00A676;
    text-decoration: none;
    font-size: 0.9rem;
}
.idx-live { margin-bottom: 0.55rem; }
.idx-live-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
.idx-live-top a { color: #00A676; text-decoration: none; font-size: 0.85rem; }
.idx-live-dot {
    background: #c0392b;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}
.idx-marquee {
    overflow: hidden;
    border: 1px solid #222;
    border-radius: 10px;
    background: #111;
}
.idx-marquee-track {
    display: flex;
    gap: 0.55rem;
    width: max-content;
    animation: idx-marquee 32s linear infinite;
    padding: 0.45rem;
}
.idx-marquee:hover .idx-marquee-track { animation-play-state: paused; }
@keyframes idx-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.idx-live-card {
    flex: 0 0 auto;
    width: 250px;
    background: #141414;
    border: 1px solid #262626;
    border-radius: 10px;
    padding: 0.4rem 0.55rem 0.45rem;
    white-space: nowrap;
}
.idx-live-card.is-live { border-color: #c0392b; }
.idx-live-lg {
    display: flex;
    justify-content: space-between;
    gap: 0.4rem;
    font-size: 0.65rem;
    color: #888;
    margin-bottom: 0.2rem;
}
.idx-live-lg span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.idx-live-lg em { color: #c0392b; font-style: normal; font-weight: 700; flex-shrink: 0; }
.idx-live-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.3rem;
    align-items: center;
    font-size: 0.78rem;
    color: #fff;
    font-weight: 600;
}
.idx-live-home, .idx-live-away {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.idx-live-home { justify-content: flex-end; text-align: right; }
.idx-live-away { justify-content: flex-start; }
.idx-live-row img { width: 16px; height: 16px; object-fit: contain; flex-shrink: 0; }
.idx-live-row strong { color: #00A676; min-width: 2.6rem; text-align: center; }
.idx-hero {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0.65rem;
    margin: 0.7rem 0 0.9rem;
}
.idx-hero-main {
    position: relative;
    display: block;
    height: 320px;
    border-radius: 14px;
    overflow: hidden;
    background: #111;
    text-decoration: none;
    color: #fff;
}
.idx-hero-main img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.idx-hero-copy {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1.2rem 1.15rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
.idx-hero-copy h1 {
    margin: 0.25rem 0 0;
    font-size: 1.55rem;
    line-height: 1.25;
}
.idx-hero-copy time,
.idx-hero-mini time,
.idx-card time { color: #9aa; font-size: 0.78rem; }
.idx-hero-side { display: flex; flex-direction: column; gap: 0.55rem; }
.idx-hero-mini {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 0.7rem;
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
    height: 74px;
}
.idx-hero-mini img {
    width: 112px;
    height: 74px;
    object-fit: cover;
    object-position: center;
}
.idx-hero-mini h2 {
    margin: 0.2rem 0 0;
    font-size: 0.92rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.idx-hero-mini div { padding: 0.45rem 0.55rem 0.45rem 0; }
.idx-grid-wrap { margin-bottom: 1.1rem; }
.idx-grid-wrap .idx-sec-title { margin: 0; }
.idx-grid-wrap .idx-cat-block-head { margin-bottom: 0.55rem; }
.idx-grid-slider .idx-grid { display: none; }
.idx-grid-slider .idx-grid.is-on { display: grid; }
.idx-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.7rem;
}
.idx-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #444;
    cursor: pointer;
}
.idx-dots button.is-on { background: #00A676; width: 18px; border-radius: 8px; }
.idx-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.idx-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
}
.idx-card img { width: 100%; height: 140px; object-fit: cover; object-position: center; display: block; }
.idx-card-body { padding: 0.85rem 0.9rem 1rem; }
.idx-card h3 { margin: 0 0 0.35rem; font-size: 1rem; line-height: 1.35; }
.idx-card h3 a { color: #fff; text-decoration: none; }
.idx-card h3 a:hover { color: #00A676; }
.idx-cat-lazy { margin-bottom: 1.75rem; min-height: 40px; }
.idx-cat-blocks { display: flex; flex-direction: column; gap: 1.4rem; }
.idx-cat-block-head {
    display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.6rem;
}
.idx-cat-block-head h2 {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 600;
    color: #b9d4c6;
    letter-spacing: 0.02em;
    padding-left: 0.55rem;
    border-left: 3px solid #00A676;
    line-height: 1.2;
}
.idx-cat-block-head a { color: #00A676; text-decoration: none; font-size: 0.85rem; }
.idx-cat-rows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 0.8rem;
}
.idx-row-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 0.7rem;
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
    min-height: 68px;
}
.idx-row-card img { width: 92px; height: 68px; object-fit: cover; }
.idx-row-card h3 { margin: 0.35rem 0 0.2rem; font-size: 0.92rem; line-height: 1.3; }
.idx-row-card time { color: #888; font-size: 0.75rem; }
.idx-feat {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 0.7rem;
}
.idx-feat-main {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: #111;
}
.idx-feat-main img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.idx-feat-main div {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 0.7rem 0.8rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.82));
}
.idx-feat-main h3 { margin: 0.15rem 0 0; font-size: 1rem; line-height: 1.3; }
.idx-feat-list a {
    display: block;
    padding: 0.55rem 0;
    border-bottom: 1px solid #222;
    text-decoration: none;
    color: #fff;
}
.idx-feat-list h3 { margin: 0 0 0.15rem; font-size: 0.9rem; line-height: 1.3; }
.idx-feat-list time { color: #888; font-size: 0.72rem; }
.idx-scroll {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.2rem;
}
.idx-scroll-card {
    flex: 0 0 168px;
    text-decoration: none;
    color: #fff;
}
.idx-scroll-card img {
    width: 168px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    background: #111;
}
.idx-scroll-card h3 {
    margin: 0.4rem 0 0.15rem;
    font-size: 0.82rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.idx-scroll-card time { color: #888; font-size: 0.7rem; }
.idx-side-h { margin: 0.85rem 0 0.35rem; font-size: 0.92rem; color: #fff; }
.idx2-scorer {
    display: flex; align-items: center; gap: 0.4rem;
    text-decoration: none; color: #ddd; font-size: 0.8rem;
    padding: 0.28rem 0; border-bottom: 1px solid #1c1c1c;
}
.idx2-scorer em { color: #00A676; font-style: normal; width: 1rem; }
.idx2-scorer img {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.idx2-scorer b { margin-left: auto; color: #00A676; }
.idx-comp {
    background: linear-gradient(180deg, #0d1a14 0%, #0a0a0a 55%);
    border: 1px solid #1c3a2e;
    border-radius: 12px;
    padding: 0.7rem 0.85rem 0.8rem;
    margin: 0 0 1rem;
}
.idx-comp-tabs {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}
.idx-comp-tabs button {
    background: #1a1a1a;
    color: #aaa;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 0.22rem 0.55rem;
    font-size: 0.75rem;
    cursor: pointer;
}
.idx-comp-tabs button.is-on {
    background: #00A676;
    color: #fff;
    border-color: #00A676;
}
.idx-rk { color: #888; }
.idx-pts { color: #00A676; font-weight: 700; text-align: right; }
.idx-comp-placeholder { color: #666; font-size: 0.9rem; }
.idx-comp-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.8rem;
}
.idx-comp-head h2 { margin: 0; font-size: 1.1rem; color: #fff; }
.idx-comp-head a { color: #00A676; text-decoration: none; font-size: 0.85rem; }
.idx-comp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.55rem;
    align-items: stretch;
}
.idx-pane {
    background: #0c0c0c;
    border: 1px solid #1f3d30;
    border-radius: 10px;
    padding: 0.5rem 0.65rem 0.55rem;
    min-height: 0;
}
.idx-pane-h {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
    display: flex;
    gap: 0.4rem;
    align-items: center;
}
.idx-pane-h img { width: 18px; height: 18px; object-fit: contain; }
.idx-pane-h small { color: #777; font-weight: 400; font-size: 0.68rem; }
.idx-stand-head, .idx-stand-row {
    display: grid;
    grid-template-columns: 1.1rem minmax(0,1fr) 1.35rem 1.35rem 4.4rem;
    gap: 0.25rem;
    align-items: center;
    font-size: 0.78rem;
}
.idx-num { text-align: center; }
.idx-stand-head {
    color: #777;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid #222;
}
.idx-stand-row {
    padding: 0.28rem 0;
    border-bottom: 1px solid #1a1a1a;
}
.idx-tm {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    min-width: 0;
}
.idx-tm img { width: 14px; height: 14px; object-fit: contain; flex-shrink: 0; }
.idx-tm em {
    font-style: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
.idx-form {
    display: grid;
    grid-template-columns: repeat(5, 12px);
    gap: 2px;
    justify-content: end;
    width: 4.4rem;
}
.idx-form i {
    display: inline-flex;
    width: 12px; height: 12px;
    align-items: center; justify-content: center;
    font-size: 0.52rem; font-style: normal; font-weight: 700;
    border-radius: 2px; color: #fff;
}
.idx-form .f-W { background: #00A676; }
.idx-form .f-D { background: #666; }
.idx-form .f-L { background: #c0392b; }
.idx-form .f-x { background: #2a2a2a; color: #666; }
.idx2-scorer small { color: #888; font-weight: 500; font-size: 0.65rem; margin-left: 0.15rem; }
.idx-fx-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.4rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid #222;
    font-size: 0.85rem;
}
.idx-fx-row span:first-child { text-align: right; }
.idx-fx-row strong { color: #00A676; font-size: 0.78rem; }
@media (max-width: 900px) {
    .idx-cat-rows { grid-template-columns: 1fr; }
    .idx-feat { grid-template-columns: 1fr; }
    .idx-feat-main img { height: 170px; }
    .idx-hero { grid-template-columns: 1fr; }
    .idx-hero-main, .idx-hero-main img { height: 210px; }
    .idx-hero-copy h1 { font-size: 1.2rem; }
    .idx-grid { grid-template-columns: 1fr; }
    .idx-comp-grid { grid-template-columns: 1fr; }
    .idx-pane { margin-bottom: 0.15rem; }
}
.idx-pop-lazy {
    margin: 0.35rem 0 0.85rem;
    background: linear-gradient(180deg, #0d1a14 0%, #0a0a0a 70%);
    border: 1px solid #1c3a2e;
    border-radius: 12px;
    padding: 0.55rem 0.8rem 0.65rem;
}
.idx-pop-lazy .idx-cat-block-head { margin: 0 0 0.35rem; }
.idx-pop-lazy .idx-sec-title { margin: 0; font-size: 1rem; }
.idx-pop {
    margin: 0;
    padding: 0 0 0 1.1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.12rem 1.4rem;
}
.idx-pop li {
    margin: 0;
    padding: 0.2rem 0;
    color: #00A676;
}
.idx-pop li a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.86rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.idx-pop li a:hover { color: #00A676; }
@media (max-width: 720px) {
    .idx-pop { grid-template-columns: 1fr; gap: 0; padding-left: 1rem; }
    .idx-pop li { padding: 0.16rem 0; }
    .idx-pop li a { font-size: 0.84rem; }
    .idx-stand-more { display: none; }
    .idx-page { padding: 0.75rem 0.75rem 2.5rem; }
    .idx-live-card { width: 220px; }
    .idx-marquee-track { animation-duration: 28s; }
    .idx-hero-mini { grid-template-columns: 84px 1fr; height: 68px; }
    .idx-hero-mini img { width: 84px; height: 68px; }
    .idx-hero-mini h2 { font-size: 0.86rem; -webkit-line-clamp: 2; }
}
.idx-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}
.idx-news-item {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
}
.idx-news-item img { width: 100%; height: 140px; object-fit: cover; display: block; }
.idx-news-body { padding: 1rem; }
.idx-news-title { margin: 0 0 0.4rem; font-size: 1rem; line-height: 1.35; }
.idx-news-title a { color: #fff; text-decoration: none; }
.idx-news-title a:hover { color: #00A676; }
.idx-news-item time { color: #888; font-size: 0.8rem; }