:root {
    --tf-bg: #06110c;
    --tf-bg-2: #0b1f16;
    --tf-card: rgba(255, 255, 255, 0.075);
    --tf-card-strong: rgba(255, 255, 255, 0.12);
    --tf-border: rgba(255, 255, 255, 0.14);
    --tf-text: #f8faf8;
    --tf-muted: #a7b5ad;
    --tf-green: #21c55d;
    --tf-green-2: #16a34a;
    --tf-gold: #f8c95a;
    --tf-gold-2: #f59e0b;
    --tf-red: #ef4444;
    --tf-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
    --tf-radius: 28px;
    --tf-container: 1180px;
}

* {
    box-sizing: border-box;
}

body.tf-site-body {
    margin: 0;
    background: var(--tf-bg);
    color: var(--tf-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.tf-container {
    width: min(var(--tf-container), calc(100% - 40px));
    margin-inline: auto;
}

.tf-skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 9999;
}

.tf-skip-link:focus {
    left: 12px;
    background: #fff;
    color: #000;
    padding: 10px 14px;
    border-radius: 10px;
}

.tf-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(6, 17, 12, 0.82);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--tf-border);
}

.tf-header__inner {
    width: min(var(--tf-container), calc(100% - 32px));
    min-height: 76px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.tf-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.tf-logo__mark {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #08120d;
    font-weight: 900;
    background: linear-gradient(135deg, var(--tf-gold), var(--tf-green));
    box-shadow: 0 12px 36px rgba(33, 197, 93, 0.25);
}

.tf-logo__text {
    display: grid;
    line-height: 1.15;
}

.tf-logo__text strong {
    font-size: 18px;
    letter-spacing: -0.03em;
}

.tf-logo__text small {
    color: var(--tf-muted);
    font-size: 12px;
}

.tf-nav {
    flex: 1;
}

.tf-nav__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
}

.tf-nav__menu a {
    color: #dce8e0;
    font-size: 14px;
    font-weight: 650;
    transition: color 0.2s ease;
}

.tf-nav__menu a:hover {
    color: var(--tf-gold);
}

.tf-header-search {
    width: 260px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--tf-border);
    border-radius: 999px;
    padding: 4px;
}

.tf-header-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    padding: 9px 10px;
}

.tf-header-search input::placeholder {
    color: #7f9187;
}

.tf-header-search button {
    border: 0;
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 800;
    background: var(--tf-gold);
    color: #07110c;
    cursor: pointer;
}

.tf-nav-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--tf-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.tf-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
}

.tf-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 130px;
    background:
        radial-gradient(circle at 20% 20%, rgba(33, 197, 93, 0.22), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(248, 201, 90, 0.20), transparent 25%),
        linear-gradient(180deg, #06110c 0%, #071c13 55%, #06110c 100%);
}

.tf-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, transparent);
}

.tf-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.tf-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid rgba(248, 201, 90, 0.35);
    border-radius: 999px;
    background: rgba(248, 201, 90, 0.10);
    color: #ffe7a3;
    font-weight: 800;
    font-size: 13px;
}

.tf-pill span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--tf-green);
    box-shadow: 0 0 0 6px rgba(33, 197, 93, 0.18);
}

.tf-hero h1 {
    max-width: 780px;
    margin: 26px 0 22px;
    font-size: clamp(46px, 7vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.07em;
    color: #fff;
}

.tf-hero__content > p {
    max-width: 650px;
    margin: 0;
    color: #c4d1c9;
    font-size: 19px;
    line-height: 1.8;
}

.tf-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.tf-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tf-button:hover {
    transform: translateY(-2px);
}

.tf-button--primary {
    color: #08120d;
    background: linear-gradient(135deg, var(--tf-gold), var(--tf-green));
    box-shadow: 0 20px 50px rgba(33, 197, 93, 0.25);
}

.tf-button--ghost {
    color: #fff;
    border: 1px solid var(--tf-border);
    background: rgba(255, 255, 255, 0.08);
}

.tf-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.tf-hero__meta span {
    padding: 9px 13px;
    border-radius: 999px;
    color: #d7e5dc;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--tf-border);
    font-size: 13px;
    font-weight: 800;
}

.tf-hero-panel {
    position: relative;
    border: 1px solid var(--tf-border);
    border-radius: 36px;
    padding: 28px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.05)),
        radial-gradient(circle at top right, rgba(248, 201, 90, .25), transparent 40%);
    box-shadow: var(--tf-shadow);
    backdrop-filter: blur(20px);
}

.tf-hero-panel__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #dbe7de;
}

.tf-hero-panel__top span {
    color: var(--tf-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.tf-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 26px 0;
}

.tf-countdown div {
    min-height: 92px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--tf-border);
}

.tf-countdown strong {
    font-size: 32px;
    letter-spacing: -0.04em;
}

.tf-countdown span {
    color: var(--tf-muted);
    font-size: 12px;
}

.tf-match-mini {
    padding: 22px;
    border-radius: 26px;
    background: rgba(5, 12, 9, 0.65);
    border: 1px solid rgba(248, 201, 90, 0.20);
}

.tf-match-mini p {
    margin: 0 0 8px;
    color: var(--tf-gold);
    font-weight: 900;
}

.tf-match-mini h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.tf-match-mini span {
    color: var(--tf-muted);
    line-height: 1.7;
}

.tf-section {
    padding: 86px 0;
    background: #07130e;
}

.tf-section--floating {
    margin-top: -72px;
    padding-top: 0;
    position: relative;
    z-index: 5;
    background: transparent;
}

.tf-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.tf-stat-card {
    min-height: 190px;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid var(--tf-border);
    background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
    box-shadow: var(--tf-shadow);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.tf-stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(248, 201, 90, 0.42);
}

.tf-stat-card span {
    color: var(--tf-gold);
    font-weight: 900;
    font-size: 13px;
}

.tf-stat-card strong {
    display: block;
    margin: 14px 0 6px;
    font-size: 48px;
    letter-spacing: -0.08em;
}

.tf-stat-card p {
    margin: 0;
    color: var(--tf-muted);
    line-height: 1.65;
}

.tf-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.tf-eyebrow {
    margin: 0 0 8px;
    color: var(--tf-gold);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tf-section-head h2,
.tf-feature-grid h2,
.tf-panel h2,
.tf-final-cta h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.055em;
}

.tf-section-head > a {
    color: var(--tf-gold);
    font-weight: 900;
}

.tf-match-grid,
.tf-post-grid,
.tf-team-grid,
.tf-hub-grid {
    display: grid;
    gap: 20px;
}

.tf-match-grid {
    grid-template-columns: repeat(4, 1fr);
}

.tf-match-card,
.tf-team-card,
.tf-panel,
.tf-post-card,
.tf-empty-card {
    border: 1px solid var(--tf-border);
    border-radius: var(--tf-radius);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.tf-match-card {
    padding: 24px;
}

.tf-match-card__tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(33, 197, 93, 0.14);
    color: #9af5bd;
    font-size: 12px;
    font-weight: 900;
}

.tf-match-card h3 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.2;
}

.tf-match-card p {
    margin: 6px 0;
    color: var(--tf-muted);
}

.tf-match-card a,
.tf-team-card a,
.tf-panel a,
.tf-read-more {
    display: inline-block;
    margin-top: 16px;
    color: var(--tf-gold);
    font-weight: 900;
}

.tf-section--dark {
    background:
        radial-gradient(circle at 15% 20%, rgba(33, 197, 93, 0.12), transparent 26%),
        linear-gradient(180deg, #05100b, #0a1a12);
}

.tf-feature-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 38px;
    align-items: start;
}

.tf-section-desc {
    color: var(--tf-muted);
    font-size: 18px;
    line-height: 1.85;
}

.tf-hub-grid {
    grid-template-columns: repeat(2, 1fr);
}

.tf-hub-grid a {
    padding: 28px;
    border-radius: 28px;
    border: 1px solid var(--tf-border);
    background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.05));
}

.tf-hub-grid span {
    color: var(--tf-gold);
    font-weight: 950;
}

.tf-hub-grid strong {
    display: block;
    margin: 16px 0 8px;
    font-size: 26px;
}

.tf-hub-grid p {
    margin: 0;
    color: var(--tf-muted);
    line-height: 1.7;
}

.tf-post-grid {
    grid-template-columns: repeat(3, 1fr);
}

.tf-post-card {
    overflow: hidden;
}

.tf-post-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #10251a;
}

.tf-post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.tf-post-card:hover img {
    transform: scale(1.06);
}

.tf-post-card__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--tf-gold);
    font-size: 34px;
    font-weight: 950;
    background:
        radial-gradient(circle at center, rgba(248, 201, 90, .2), transparent 45%),
        linear-gradient(135deg, #0d2b1a, #07130e);
}

.tf-post-card__body {
    padding: 22px;
}

.tf-post-card__meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--tf-gold);
    font-size: 12px;
    font-weight: 900;
}

.tf-post-card h3 {
    margin: 12px 0 10px;
    font-size: 23px;
    line-height: 1.25;
}

.tf-post-card p {
    margin: 0;
    color: var(--tf-muted);
    line-height: 1.7;
}

.tf-empty-card {
    grid-column: 1 / -1;
    padding: 34px;
}

.tf-team-section {
    background: linear-gradient(180deg, #07130e, #091a12);
}

.tf-team-grid {
    grid-template-columns: repeat(3, 1fr);
}

.tf-team-card {
    padding: 26px;
}

.tf-team-card__flag {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    margin-bottom: 18px;
    color: #07130e;
    background: linear-gradient(135deg, var(--tf-gold), var(--tf-green));
    font-weight: 950;
    font-size: 22px;
}

.tf-team-card h3 {
    margin: 0 0 10px;
    font-size: 26px;
}

.tf-team-card p {
    margin: 0;
    color: var(--tf-muted);
    line-height: 1.7;
}

.tf-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.tf-panel {
    padding: 34px;
}

.tf-panel p {
    color: var(--tf-muted);
    line-height: 1.85;
}

.tf-panel--gold {
    background:
        radial-gradient(circle at top right, rgba(248, 201, 90, .25), transparent 40%),
        rgba(255, 255, 255, 0.08);
}

.tf-link-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.tf-link-list a {
    padding: 16px 18px;
    border-radius: 18px;
    color: #fff;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--tf-border);
}

.tf-newsletter {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.tf-newsletter input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--tf-border);
    border-radius: 999px;
    padding: 0 16px;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
}

.tf-newsletter button {
    border: 0;
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 900;
    background: var(--tf-gold);
    color: #07130e;
}

.tf-final-cta {
    padding: 88px 0;
    text-align: center;
    background:
        radial-gradient(circle at center, rgba(33, 197, 93, 0.16), transparent 32%),
        linear-gradient(180deg, #07130e, #040a07);
}

.tf-final-cta p {
    max-width: 760px;
    margin: 18px auto 28px;
    color: var(--tf-muted);
    line-height: 1.8;
    font-size: 18px;
}

.tf-footer {
    background: #030806;
    border-top: 1px solid var(--tf-border);
}

.tf-footer__top,
.tf-footer__bottom,
.tf-footer__notice {
    width: min(var(--tf-container), calc(100% - 40px));
    margin-inline: auto;
}

.tf-footer__top {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    padding: 70px 0 36px;
}

.tf-footer__brand p {
    max-width: 420px;
    color: var(--tf-muted);
    line-height: 1.8;
}

.tf-footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.tf-footer__links h3 {
    margin: 0 0 16px;
    color: #fff;
}

.tf-footer__links a {
    display: block;
    margin: 10px 0;
    color: var(--tf-muted);
}

.tf-footer__notice {
    padding: 18px 20px;
    border-radius: 20px;
    color: #d4dfd8;
    background: rgba(248, 201, 90, 0.08);
    border: 1px solid rgba(248, 201, 90, 0.22);
}

.tf-footer__notice p {
    margin: 0;
    line-height: 1.75;
}

.tf-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 26px 0 34px;
    color: var(--tf-muted);
}

.tf-footer-menu {
    display: flex;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tf-breadcrumbs,
.tf-last-updated,
.tf-author-box,
.tf-disclaimer {
    width: min(860px, calc(100% - 40px));
    margin-inline: auto;
}

.tf-author-box,
.tf-disclaimer {
    margin-top: 34px;
    padding: 26px;
    border-radius: 24px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--tf-border);
}

.tf-author-box {
    display: flex;
    gap: 18px;
}

.tf-author-box__avatar {
    border-radius: 18px;
}

.tf-author-box h3,
.tf-disclaimer h3 {
    margin: 0 0 8px;
}

.tf-author-box p,
.tf-disclaimer p,
.tf-last-updated {
    color: var(--tf-muted);
    line-height: 1.75;
}

.tf-last-updated {
    margin-top: 22px;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(248, 201, 90, 0.08);
}

@media (max-width: 980px) {
    .tf-header__inner {
        flex-wrap: wrap;
        min-height: 70px;
        padding: 12px 0;
    }

    .tf-nav-toggle {
        display: block;
    }

    .tf-nav,
    .tf-header-search {
        display: none;
        width: 100%;
    }

    body.tf-mobile-nav-open .tf-nav,
    body.tf-mobile-nav-open .tf-header-search {
        display: block;
    }

    .tf-nav__menu {
        display: grid;
        justify-content: stretch;
        gap: 0;
        padding: 12px 0;
    }

    .tf-nav__menu a {
        display: block;
        padding: 13px 0;
    }

    .tf-hero {
        padding-top: 62px;
    }

    .tf-hero__grid,
    .tf-feature-grid,
    .tf-two-col,
    .tf-footer__top {
        grid-template-columns: 1fr;
    }

    .tf-stats-grid,
    .tf-match-grid,
    .tf-post-grid,
    .tf-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tf-container {
        width: min(100% - 24px, var(--tf-container));
    }

    .tf-hero h1 {
        font-size: 44px;
    }

    .tf-countdown,
    .tf-stats-grid,
    .tf-match-grid,
    .tf-post-grid,
    .tf-team-grid,
    .tf-hub-grid,
    .tf-footer__links {
        grid-template-columns: 1fr;
    }

    .tf-section {
        padding: 62px 0;
    }

    .tf-section-head,
    .tf-footer__bottom,
    .tf-newsletter {
        align-items: flex-start;
        flex-direction: column;
    }

    .tf-newsletter input,
    .tf-newsletter button {
        width: 100%;
        min-height: 48px;
    }
}