.t-page {
    position: relative;
    min-height: 100vh;
    overflow-x: clip;
    color: hsl(var(--foreground));
    background:
        radial-gradient(circle at 18% 12%, hsl(var(--primary) / 0.18), transparent 25rem),
        radial-gradient(circle at 80% 18%, hsl(var(--accent) / 0.14), transparent 22rem),
        linear-gradient(135deg, hsl(166 100% 4%) 0%, hsl(var(--background)) 42%, hsl(218 42% 7%) 100%);
    animation: t-page-enter 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.t-page,
.t-page * {
    cursor: none !important;
}

.t-page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(hsl(var(--primary) / 0.05) 1px, transparent 1px),
        linear-gradient(90deg, hsl(var(--accent) / 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, black, transparent 78%);
}

.tb-canvas {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.tb-cursor {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
    overflow: visible !important;
    pointer-events: none !important;
    z-index: 99999 !important;
    opacity: 0;
    color: hsl(var(--primary));
    transform: translate3d(-100px, -100px, 0);
    transition: opacity 0.16s ease;
    contain: layout paint;
    will-change: transform;
}

.tb-cursor--visible {
    opacity: 1;
}

.tb-cursor--scan {
    color: hsl(var(--accent));
}

.tb-cursor__brackets {
    position: absolute !important;
    top: -32px !important;
    left: -32px !important;
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
}

.tb-cursor__brackets svg {
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
}

.tb-cursor__glow {
    position: absolute !important;
    top: -52px !important;
    left: -52px !important;
    width: 104px !important;
    height: 104px !important;
    border-radius: 999px;
    background: radial-gradient(circle, hsl(var(--primary) / 0.14), transparent 70%);
}

.tb-cursor--scan .tb-cursor__glow {
    background: radial-gradient(circle, hsl(var(--accent) / 0.18), transparent 70%);
}

.tb-scanline {
    position: absolute !important;
    height: 0;
    pointer-events: none !important;
    z-index: 50;
    opacity: 0;
    background: linear-gradient(180deg, hsl(var(--primary) / 0.04), hsl(var(--primary) / 0.14), hsl(var(--primary) / 0.04));
    border-top: 1px solid hsl(var(--primary) / 0.26);
    border-bottom: 1px solid hsl(var(--primary) / 0.26);
    transition: opacity 0.16s ease;
}

.t-row--scanned {
    background: hsl(var(--primary) / 0.08) !important;
}

.t-vol--glow {
    color: hsl(var(--primary)) !important;
    text-shadow: 0 0 10px hsl(var(--primary) / 0.45);
}

.tournament-nav {
    position: sticky;
    top: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.25rem;
    min-height: 4.25rem;
    padding: 0.75rem clamp(1rem, 3vw, 2rem);
    border-bottom: 1px solid hsl(var(--primary) / 0.2);
    background:
        linear-gradient(90deg, hsl(var(--background) / 0.96), hsl(var(--card) / 0.94)),
        repeating-linear-gradient(90deg, hsl(var(--primary) / 0.07) 0 1px, transparent 1px 44px);
    backdrop-filter: blur(18px);
}

.tournament-nav::after {
    content: "";
    position: absolute;
    inset: auto 0 -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, hsl(var(--primary) / 0.65), hsl(var(--accent) / 0.45), transparent);
    pointer-events: none;
}

.tournament-nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.tournament-nav__logo img {
    width: 140px !important;
    height: auto !important;
    filter: drop-shadow(0 0 12px hsl(var(--primary) / 0.24));
}

.tournament-nav__realm {
    display: inline-flex;
    align-items: center;
    height: 2rem;
    padding: 0 0.75rem;
    border: 1px solid hsl(var(--primary) / 0.26);
    border-radius: 6px;
    color: hsl(var(--primary));
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: hsl(var(--primary) / 0.08);
}

.tournament-nav__links,
.tournament-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.tournament-nav__links {
    justify-content: center;
}

.tournament-nav__actions {
    justify-content: flex-end;
}

.tournament-nav__link,
.tournament-nav__link-button,
.tournament-nav__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.35rem;
    padding: 0 0.86rem;
    border-radius: 7px;
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.tournament-nav__link {
    color: hsl(var(--muted-foreground));
}

.tournament-nav__link:hover,
.tournament-nav__link--active {
    color: hsl(var(--foreground));
    background: hsl(var(--primary) / 0.09);
}

.tournament-nav__link-button {
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border) / 0.8);
    background: hsl(var(--card) / 0.72);
}

.tournament-nav__button {
    color: hsl(var(--primary-foreground));
    border: 1px solid hsl(var(--primary) / 0.75);
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    box-shadow: 0 12px 28px hsl(var(--primary) / 0.16);
}

.tournament-nav__link-button:hover,
.tournament-nav__button:hover {
    transform: translateY(-1px);
}

.t-intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(var(--background)), hsl(170 70% 5%) 48%, hsl(220 34% 7%));
}

.t-intro-rig {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(22rem, 82vw);
    height: 180px;
    transform: translate(-50%, -50%);
}

.t-intro-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    transform: translate(-50%, -50%);
}

.t-intro-brackets {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 180px;
    height: 180px;
    translate: -50% -50%;
    opacity: 0;
    color: hsl(var(--primary));
    pointer-events: none;
}

.t-intro-brackets svg,
.t-intro-logo__svg {
    width: 100%;
    height: 100%;
}

.t-intro-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 122px;
    aspect-ratio: 203.28 / 83.05;
}

.t-intro-logo__left,
.t-intro-logo__right {
    opacity: 0;
}

.t-intro-line {
    position: absolute;
    left: 50%;
    top: calc(50% + 72px);
    width: 140px;
    height: 1px;
    background: linear-gradient(90deg, transparent, hsl(var(--primary)), transparent);
    transform-origin: center;
    translate: -50% 0;
}

.t-intro-text {
    position: absolute;
    left: 0;
    top: calc(50% + 88px);
    width: 100%;
    color: hsl(var(--primary));
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.26em;
    text-align: center;
    text-transform: uppercase;
    opacity: 0;
}

.t-hero,
.t-arena-brief,
.t-leaderboard-section {
    position: relative;
    z-index: 3;
}

.t-hero__grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, transparent 0 48%, hsl(var(--primary) / 0.08) 49% 51%, transparent 52% 100%),
        radial-gradient(circle at center, hsl(var(--primary) / 0.08), transparent 38rem);
    background-size: 180px 180px, auto;
}

.t-hero-content {
    padding: clamp(2.5rem, 5vw, 5rem) 0 clamp(2rem, 4vw, 3.5rem);
    perspective: 900px;
}

.t-hero__kicker {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    max-width: 68rem;
    margin: 0 auto 1rem;
    color: hsl(var(--muted-foreground));
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.t-hero-content__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
    gap: clamp(1rem, 3vw, 2.5rem);
    max-width: 68rem;
    margin: 0 auto;
    padding: clamp(1.25rem, 3vw, 2.5rem);
    border: 1px solid hsl(var(--primary) / 0.2);
    border-radius: 8px;
    background:
        linear-gradient(135deg, hsl(var(--card) / 0.8), hsl(var(--background) / 0.55)),
        linear-gradient(90deg, hsl(var(--primary) / 0.1), transparent 38%, hsl(var(--accent) / 0.08));
    box-shadow: 0 24px 90px hsl(0 0% 0% / 0.42), inset 0 1px 0 hsl(0 0% 100% / 0.05);
    overflow: hidden;
    transition: transform 0.15s ease-out, border-color 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}

.t-hero-content__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(90deg, transparent 0 49%, hsl(var(--primary) / 0.14) 50%, transparent 51% 100%),
        linear-gradient(0deg, transparent 0 49%, hsl(var(--accent) / 0.08) 50%, transparent 51% 100%);
    background-size: 90px 90px;
    opacity: 0.24;
    pointer-events: none;
}

.t-hero-content__inner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 0 42%, hsl(var(--primary) / 0.08) 48%, transparent 56% 100%);
    transform: translateX(-100%);
    animation: t-panel-scan 5.5s ease-in-out infinite;
}

.t-hero-content__inner:hover {
    border-color: hsl(var(--primary) / 0.4);
    box-shadow: 0 28px 110px hsl(var(--primary) / 0.1), 0 24px 90px hsl(0 0% 0% / 0.42);
}

.t-hero__copy,
.t-stats-row {
    position: relative;
    z-index: 1;
}

.t-live-badge,
.t-days-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.t-live-badge {
    gap: 0.55rem;
    padding: 0.45rem 0.8rem;
    margin-bottom: 1.15rem;
    border: 1px solid hsl(var(--primary) / 0.28);
    color: hsl(var(--primary));
    background: hsl(var(--primary) / 0.1);
}

.t-live-badge__dot {
    position: relative;
    display: inline-flex;
    width: 8px;
    height: 8px;
}

.t-live-badge__ping {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: hsl(var(--primary));
    animation: t-ping 1.5s cubic-bezier(0, 0, .2, 1) infinite;
}

.t-live-badge__dot::after {
    content: "";
    position: relative;
    z-index: 1;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: hsl(var(--primary));
}

.t-hero__title {
    max-width: 11ch;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
    font-size: clamp(2.45rem, 7vw, 5.8rem);
    font-weight: 950;
    line-height: 0.92;
    letter-spacing: 0;
}

.t-hero__subtitle {
    max-width: 38rem;
    margin-bottom: 1.25rem;
    color: hsl(var(--muted-foreground));
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
}

.t-hero__date {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    color: hsl(var(--muted-foreground));
    font-size: 0.9rem;
}

.t-hero__date svg {
    color: hsl(var(--primary));
}

.t-days-badge {
    min-height: 1.55rem;
    padding: 0 0.55rem;
    border: 1px solid hsl(var(--secondary) / 0.24);
    color: hsl(var(--secondary));
    background: hsl(var(--secondary) / 0.1);
}

.t-stats-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.t-stat {
    position: relative;
    min-height: 8.25rem;
    padding: 1rem;
    border: 1px solid hsl(var(--border) / 0.68);
    border-radius: 8px;
    background: hsl(var(--background) / 0.42);
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.t-stat::after {
    content: "";
    position: absolute;
    right: 0.8rem;
    bottom: 0.8rem;
    width: 2.6rem;
    height: 2.6rem;
    border-right: 1px solid hsl(var(--primary) / 0.34);
    border-bottom: 1px solid hsl(var(--primary) / 0.34);
}

.t-stat:hover {
    transform: translateY(-3px);
    border-color: hsl(var(--primary) / 0.34);
    background: hsl(var(--card) / 0.62);
}

.t-stat__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.45rem;
    height: 2.45rem;
    margin-bottom: 0.9rem;
    border-radius: 7px;
    color: hsl(var(--primary));
    background: hsl(var(--primary) / 0.1);
}

.t-stat__label {
    margin-bottom: 0.3rem;
    color: hsl(var(--muted-foreground));
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.t-stat__value {
    color: hsl(var(--foreground));
    font-size: clamp(1.55rem, 3vw, 2.05rem);
    font-weight: 950;
    line-height: 1;
}

.t-stat__sub {
    margin-top: 0.25rem;
    color: hsl(var(--muted-foreground) / 0.76);
    font-size: 0.72rem;
    font-weight: 800;
}

.t-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.6rem;
}

.t-joined-badge,
.t-join-btn,
.t-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0 1.15rem;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.t-join-btn {
    color: hsl(var(--primary-foreground));
    border: 1px solid hsl(var(--primary));
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    box-shadow: 0 16px 34px hsl(var(--primary) / 0.18);
}

.t-join-btn:hover,
.t-details-btn:hover {
    transform: translateY(-2px);
}

.t-join-btn:disabled {
    opacity: 0.68;
    transform: none;
    cursor: not-allowed !important;
}

.t-details-btn,
.t-joined-badge {
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card) / 0.62);
}

.t-details-btn:hover {
    border-color: hsl(var(--primary) / 0.42);
    color: hsl(var(--primary));
}

.t-joined-badge {
    color: hsl(var(--primary));
    border-color: hsl(var(--primary) / 0.28);
    background: hsl(var(--primary) / 0.1);
}

.t-arena-brief {
    padding: 0 0 clamp(2.25rem, 4vw, 3.5rem);
}

.t-seasons-section {
    position: relative;
    z-index: 3;
    padding: 0 0 clamp(2.25rem, 4vw, 3.5rem);
}

.t-season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 0.85rem;
}

.t-season-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 13rem;
    padding: 1rem;
    border: 1px solid hsl(var(--border) / 0.72);
    border-radius: 8px;
    color: hsl(var(--foreground));
    background:
        linear-gradient(145deg, hsl(var(--card) / 0.74), hsl(var(--background) / 0.54)),
        linear-gradient(90deg, hsl(var(--primary) / 0.08), transparent);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.t-season-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent, hsl(var(--primary) / 0.08), transparent);
    transform: translateX(-120%);
    transition: transform 0.5s ease;
}

.t-season-card:hover {
    transform: translateY(-3px);
    border-color: hsl(var(--primary) / 0.38);
    box-shadow: 0 18px 44px hsl(0 0% 0% / 0.28);
}

.t-season-card:hover::before {
    transform: translateX(120%);
}

.t-season-card--featured {
    border-color: hsl(var(--primary) / 0.45);
    background:
        linear-gradient(145deg, hsl(var(--primary) / 0.12), hsl(var(--card) / 0.72)),
        linear-gradient(90deg, hsl(var(--primary) / 0.12), transparent);
}

.t-season-card__status,
.t-season-card__featured {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 1.55rem;
    margin-bottom: 0.75rem;
    padding: 0 0.55rem;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.t-season-card__status--live {
    color: hsl(var(--primary));
    border: 1px solid hsl(var(--primary) / 0.28);
    background: hsl(var(--primary) / 0.1);
}

.t-season-card__status--done {
    color: hsl(var(--accent));
    border: 1px solid hsl(var(--accent) / 0.24);
    background: hsl(var(--accent) / 0.08);
}

.t-season-card__status--draft {
    color: hsl(var(--muted-foreground));
    border: 1px solid hsl(var(--border));
    background: hsl(var(--muted) / 0.45);
}

.t-season-card__featured {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: hsl(var(--primary-foreground));
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
}

.t-season-card strong {
    position: relative;
    z-index: 1;
    margin-top: auto;
    font-size: 1.3rem;
    font-weight: 950;
    line-height: 1.12;
}

.t-season-card__date,
.t-season-card__meta {
    position: relative;
    z-index: 1;
    color: hsl(var(--muted-foreground));
    font-size: 0.85rem;
}

.t-season-card__date {
    margin-top: 0.55rem;
}

.t-season-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.9rem;
}

.t-season-card__meta span {
    padding: 0.25rem 0.45rem;
    border: 1px solid hsl(var(--border) / 0.75);
    border-radius: 6px;
    background: hsl(var(--background) / 0.45);
}

.t-brief-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, minmax(0, 0.75fr));
    gap: 0.75rem;
}

.t-brief-card {
    position: relative;
    min-height: 10rem;
    padding: 1rem;
    border: 1px solid hsl(var(--border) / 0.72);
    border-radius: 8px;
    color: hsl(var(--foreground));
    background:
        linear-gradient(145deg, hsl(var(--card) / 0.72), hsl(var(--background) / 0.5)),
        linear-gradient(90deg, hsl(var(--primary) / 0.08), transparent);
    overflow: hidden;
    text-decoration: none;
}

.t-brief-card::after {
    content: "";
    position: absolute;
    inset: auto 1rem 1rem auto;
    width: 2.5rem;
    height: 2.5rem;
    border-right: 1px solid hsl(var(--primary) / 0.34);
    border-bottom: 1px solid hsl(var(--primary) / 0.34);
}

.t-brief-card--wide {
    grid-column: span 1;
}

.t-brief-card--action:hover {
    border-color: hsl(var(--primary) / 0.42);
    transform: translateY(-2px);
}

.t-brief-card__eyebrow {
    display: block;
    margin-bottom: 0.7rem;
    color: hsl(var(--primary));
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.t-brief-card h2 {
    max-width: 12ch;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 950;
    line-height: 0.98;
}

.t-brief-card strong {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 1.08rem;
}

.t-brief-card p {
    margin-top: 0.75rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.t-leaderboard-section {
    padding: clamp(2.5rem, 5vw, 4.5rem) 0 5rem;
}

.t-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.t-section-heading__eyebrow {
    display: block;
    margin-bottom: 0.35rem;
    color: hsl(var(--primary));
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.t-section-heading h2 {
    color: hsl(var(--foreground));
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 950;
    line-height: 1.05;
}

.t-section-heading p {
    margin-top: 0.4rem;
    color: hsl(var(--muted-foreground));
}

.t-season-select {
    min-height: 2.6rem;
    padding: 0 0.8rem;
    border: 1px solid hsl(var(--border));
    border-radius: 8px;
    color: hsl(var(--foreground));
    background: hsl(var(--card));
    font-size: 0.9rem;
}

.t-empty-state,
.t-empty-panel {
    text-align: center;
}

.t-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 38rem;
    margin: 0 auto;
    padding: 6rem 1rem;
}

.t-empty-panel {
    padding: 5rem 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: 8px;
    background: hsl(var(--card) / 0.62);
}

.t-podium {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    padding: 1.1rem 0.8rem;
    border: 1px solid hsl(var(--border));
    border-radius: 8px;
    background: linear-gradient(180deg, hsl(var(--card) / 0.82), hsl(var(--background) / 0.62));
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.t-podium:hover {
    transform: translateY(-4px);
    border-color: hsl(var(--primary) / 0.32);
    box-shadow: 0 18px 44px hsl(0 0% 0% / 0.28);
}

.t-podium--gold {
    border-color: hsl(var(--primary) / 0.42);
    background: linear-gradient(180deg, hsl(var(--primary) / 0.12), hsl(var(--card) / 0.72));
}

.t-podium__crown {
    margin-bottom: -0.25rem;
    color: hsl(var(--primary));
    animation: t-crown 3s ease-in-out infinite;
}

.t-podium__medal,
.t-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--background));
    font-weight: 950;
}

.t-podium__medal {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    font-size: 1.05rem;
}

.t-podium__medal--gold,
.t-rank--gold {
    background: hsl(var(--primary));
}

.t-podium__medal--silver,
.t-rank--silver {
    background: hsl(var(--muted-foreground));
}

.t-podium__medal--bronze,
.t-rank--bronze {
    background: hsl(var(--secondary));
}

.t-podium__email {
    max-width: 100%;
    color: hsl(var(--foreground));
    font-size: 0.82rem;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.t-podium__exchanges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
}

.t-podium__volume {
    color: hsl(var(--foreground));
    font-size: 1.08rem;
    font-weight: 950;
}

.t-podium__volume--gold {
    color: hsl(var(--primary));
}

.t-podium__cashback {
    color: hsl(var(--muted-foreground));
    font-size: 0.72rem;
}

.t-rank {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    font-size: 0.74rem;
}

.t-table-header,
.t-table-row {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) minmax(80px, auto) minmax(90px, auto) minmax(110px, auto);
    align-items: center;
}

.t-table-header {
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid hsl(var(--border));
    background: hsl(var(--muted) / 0.44);
}

.t-table-header__col {
    display: flex;
    align-items: center;
    color: hsl(var(--muted-foreground));
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.t-table-header__col--rank,
.t-table-header__col--trader {
    justify-content: flex-start;
}

.t-table-header__col--exchanges {
    justify-content: center;
}

.t-table-header__col--cashback,
.t-table-header__col--volume {
    justify-content: flex-end;
}

.t-table-body {
    display: flex;
    flex-direction: column;
}

.t-table-row {
    min-height: 4rem;
    padding: 0.75rem 1.2rem;
    border-bottom: 1px solid hsl(var(--border) / 0.52);
    transition: background 0.15s ease;
}

.t-table-row:last-child {
    border-bottom: none;
}

.t-table-row:hover {
    background: hsl(var(--muted) / 0.28);
}

.t-table-row--top {
    background: hsl(var(--primary) / 0.035);
}

.t-table-row__rank,
.t-table-row__trader,
.t-table-row__exchanges,
.t-table-row__cashback,
.t-table-row__volume {
    display: flex;
    align-items: center;
    min-width: 0;
}

.t-table-row__trader span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.t-table-row__exchanges {
    justify-content: center;
    gap: 0.25rem;
}

.t-table-row__cashback,
.t-table-row__volume {
    justify-content: flex-end;
}

.t-prize-section {
    margin-top: 2.5rem;
}

.t-prize-section h3 {
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
    font-size: 1.25rem;
    font-weight: 950;
}

.t-prizes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 0.75rem;
}

.t-prize-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
    padding: 0.95rem;
    border: 1px solid hsl(var(--border));
    border-radius: 8px;
    background: hsl(var(--card) / 0.7);
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.t-prize-card:hover {
    transform: translateY(-2px);
    border-color: hsl(var(--primary) / 0.32);
}

.t-prize-card--top {
    border-color: hsl(var(--primary) / 0.28);
    background: hsl(var(--primary) / 0.06);
}

.t-prize-card__rank {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 2.2rem;
    height: 2.2rem;
    border-radius: 7px;
    color: hsl(var(--muted-foreground));
    background: hsl(var(--muted));
    font-size: 0.8rem;
    font-weight: 950;
}

.t-prize-card__rank--gold {
    color: hsl(var(--primary));
    background: hsl(var(--primary) / 0.14);
}

.t-prize-card__rank--silver {
    color: hsl(var(--muted-foreground));
    background: hsl(var(--muted-foreground) / 0.14);
}

.t-prize-card__rank--bronze {
    color: hsl(var(--secondary));
    background: hsl(var(--secondary) / 0.14);
}

.t-prize-card__amount {
    color: hsl(var(--foreground));
    font-size: 1.02rem;
    font-weight: 950;
    white-space: nowrap;
}

.t-prize-card__currency,
.t-prize-card__label {
    color: hsl(var(--muted-foreground));
    font-size: 0.72rem;
    font-weight: 800;
}

.t-prize-card__currency {
    margin-left: 0.2rem;
}

.t-prize-card__label {
    margin-left: auto;
    text-align: right;
}

.t-row {
    animation: t-row-slide 0.45s ease-out both;
}

@keyframes t-page-enter {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes t-ping {
    75%, 100% { transform: scale(2.5); opacity: 0; }
}

@keyframes t-panel-scan {
    0%, 42% { transform: translateX(-120%); }
    72%, 100% { transform: translateX(120%); }
}

@keyframes t-crown {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(-4deg); }
    75% { transform: translateY(-3px) rotate(4deg); }
}

@keyframes t-row-slide {
    from { opacity: 0; transform: translateX(-16px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 980px) {
    .tournament-nav {
        grid-template-columns: 1fr auto;
        gap: 0.75rem;
    }

    .tournament-nav__links {
        grid-column: 1 / -1;
        order: 3;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.1rem;
    }

    .t-hero-content__inner,
    .t-season-grid,
    .t-brief-grid {
        grid-template-columns: 1fr;
    }

    .t-stats-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .tb-canvas,
    .tb-cursor {
        display: none !important;
    }

    .t-page,
    .t-page * {
        cursor: auto !important;
    }

    .tournament-nav__realm,
    .tournament-nav__actions .tournament-nav__link-button {
        display: none;
    }

    .t-hero__kicker,
    .t-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .t-hero-content__inner {
        padding: 1rem;
    }

    .t-hero__title {
        max-width: 100%;
    }

    .t-stats-row {
        grid-template-columns: 1fr;
    }

    .t-join-btn,
    .t-details-btn,
    .t-joined-badge {
        width: 100%;
    }

    .t-table-header__col--exchanges,
    .t-table-header__col--cashback,
    .t-table-row__exchanges,
    .t-table-row__cashback {
        display: none;
    }

    .t-table-header,
    .t-table-row {
        grid-template-columns: 48px minmax(0, 1fr) minmax(92px, auto);
        padding-right: 0.85rem;
        padding-left: 0.85rem;
    }

    .t-podium {
        padding: 0.75rem 0.45rem;
    }

    .t-podium__email {
        font-size: 0.68rem;
    }

    .t-podium__volume {
        font-size: 0.9rem;
    }
}

@media (min-width: 641px) and (max-width: 768px) {
    .t-table-header__col--cashback,
    .t-table-row__cashback {
        display: none;
    }

    .t-table-header,
    .t-table-row {
        grid-template-columns: 56px minmax(0, 1fr) minmax(80px, auto) minmax(100px, auto);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tb-canvas,
    .tb-cursor,
    .t-intro-overlay {
        display: none !important;
    }

    .t-hero-content__inner {
        transform: none !important;
    }

    .t-row,
    .t-podium__crown,
    .t-live-badge__ping,
    .t-hero-content__inner::after {
        animation: none !important;
    }
}
