@font-face {
    font-family: "Anton SC";
    src: url("../fonts/trangchu2/AntonSC-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bai Jamjuree";
    src: url("../fonts/trangchu2/BaiJamjuree-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bai Jamjuree";
    src: url("../fonts/trangchu2/BaiJamjuree-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bai Jamjuree";
    src: url("../fonts/trangchu2/BaiJamjuree-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bai Jamjuree";
    src: url("../fonts/trangchu2/BaiJamjuree-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Legacy Montserrat";
    src: url("../static/media/Montserrat-Medium.d3f3d769c2fc1af5c0b4.ttf") format("truetype");
    font-weight: 400 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Legacy Montserrat";
    src: url("../static/media/Montserrat-Bold.3530bfc1b50b41bdc29d.ttf") format("truetype");
    font-weight: 700 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --tc-blue: #0881fc;
    --tc-blue-soft: #4da7ff;
    --tc-navy: #1f366b;
    --tc-cyan: #00b5db;
    --tc-ink: #132247;
    --tc-dark: #020b18;
    --tc-muted: #667085;
    --tc-line: rgba(8, 129, 252, 0.18);
    --tc-white: #ffffff;
    --tc-surface: #f4f8ff;
    --tc-heading: "Anton SC", Impact, sans-serif;
    --tc-body: "Bai Jamjuree", Arial, sans-serif;
    --tc-container: 1520px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--tc-white);
    color: var(--tc-ink);
    font-family: var(--tc-body);
    overflow-x: hidden;
}

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

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

.tc-page {
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background: var(--tc-white);
}

.tc-container {
    width: min(calc(100% - (var(--tc-page-pad) * 2)), var(--tc-container));
    margin: 0 auto;
}

.tc-button {
    min-height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 18px 30px;
    border: 1px solid var(--tc-blue);
    background: var(--tc-blue);
    color: var(--tc-white);
    font-size: clamp(16px, 1.05vw, 20px);
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    border-radius: 10px;
}

.tc-button:hover {
    background: var(--tc-blue-soft);
    transform: translateY(-2px);
}

.tc-button-ghost {
    background: transparent;
    color: var(--tc-blue);
}

.tc-button-ghost:hover {
    background-color: rgba(0, 181, 219, 0.1);
}

.tc-eyebrow {
    color: var(--tc-blue);
    font-size: clamp(12px, 0.9vw, 16px);
    font-weight: 700;
    line-height: 1.14;
    text-transform: uppercase;
}

.tc-section {
    position: relative;
    width: 100%;
    padding: clamp(72px, 5.8vw, 112px) 0;
    overflow: hidden;
}


.tc-section::after {
    right: -30vw;
    bottom: -28%;
}

.tc-section > .tc-container {
    position: relative;
    z-index: 1;
}

.tc-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(48px, 6vw, 116px);
}

.tc-split-reverse {
    flex-direction: row-reverse;
}

.tc-section-copy {
    width: min(100%, 560px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(20px, 2vw, 32px);
}

.tc-section-copy h2,
.tc-section-heading h2,
.tc-about h2 {
    margin: 0;
    color: var(--tc-navy);
    font-family: var(--tc-heading);
    font-size: clamp(48px, 4.45vw, 64px);
    font-weight: 400;
    line-height: 1.25;
    text-transform: uppercase;
}

.tc-section-copy p,
.tc-section-heading p,
.tc-about p {
    margin: 0;
    color: var(--tc-muted);
    font-size: clamp(15px, 1vw, 18px);
    line-height: 1.65;
}

.tc-section-column {
    display: flex;
    flex-direction: column;
    gap: clamp(36px, 4vw, 68px);
}

.tc-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.tc-section-heading > div {
    width: min(100%, 760px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tc-section-heading-center {
    justify-content: center;
    text-align: center;
}

.tc-section-heading-center > div {
    align-items: center;
}

.tc-section-button {
    align-self: center;
}

/* Hero */
.tc-hero {
    height: 500px;
    min-height: 500px;
    display: flex;
    align-items: stretch;
    background: var(--tc-navy);
}

.tc-hero-inner {
    width: 100%;
    display: flex;
    background: url("../images/Banner_trangchu.jpg") center / cover no-repeat;
}

.tc-hero-contents {
    display: none;
}

.tc-hero-contents h1 {
    width: min(100%, 850px);
    margin: 0;
    color: var(--tc-white);
    font-family: var(--tc-heading);
    font-size: clamp(48px, 4.45vw, 64px);
    font-weight: 400;
    line-height: 1.18;
    text-transform: uppercase;
}

.tc-hero-contents h1 span {
    display: inline;
    color: var(--tc-cyan);
}

.tc-hero-contents p {
    width: min(100%, 560px);
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.55;
}

.tc-hero-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

/* About */
.tc-about {
    padding: clamp(72px, 5vw, 96px) 0 clamp(72px, 5.4vw, 104px);
    background: var(--tc-white) url("../images/trangchu/home-bg-about.png") center top / cover no-repeat;
}

.tc-about-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(44px, 5.4vw, 104px);
}

.tc-about-info-contents {
    width: min(100%, 560px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(20px, 2vw, 32px);
}

.tc-about-info-contents h2 {
    color: var(--tc-navy);
}

.tc-about-info-contents h2 span {
    color: var(--tc-cyan);
}

.tc-about-info-contents h2::first-line {
    color: var(--tc-cyan);
}

.tc-about-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tc-about-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.tc-about-social a:hover {
    opacity: 0.82;
    transform: translateY(-2px);
}

.tc-about-social img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.tc-about-illust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    gap: clamp(18px, 1.6vw, 28px);
}

.tc-about-illust > img,
.tc-about-illust2 img {
    width: clamp(176px, 12.5vw, 240px);
    border-radius: 16px;
    filter: drop-shadow(0 24px 32px rgba(31, 54, 107, 0.18));
}

.tc-about-illust2 {
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 1.6vw, 28px);
}

.tc-about-why {
    margin-top: clamp(68px, 5.9vw, 112px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
}

.tc-about-why > p {
    width: min(100%, 960px);
}

.tc-about-why-archivement {
    width: 100%;
    margin-top: clamp(20px, 2.4vw, 40px);
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.tc-about-why-item {
    position: relative;
    width: min(100%, 322px);
    min-height: 156px;
    display: flex;
    flex: 1 1 260px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 24px 18px;
    overflow: hidden;
    background: #f7fbff;
    border: 1px solid var(--tc-line);
}

.tc-about-why-item::before {
    content: "";
    position: absolute;
    inset: auto auto -82px -64px;
    width: 210px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 32px solid rgba(8, 129, 252, 0.09);
}

.tc-about-why-item h3 {
    position: relative;
    margin: 0;
    color: var(--tc-blue);
    font-family: var(--tc-heading);
    font-size: clamp(56px, 4.2vw, 80px);
    font-weight: 400;
    line-height: 1;
}

.tc-about-why-item p {
    position: relative;
    color: var(--tc-navy);
    font-weight: 700;
}

/* Sticker */
.tc-sticker {
    width: 150%;
    overflow: hidden;
    background: var(--tc-blue);
    transform-origin: center;
    color: var(--tc-white);
    position: relative;
    z-index: 2;
    margin: -24px -26px;
}
.tc-sticker-leanRight {
    transform: rotate(-2.4deg);
}

.tc-sticker-leanLeft {
    transform: rotate(2.4deg);
}

.tc-sticker-track {
    min-width: max-content;
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 34px);
    padding: clamp(14px, 1.35vw, 24px) 0;
    transform: translateX(-4%);
    will-change: transform;
}

.tc-sticker-track-scrollRight {
    animation: scroll-right 60s linear infinite;
}

.tc-sticker-track-scrollLeft {
    animation: scroll-left 60s linear infinite;
}

@keyframes scroll-right {
    0% {
    transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-left {
    0% {
    transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.tc-sticker span,
.tc-sticker b {
    font-family: var(--tc-heading);
    font-size: clamp(32px, 2.9vw, 56px);
    font-weight: 400;
    line-height: 1;
}

.tc-sticker b {
    width: 23px;
    height: 23px;
    font-size: 20px;
    display: flex;
    flex-flow: row wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    color: var(--tc-white);
}

/* Ranking */
.tc-ranking {
    color: var(--tc-white);
    background:
        radial-gradient(ellipse at 18% 18%, rgba(0, 181, 219, 0.28), transparent 28%),
        radial-gradient(ellipse at 72% 22%, rgba(80, 24, 170, 0.32), transparent 30%),
        linear-gradient(135deg, rgba(0, 181, 219, 0.12) 0 8%, transparent 8% 44%, rgba(8, 129, 252, 0.12) 44% 54%, transparent 54%),
        var(--tc-dark);
    height: 872px;
}

.tc-ranking::before,
.tc-ranking::after,
.tc-tournaments::before,
.tc-tournaments::after,
.tc-card-exchange::before,
.tc-card-exchange::after,
.tc-discount::before,
.tc-discount::after {
    display: none;
}

.tc-ranking .tc-eyebrow,
.tc-tournaments .tc-eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.tc-ranking h2,
.tc-tournaments h2 {
    color: var(--tc-white);
    line-height: 1.5;
    letter-spacing: 3%;
}

.tc-ranking h2::first-line,
.tc-tournaments h2::first-line {
    color: var(--tc-white);
}

.tc-ranking .tc-section-copy p,
.tc-tournaments .tc-section-heading p {
    color: rgba(255, 255, 255, 0.78);
}

.tc-ranking-inner {
    height: 872px;
}

.tc-ranking #first  {
    color: var(--tc-blue);
}

.tc-ranking span#second {
    color: var(--tc-cyan);
}

.tc-player-stack-contain {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transform: rotate(7.29deg) translateY(-5%);
}
.tc-player-stack {
    width: min(100%, 780px);
    min-height: clamp(480px, 34vw, 640px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: clamp(14px, 1.4vw, 28px);
}

.tc-player-card {
    position: relative;
    width: min(31%, 238px);
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0;
    background: transparent;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.tc-player-card-up {
    transform: translateY(-44px) rotate(8deg);
}

.tc-player-card-down {
    transform: translateY(44px) rotate(-7deg);
}

.tc-player-card img {
    width: 100%;
    aspect-ratio: 3 / 4.1;
    object-fit: cover;
    object-position: center top;
}

.tc-player-card div {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.tc-player-card strong {
    font-size: 22px;
    text-transform: uppercase;
}

.tc-player-card span {
    color: var(--tc-muted);
    font-size: 14px;
}

/* Tournaments */
.tc-tournaments {
    color: var(--tc-white);
    background: #000b1d url("../images/trangchu/tournament-section-bg.svg") calc(50% - 1335px) calc(50% - 819px) / 2581px 2122px no-repeat;
    height: 637px;
    min-height: 637px;
    display: flex;
    align-items: flex-start;
    padding: 151px 0 0;
}
.tc-tournaments-inner {
    width: min(calc(100% - 32px), 1040px);
    height: auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    margin: 0 auto;
}

.tc-tournaments-contents {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    width: 598px;
    flex: 0 0 598px;
}

.tc-tournament-statistic {
    display: flex;
    flex-flow: row nowrap;
    width: auto;
    height: 16px;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
}

.tc-tournament-date {
    display: flex;
    flex-flow: row nowrap;
    height: 16px;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.tc-tournaments-contents-text {
    width: 594px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.tc-tournaments h2 {
    width: 642px;
    margin: 0;
    font-family: var(--tc-heading);
    font-weight: 400;
    font-size: 64px;
    line-height: 1.08;
    letter-spacing: 0;
}

.tc-tournaments-contents-text p {
    margin: 0;
    color: var(--tc-white);
    font-size: 16px;
    line-height: 1.35;
}


.tc-tournament-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    flex: 0 0 442px;
}

.tc-tournament-grid--single .tc-tournament-card {
    flex: 0 1 100%;
}

.tc-tournament-card {
    width: 442px;
    height: 300px;
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    background: var(--tc-white);
    color: var(--tc-navy);
    border-radius: 20px;
    overflow: hidden;
}

.tc-tournament-thumb {
    position: relative;
    height: 133px;
    flex: 0 0 133px;
    overflow: hidden;
}

.tc-tournament-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tc-tournament-thumb span {
    position: absolute;
    right: 10px;
    top: 10px;
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 6px 12px;
    background: #ff8a00;
    color: var(--tc-white);
    font-family: "Legacy Montserrat", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    border-radius: 5px;
}

.tc-tournament-thumb .is-open {
    background: #17b26a;
}

.tc-tournament-thumb .is-closed {
    background: #98a2b3;
}

.tc-tournament-body {
    height: 167px;
    min-height: 167px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 15px 11px 0 0;
    text-align: center;
}

.tc-tournament-body h3 {
    margin: 0;
    color: var(--tc-navy);
    font-family: "Legacy Montserrat", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.tc-tournament-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 41px;
    color: var(--tc-navy);
    font-family: "Legacy Montserrat", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.tc-tournament-statistic img,
.tc-tournament-date img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.tc-tournament-body p {
    margin: 0;
    color: #a2a2a2;
    font-family: "Legacy Montserrat", Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
}

.tc-tournament-body a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--tc-blue);
    color: var(--tc-white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
}

.tc-tournament-empty {
    width: 100%;
    padding: 28px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--tc-white);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

/* Topup */
.tc-topup {
    background: var(--tc-white) url("../images/trangchu/home-bg-topup.png") center top / cover no-repeat;
}

.tc-topup .tc-eyebrow {
    color: #8b93a3;
    font-weight: 500;
}

.tc-topup h2 span {
    color: var(--tc-blue);
}

.tc-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: clamp(28px, 3.4vw, 64px);
}

.tc-step {
    position: relative;
    width: min(100%, 320px);
    min-height: 246px;
    display: flex;
    flex: 1 1 240px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    text-align: center;
}

.tc-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 72px;
    left: calc(100% + 8px);
    width: clamp(70px, 8vw, 150px);
    height: 2px;
    background: var(--tc-blue);
}

.tc-step span {
    color: var(--tc-blue);
    font-family: var(--tc-heading);
    font-size: clamp(96px, 7vw, 134px);
    line-height: 1;
}

.tc-step h3 {
    margin: -12px 0 0;
    color: var(--tc-navy);
    font-size: clamp(20px, 1.32vw, 26px);
}

.tc-step p {
    margin: 0;
    color: var(--tc-muted);
    line-height: 1.55;
}

/* Card exchange */
.tc-card-exchange {
    background: var(--tc-white) url("../images/trangchu/home-bg-card-topup.png") center top / cover no-repeat;
}
.tc-exchange-inner {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    gap: 56px;
}

.tc-card-exchange .tc-eyebrow {
    color: #8b93a3;
    font-weight: 500;
}

.tc-card-exchange h2 {
    margin: 0;
    padding: 0;
}

.tc-card-exchange p {
    margin: 0;
    padding: 0;
}

.tc-card-exchange h2 span {
    color: var(--tc-blue);
}


.tc-exchange-content {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    height: 300px;
}

.tc-exchange-content div {
    width: 608px;
    height: 300px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

.tc-exchange-content p {
    color: var(--tc-navy);
}

.tc-exchange-card {
    width: 100%;
    height: 346px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 26px 72px rgba(31, 54, 107, 0.18);
}

.tc-exchange-thumb {
    width: auto;
    height: 364px;
}

.tc-exchange-guide {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 46px;
    flex-grow: 1;
    gap: 24px;
}

.tc-exchange-card-thumb img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.tc-exchange-guide span h2{
    color: var(--tc-blue);
}

.tc-exchange-guide h2 {
    font-family: var(--tc-heading);
    font-size: clamp(48px, 4.45vw, 64px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--tc-white);
}

.tc-exchange-guide p {
    color: var(--tc-white);
    font-family: var(--tc-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
}

/* Discount */
.tc-discount {
    padding: clamp(72px, 5vw, 96px) 0 clamp(52px, 4.2vw, 78px);
    background: var(--tc-white) url("../images/trangchu/home-bg-discount.png") center top / cover no-repeat;
}

.tc-discount .tc-split {
    align-items: center;
    justify-content: center;
    gap: clamp(72px, 7vw, 132px);
}

.tc-discount .tc-section-copy {
    width: min(100%, 560px);
    gap: 24px;
}

.tc-discount .tc-eyebrow {
    color: #8b93a3;
    font-weight: 500;
}

.tc-discount h2 {
    color: var(--tc-navy);
    line-height: 1.3;
}

.tc-discount h2 span {
    color: var(--tc-blue);
}

.tc-discount .tc-button {
    min-height: 56px;
    padding: 16px 28px;
    font-size: 18px;
}

.tc-discount-art {
    position: relative;
    width: min(100%, 440px);
    min-height: clamp(340px, 24vw, 440px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-discount-art img {
    display: block;
    width: 100%;
    height: auto;
}

/* Social */
.tc-social-strip {
    background: var(--tc-blue);
    position: relative;
    overflow: hidden;
}

.tc-social-strip::before {
    content: "PESFOOTBALLVN";
    position: absolute;
    left: 50%;
    top: 50%;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16);
    font-family: var(--tc-heading);
    font-size: clamp(72px, 8vw, 148px);
    line-height: 1;
    text-transform: uppercase;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.tc-social-inner {
    position: relative;
    z-index: 1;
    min-height: clamp(96px, 6.1vw, 112px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.tc-social-link {
    min-height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 260px;
    gap: 16px;
    color: var(--tc-white);
    font-family: var(--tc-heading);
    font-size: clamp(28px, 2.25vw, 42px);
    line-height: 1;
    text-transform: uppercase;
}

.tc-social-link img {
    width: clamp(34px, 2.6vw, 48px);
    height: clamp(34px, 2.6vw, 48px);
    object-fit: contain;
}

.tc-social-link:hover {
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1439px) {
    .tc-player-stack {
        min-height: 600px;
    }
}

@media (max-width: 1023px) {
    .tc-split,
    .tc-split-reverse,
    .tc-about-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .tc-section-copy,
    .tc-about-info-contents {
        width: min(100%, 720px);
    }

    .tc-section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .tc-section-heading-center {
        align-items: center;
    }

    .tc-player-stack {
        width: 100%;
    }

    .tc-steps {
        flex-wrap: wrap;
    }

    .tc-tournament-grid {
        flex-wrap: wrap;
    }

    .tc-tournament-card {
        flex-basis: calc(50% - 16px);
    }

    .tc-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .tc-button {
        min-height: 38px;
        padding: 10px 18px;
        font-size: 14px;
    }

    .tc-hero-contents h1 {
        width: min(100%, 400px);
        font-size: 48px;
    }

    .tc-hero-contents p {
        width: min(100%, 400px);
        font-size: 14px;
    }

    .tc-hero-nav {
        gap: 14px;
    }

    .tc-section,
    .tc-about {
        padding-block: 64px;
    }

    .tc-section-copy,
    .tc-about-info-contents {
        gap: 18px;
    }

    .tc-section-copy h2,
    .tc-section-heading h2,
    .tc-about h2 {
        font-size: 36px;
        line-height: 1.12;
    }

    .tc-section-copy p,
    .tc-section-heading p,
    .tc-about p {
        font-size: 13px;
        line-height: 1.55;
    }

    .tc-about-info {
        gap: 36px;
    }

    .tc-about-illust {
        width: 100%;
        gap: 12px;
    }

    .tc-about-illust > img,
    .tc-about-illust2 img {
        width: calc((100vw - 54px) / 3);
        min-width: 0;
        border-radius: 10px;
    }

    .tc-about-illust2 {
        gap: 12px;
    }

    .tc-about-why {
        margin-top: 64px;
        text-align: left;
        align-items: flex-start;
    }

    .tc-about-why-archivement {
        gap: 18px;
    }

    .tc-about-why-item {
        width: calc(50% - 9px);
        min-height: 144px;
        flex: 0 1 calc(50% - 9px);
        padding: 22px 12px;
    }

    .tc-about-why-item h3 {
        font-size: 60px;
    }

    .tc-about-why-item p {
        font-size: 13px;
        text-align: center;
    }

    .tc-sticker-track {
        padding-block: 14px;
    }

    .tc-sticker span,
    .tc-sticker b {
        font-size: 30px;
    }

    .tc-player-stack {
        min-height: 460px;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 24px 0;
        scroll-snap-type: x mandatory;
    }

    .tc-player-card {
        width: 70%;
        min-width: 230px;
        scroll-snap-align: center;
        transform: none;
    }

    .tc-tournament-grid {
        flex-direction: column;
    }

    .tc-tournament-card {
        width: 100%;
        flex-basis: auto;
    }

    .tc-exchange-card {
        height: 340px;
        min-height: 340px;
    }

    .tc-exchange-guide {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
        padding: 18px;
    }

    .tc-steps {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
    }

    .tc-step {
        width: 100%;
        min-height: 0;
        flex: 0 1 auto;
        align-items: flex-start;
        text-align: left;
        padding: 0 0 0 82px;
    }

    .tc-step span {
        position: absolute;
        left: 0;
        top: -8px;
        font-size: 72px;
    }

    .tc-step h3 {
        margin-top: 4px;
        font-size: 20px;
    }

    .tc-discount-art {
        min-height: 290px;
    }

    .tc-social-inner {
        min-height: auto;
        flex-direction: column;
        padding-block: 24px;
        gap: 14px;
    }

    .tc-social-link {
        width: 100%;
        min-height: 54px;
        flex: 0 1 auto;
        font-size: 30px;
    }

}

@media (max-width: 420px) {
    .tc-hero-contents h1 {
        font-size: 42px;
    }

    .tc-about-why-item {
        width: 100%;
        flex-basis: 100%;
    }

    .tc-about-illust {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .tc-about-illust > img,
    .tc-about-illust2 img {
        width: 132px;
    }
}

@media (max-width: 1023px) {
    .tc-button {
        min-height: 38px;
        padding: 10px 20px;
        border-radius: 0;
        font-size: 14px;
        line-height: 1;
    }

    .tc-section-copy h2,
    .tc-section-heading h2,
    .tc-about h2,
    .tc-tournaments h2,
    .tc-exchange-guide h2 {
        font-size: 24px;
        line-height: 1.18;
        letter-spacing: 0;
    }

    .tc-section-copy p,
    .tc-section-heading p,
    .tc-about p {
        font-size: 12px;
        line-height: 1.58;
    }

    .tc-eyebrow {
        font-size: 10px;
        line-height: 1.2;
    }

    .tc-hero {
        height: 284px;
        min-height: 284px;
    }

    .tc-hero-inner {
        background: url("../images/banner_mobile/trang_chu.jpg") center / cover no-repeat;
    }

    .tc-hero-contents {
        width: min(255px, calc(100% - 32px));
        margin: 0 0 0 16px;
        gap: 16px;
    }

    .tc-hero-contents h1 {
        width: 100%;
        font-size: 32px;
        line-height: 1.16;
        letter-spacing: 0.96px;
    }

    .tc-hero-contents h1 span {
        display: block;
    }

    .tc-hero-contents h1 br {
        display: none;
    }

    .tc-hero-contents p {
        width: 226px;
        font-size: 14px;
        line-height: 1.45;
    }

    .tc-hero-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .tc-hero-nav .tc-button {
        width: 156px;
    }

    .tc-about {
        padding: 32px 0 40px;
        background: #fff url("../images/trangchu/home-mobile-about-bg.png") center top / cover no-repeat;
    }

    .tc-about-info,
    .tc-about-info-contents,
    .tc-about-why {
        align-items: center;
        text-align: center;
    }

    .tc-about-info {
        gap: 24px;
    }

    .tc-about-info-contents {
        width: 100%;
        gap: 16px;
    }

    .tc-about-info-contents h2::first-line {
        color: var(--tc-navy);
    }

    .tc-about-info-contents h2 {
        color: var(--tc-navy);
    }

    .tc-about-info-contents h2 span,
    .tc-about h2 strong {
        color: var(--tc-blue);
    }

    .tc-about-illust {
        width: 100%;
        justify-content: center;
        gap: 10px;
        overflow: visible;
        padding: 0;
    }

    .tc-about-illust > img,
    .tc-about-illust2 img {
        width: calc((100vw - 56px) / 3);
        max-width: 126px;
        min-width: 0;
        border-radius: 0;
        filter: none;
    }

    .tc-about-illust2 {
        gap: 10px;
    }

    .tc-about-why {
        margin-top: 34px;
        gap: 16px;
    }

    .tc-about-why > p {
        width: 100%;
    }

    .tc-about-why-archivement {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin-top: 8px;
    }

    .tc-about-why-item {
        width: 100%;
        min-height: 104px;
        padding: 16px 10px;
        border: 1px solid #d7eaff;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.84);
        box-shadow: 0 14px 32px rgba(8, 129, 252, 0.08);
    }

    .tc-about-why-item::before {
        display: none;
    }

    .tc-about-why-item h3 {
        font-family: var(--tc-heading);
        font-size: 40px;
        line-height: 1;
    }

    .tc-about-why-item p {
        font-size: 12px;
        line-height: 1.3;
    }

    .tc-sticker {
        width: 170%;
        margin: -10px -26px;
    }

    .tc-sticker-track {
        gap: 18px;
        padding: 10px 0;
    }

    .tc-sticker span,
    .tc-sticker b {
        font-size: 24px;
    }

    .tc-ranking {
        height: auto;
        min-height: 760px;
        padding: 44px 0 48px;
        overflow: hidden;
        background:
            radial-gradient(ellipse at 34% -6%, rgba(5, 126, 194, 0.42), transparent 30%),
            linear-gradient(144deg, rgba(8, 129, 252, 0.26) 0%, rgba(8, 129, 252, 0) 23%),
            radial-gradient(ellipse at 78% 18%, rgba(80, 24, 170, 0.22), transparent 34%),
            #000b1d;
    }

    .tc-ranking-inner {
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 26px;
    }

    .tc-ranking .tc-section-copy {
        width: min(100%, 398px);
        gap: 18px;
    }

    .tc-ranking h2 {
        line-height: 1.16;
    }

    .tc-ranking .tc-section-copy p {
        width: 100%;
        color: rgba(255, 255, 255, 0.78);
    }

    .tc-player-stack-contain {
        width: calc(100vw - 16px);
        display: grid;
        grid-template-columns: repeat(3, 158px);
        grid-template-rows: repeat(2, auto);
        grid-auto-flow: row;
        gap: 20px 18px;
        margin-left: -8px;
        padding: 0 0 10px 0;
        overflow-x: auto;
        overflow-y: visible;
        transform: none;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .tc-player-stack-contain::-webkit-scrollbar {
        display: none;
    }

    .tc-player-stack {
        display: contents;
    }

    .tc-player-stack img {
        width: 158px;
        height: 224px;
        object-fit: cover;
        border-radius: 0;
        box-shadow: none;
    }

    .tc-tournaments {
        height: auto;
        min-height: 0;
        padding: 36px 0 76px;
        background:
            linear-gradient(154deg, rgba(8, 129, 252, 0.3) 0%, rgba(8, 129, 252, 0) 28%),
            radial-gradient(ellipse at 14% 16%, rgba(0, 181, 219, 0.22), transparent 30%),
            radial-gradient(ellipse at 74% 10%, rgba(80, 24, 170, 0.25), transparent 32%),
            #000b1d;
    }

    .tc-tournaments-inner {
        width: calc(100% - 32px);
        height: auto;
        margin: 0 auto;
        flex-flow: column nowrap;
        justify-content: flex-start;
        gap: 24px;
    }

    .tc-tournaments-contents {
        width: 100%;
        flex: 0 0 auto;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .tc-tournaments-contents-text {
        width: 100%;
    }

    .tc-tournaments h2 {
        width: 100%;
    }

    .tc-tournaments-contents-text p {
        margin: 0;
        color: rgba(255, 255, 255, 0.78);
        font-size: 12px;
        line-height: 1.58;
    }

    .tc-tournaments h2 span {
        color: var(--tc-blue);
    }

    .tc-tournaments-contents .tc-button {
        width: 147px;
    }

    .tc-tournament-grid {
        width: 100%;
        flex: 0 0 auto;
        flex-direction: column;
        gap: 24px;
    }

    .tc-tournament-card {
        width: 100%;
        height: auto;
        flex: 0 0 auto;
        border-radius: 0;
    }

    .tc-tournament-grid--single .tc-tournament-card {
        flex: 0 0 auto;
    }

    .tc-tournament-thumb {
        height: auto;
        flex-basis: auto;
        aspect-ratio: 411 / 165;
    }

    .tc-tournament-thumb img {
        object-fit: cover;
    }

    .tc-tournament-thumb span {
        top: 12px;
        right: 16px;
        min-height: 30px;
        padding: 7px 14px;
        border-radius: 5px;
        font-size: 12px;
    }

    .tc-tournament-body {
        height: auto;
        min-height: 178px;
        gap: 16px;
        padding: 24px 18px 18px;
    }

    .tc-tournament-body h3 {
        font-size: 16px;
        line-height: 1.32;
    }

    .tc-tournament-meta {
        gap: 34px;
        font-size: 14px;
    }

    .tc-tournament-statistic,
    .tc-tournament-date {
        width: auto;
        gap: 6px;
        justify-content: center;
    }

    .tc-tournament-statistic img,
    .tc-tournament-date img {
        width: 16px;
        height: 16px;
        object-fit: contain;
    }

    .tc-tournament-body p {
        font-size: 12px;
    }

    .tc-tournament-body a {
        min-width: 92px;
        min-height: 39px;
        padding: 10px 20px;
        border-radius: 0;
        font-size: 14px;
    }

    .tc-topup {
        padding: 32px 0 44px;
        background: #fff url("../images/trangchu/home-mobile-topup-bg.png") center top / cover no-repeat;
    }

    .tc-section-column {
        gap: 24px;
    }

    .tc-topup .tc-section-heading {
        order: 1;
        align-items: center;
        text-align: center;
    }

    .tc-topup .tc-section-heading > div {
        width: 100%;
        gap: 16px;
    }

    .tc-topup .tc-section-button {
        order: 2;
        align-self: center;
    }

    .tc-steps {
        order: 3;
        flex-direction: column;
        align-items: stretch;
        gap: 26px;
        margin-top: 4px;
    }

    .tc-step {
        min-height: 108px;
        padding: 0 0 0 124px;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
    }

    .tc-step span {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        color: var(--tc-blue);
        font-family: var(--tc-heading);
        font-size: 112px;
        line-height: 0.9;
        opacity: 0.96;
    }

    .tc-step h3 {
        margin: 0;
        color: var(--tc-navy);
        font-size: 14px;
        line-height: 1.35;
    }

    .tc-step p {
        font-size: 12px;
        line-height: 1.45;
    }

    .tc-card-exchange {
        padding: 32px 0 48px;
        background: #fff url("../images/trangchu/home-mobile-card-exchange-bg.png") center top / cover no-repeat;
    }

    .tc-exchange-inner {
        gap: 32px;
    }

    .tc-exchange-content {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .tc-exchange-content div {
        width: 100%;
        height: auto;
        gap: 16px;
    }

    .tc-exchange-card {
        height: auto;
        min-height: 0;
        flex-direction: column;
        align-items: stretch;
        border-radius: 0;
    }

    .tc-exchange-guide {
        width: 100%;
        gap: 8px;
        padding: 16px 30px;
    }

    .tc-exchange-guide h2 {
        font-size: 24px;
    }

    .tc-exchange-guide p {
        display: none;
    }

    .tc-exchange-card-thumb {
        width: 100%;
    }

    .tc-exchange-card-thumb img {
        width: 100%;
        height: auto;
    }

    .tc-discount {
        padding: 32px 0 42px;
        background: #fff url("../images/trangchu/home-mobile-discount-bg.png") center top / cover no-repeat;
    }

    .tc-discount .tc-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .tc-discount .tc-section-copy {
        order: 1;
        width: 100%;
        gap: 16px;
    }

    .tc-discount .tc-button {
        min-height: 38px;
        padding: 10px 20px;
        font-size: 14px;
    }

    .tc-discount-art {
        order: 2;
        width: 100%;
        min-height: 258px;
    }

    .tc-discount-art img {
        width: min(100%, 258px);
    }

}

@media (max-width: 520px) {
    .tc-hero-inner {
        background: url("../images/banner_mobile/trang_chu.jpg") center / cover no-repeat;
    }
}

@media (max-width: 390px) {
    .tc-hero-contents h1 {
        font-size: 30px;
    }

    .tc-step {
        padding-left: 108px;
    }

    .tc-step span {
        font-size: 96px;
    }
}
