/* ========================= */
/* TOURNAMENT — balanced      */
/* (orta yükseklik, sade)   */
/* ========================= */

.trn-section {
    padding: 26px 0 22px;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
}


.trn-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.trn-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 1.125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    font-family: inherit;
}

@media (min-width: 1024px) {
    .trn-section-title { font-size: 1.35rem; }
}

.trn-section-accent {
    width: 6px;
    height: 24px;
    border-radius: 99px;
    background: linear-gradient(to bottom, #00ff87, #16a34a);
    box-shadow: 0 0 15px rgba(0, 255, 135, 0.5);
    flex-shrink: 0;
}

.trn-view-all {
    font-size: 11px;
    font-weight: 800;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: color 0.15s ease;
}

.trn-view-all:hover { color: #fff; }

/* ========================= */
/* NEW V2 CARD GRID          */
/* ========================= */
.trn-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 8px;
}

@media (max-width: 1099px) {
    .trn-v2-banner { height: 215px; overflow: hidden; }
    .trn-v2-banner img { width: 100%; height: 215px !important; object-fit: cover; object-position: right center; display: block; }
}

@media (min-width: 768px) and (max-width: 1099px) {
    .trn-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 14px;
        padding-bottom: 4px;
    }
    .trn-grid::-webkit-scrollbar { display: none; }
    .trn-grid > * {
        flex: 0 0 calc(50% - 7px);
        scroll-snap-align: start;
        min-width: 0;
    }
}

@media (min-width: 1100px) {
    .trn-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- TABLET NAV ARROWS --- */
.trn-grid-outer {
    position: relative;
}

.trn-nav-side {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(10,12,22,0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.trn-nav-side:hover { background: rgba(0,255,135,0.15); border-color: rgba(0,255,135,0.4); }

.trn-nav-side--right { right: -14px; }
.trn-nav-side--left  { left: -14px; }

@media (min-width: 768px) and (max-width: 1099px) {
    .trn-nav-side { display: flex; }
}

/* --- V2 CARD: banner image + overlay left + footer below --- */
.trn-card-v2 {
    background: #171a27;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.trn-card-v2:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.6); }

/* Banner image container — natural image size */
.trn-v2-banner {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.trn-v2-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* No overlay */
.trn-v2-overlay { display: none; }

/* No overlay — image has dark left side built in */
.trn-v2-overlay { display: none; }

/* Left overlay on image — top aligned */
.trn-v2-left-overlay {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 54%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Tournament name — fixed height so badges below stay aligned */
.trn-v2-name {
    font-size: 19px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.15;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.9);
    min-height: 66px;
    display: flex;
    align-items: flex-start;
}

.trn-v2-year { color: #fbbf24; }

/* Countdown block */
.trn-v2-cd { display: flex; flex-direction: column; gap: 6px; }

.trn-v2-cd-label {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    background: #fbbf24;
    color: #000;
}
.trn-card-freeroll-v2 .trn-v2-name     { font-size: 16px; }
.trn-card-freeroll-v2 .trn-v2-cd-label { background: #a855f7; color: #fff; }
.trn-card-wc .trn-v2-cd-label          { background: #fbbf24; color: #000; }

/* DD HH MM SS grid */
.trn-v2-cd-grid {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(0,0,0,0.55);
    border-radius: 8px;
    padding: 8px 10px;
    width: fit-content;
}

.trn-v2-cd-cell { display: flex; flex-direction: column; align-items: center; min-width: 26px; }

.trn-v2-cd-cell span {
    font-family: 'Roboto Mono', monospace;
    font-size: 22px;
    font-weight: 700;
    color: #fde68a;
    line-height: 1;
}
.trn-card-freeroll-v2 .trn-v2-cd-cell span { color: #d8b4fe; }
.trn-card-wc .trn-v2-cd-cell span          { color: #fde68a; }

.trn-v2-cd-cell small {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 3px;
}

.trn-v2-cd-sep {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    padding: 0 2px;
    margin-bottom: 10px;
}

/* Prize pool strip — pink pill like reference */
.trn-v2-pool-strip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    background: #fbbf24;
    color: #000;
}
.trn-v2-pool-strip strong { font-size: 20px; font-weight: 900; line-height: 1; }
.trn-pool-purple { background: #7c3aed; color: #fff; }
.trn-pool-gold   { background: #fbbf24; color: #000; }
.trn-pool-soon   { background: rgba(251,191,36,0.15); color: #fbbf24; border: 1px solid rgba(251,191,36,0.4); }

.trn-v2-left-mid { display: flex; flex-direction: column; gap: 8px; }

/* Info section below image */
.trn-v2-info {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trn-v2-info-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Body wrapper — fills space between banner and footer */
.trn-v2-body {
    flex: 1;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
}

/* Prize table */
.trn-v2-prizes {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    overflow: hidden;
}

.trn-v2-prize-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    gap: 8px;
}

.trn-v2-prize-row:last-child { border-bottom: none; }

.trn-v2-prize-row:nth-child(odd) { background: rgba(255,255,255,0.02); }

.trn-v2-place {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    min-width: 36px;
}

.trn-v2-prize-val {
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    flex: 1;
    text-align: center;
}

.trn-v2-prize-val.gold { color: #fbbf24; }
.trn-v2-prize-val.neon { color: #c084fc; }

.trn-v2-prize-unit {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    text-align: right;
    min-width: 40px;
}

/* Badge — simple pill, no blur */
.trn-v2-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    background: #fbbf24;
    color: #000;
}

.trn-v2-badge-free { background: #a855f7; color: #fff; }
.trn-v2-badge-wc   { background: #fff; color: #000; }

/* Pool pill */
.trn-v2-pool-pill {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    background: rgba(251,191,36,0.18);
    border: 1px solid rgba(251,191,36,0.35);
    color: #fbbf24;
    backdrop-filter: blur(6px);
}

.trn-v2-pool-neon {
    background: rgba(0,255,135,0.15);
    border-color: rgba(0,255,135,0.3);
    color: #00ff87;
}

.trn-v2-pool-gold {
    background: rgba(251,191,36,0.18);
    border-color: rgba(251,191,36,0.35);
    color: #fbbf24;
}

/* Name */
.trn-v2-name {
    font-size: 22px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #fff;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.trn-v2-year { color: #fbbf24; }

/* Countdown row */
.trn-v2-countdown-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 6px 12px;
    width: fit-content;
}

.trn-v2-ends {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
}

.trn-v2-timer {
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
    color: #fff;
    font-size: 14px;
}

/* Mini stat */
.trn-v2-mini-stat {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}
.trn-v2-mini-stat .gold { color: #fbbf24; font-weight: 900; font-size: 14px; }
.trn-v2-mini-stat .neon { color: #00ff87; font-weight: 900; font-size: 14px; }

/* Footer row */
.trn-v2-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* World Cup grid */
.trn-v2-wc-grid {
    display: flex;
    gap: 6px;
}

.trn-v2-wc-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(251,191,36,0.25);
    border-radius: 10px;
    padding: 8px 8px 5px;
    flex: 1;
    min-width: 0;
}

.trn-v2-wc-cell span {
    font-family: 'Roboto Mono', monospace;
    font-size: 20px;
    font-weight: 700;
    color: #fbbf24;
    line-height: 1;
}

.trn-v2-wc-cell small {
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}

.trn-v2-wc-opening {
    font-size: 9px;
    color: rgba(255,255,255,0.35);
    margin: 0;
    line-height: 1.4;
}

/* WC Bonus rows */
.trn-v2-bonuses {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    overflow: hidden;
}

.trn-v2-bonus-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trn-v2-bonus-row:last-child { border-bottom: none; }
.trn-v2-bonus-row:nth-child(odd) { background: rgba(255,255,255,0.02); }

.trn-bonus-icon { color: #fbbf24; flex-shrink: 0; }
.trn-bonus-soon .trn-bonus-icon { color: rgba(255,255,255,0.3); }

.trn-bonus-name {
    font-size: 10px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    flex: 1;
}

.trn-bonus-val {
    font-size: 11px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: #fbbf24;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.trn-bonus-soon .trn-bonus-name,
.trn-bonus-soon .trn-bonus-val { color: rgba(255,255,255,0.35); }

/* Footer */
.trn-v2-footer {
    padding: 12px 16px 16px;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: auto;
}

/* CTA */
.trn-v2-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #fbbf24;
    color: #000;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.15s;
    cursor: pointer;
    border: none;
}

.trn-v2-btn:hover { opacity: 0.88; transform: scale(1.01); }
.trn-v2-btn-neon { background: #a855f7; color: #fff; }
.trn-v2-btn-wc { background: linear-gradient(135deg, #0ea5e9, #0284c7); color: #fff; }

/* Card borders */
.trn-card-loyalty    { border-color: rgba(251,191,36,0.2); }
.trn-card-freeroll-v2 { border-color: rgba(0,255,135,0.2); }
.trn-card-wc         { border-color: rgba(56,189,248,0.3); }

/* WC card — blue theme overrides */
.trn-card-wc .trn-v2-name          { display: block; min-height: 66px; }
.trn-card-wc .trn-v2-year          { color: #38bdf8; }
.trn-card-wc .trn-v2-cd-label      { background: #0284c7; color: #fff; }
.trn-card-wc .trn-v2-cd-cell span  { color: #7dd3fc; }
.trn-v2-badge-wc                   { background: #0ea5e9; color: #fff; }
.trn-card-wc .trn-bonus-icon       { color: #38bdf8; }
.trn-card-wc .trn-bonus-val        { color: #38bdf8; }
.trn-card-wc .trn-pool-soon        { background: rgba(56,189,248,0.12); color: #7dd3fc; border-color: rgba(56,189,248,0.35); }

/* Split */
.trn-split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 1024px) {
    .trn-split-layout {
        grid-template-columns: 1fr 1fr minmax(300px, 360px);
        align-items: stretch;
    }
}

.trn-left-col,
.trn-center-col,
.trn-right-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Main tournament card */
.trn-card {
    background: #171a27;
    border: 1px solid rgba(255, 180, 0, 0.22);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.trn-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.trn-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 50% at 50% 0%, rgba(255, 180, 0, 0.07) 0%, transparent 55%);
    pointer-events: none;
}

.trn-banner,
.trn-loyalty-note,
.trn-stats,
.trn-footer {
    position: relative;
    z-index: 1;
}

/* Banner */
.trn-banner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 18px 18px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (min-width: 768px) {
    .trn-banner {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        padding: 22px 24px 20px;
        gap: 20px;
    }
}

.trn-banner-text { min-width: 0; }

.trn-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 180, 0, 0.12);
    border: 1px solid rgba(255, 180, 0, 0.32);
    color: #fbbf24;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
    width: fit-content;
}

.trn-badge-dot {
    width: 7px;
    height: 7px;
    background: #fbbf24;
    border-radius: 50%;
    animation: trn-pulse 1.6s ease-in-out infinite;
}

@keyframes trn-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.trn-name {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

@media (min-width: 1024px) {
    .trn-name { font-size: 1.45rem; }
}

.trn-dates {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 600;
    color: #5a6470;
}

.trn-dates span { color: #9ca3af; }

.trn-weekly-note {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: rgba(251, 191, 36, 0.75);
    line-height: 1.45;
}

/* Prize pool callout */
.trn-pool-block {
    text-align: left;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.22);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .trn-pool-block { text-align: right; min-width: 160px; }
}

.trn-pool-label {
    font-size: 10px;
    font-weight: 800;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 4px;
}

.trn-pool-value {
    font-size: 2rem;
    font-weight: 900;
    color: #fbbf24;
    line-height: 1;
    text-shadow: 0 0 18px rgba(251, 191, 36, 0.35);
}

@media (min-width: 768px) {
    .trn-pool-value { font-size: 2.25rem; }
}

.trn-pool-unit {
    font-size: 11px;
    font-weight: 700;
    color: rgba(251, 191, 36, 0.7);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Loyalty strip */
.trn-loyalty-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    background: rgba(255, 180, 0, 0.05);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 12px;
    font-weight: 700;
    color: #8a9199;
}

@media (min-width: 768px) {
    .trn-loyalty-note { padding: 11px 24px; }
}

.trn-loyalty-icon { font-size: 16px; flex-shrink: 0; }

/* Stats */
.trn-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trn-stat {
    padding: 14px 10px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.trn-stat:last-child { border-right: none; }

@media (min-width: 768px) {
    .trn-stat { padding: 16px 18px; }
}

.trn-stat-val {
    font-size: 1.15rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.trn-stat-val.gold { color: #fbbf24; }

.trn-stat-lbl {
    font-size: 10px;
    font-weight: 800;
    color: #5a6470;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trn-stat-unit {
    font-size: 9px;
    font-weight: 600;
    color: #4b5563;
    margin-top: 3px;
    text-transform: uppercase;
}

/* Footer */
.trn-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px 18px 18px;
    flex-shrink: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.15);
}

@media (min-width: 640px) {
    .trn-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 18px 24px 20px;
    }
}

.trn-countdown {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.trn-countdown-lbl {
    font-size: 12px;
    font-weight: 800;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.trn-countdown-val {
    font-size: 15px;
    font-weight: 900;
    color: #fbbf24;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
}

.trn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fbbf24, #ea580c);
    color: #000;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 0 22px rgba(251, 191, 36, 0.28);
    white-space: nowrap;
    text-align: center;
}

.trn-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 32px rgba(251, 191, 36, 0.45);
}

/* Freeroll card — neon green accent */
.trn-card-freeroll {
    background: #171a27;
    border: 1px solid rgba(0, 255, 135, 0.22);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.trn-card-freeroll::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 50% at 50% 0%, rgba(0, 255, 135, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.trn-badge-free {
    background: rgba(0, 255, 135, 0.12);
    border-color: rgba(0, 255, 135, 0.32);
    color: #00ff87;
}

.trn-badge-free .trn-badge-dot {
    background: #00ff87;
    animation: trn-pulse 1.6s ease-in-out infinite;
}

.trn-pool-block-free {
    text-align: left;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(0, 255, 135, 0.07);
    border: 1px solid rgba(0, 255, 135, 0.2);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .trn-pool-block-free { text-align: right; min-width: 140px; }
}

.trn-pool-value-free {
    font-size: 2rem;
    font-weight: 900;
    color: #00ff87;
    line-height: 1;
    text-shadow: 0 0 18px rgba(0, 255, 135, 0.35);
}

.trn-pool-unit-free {
    font-size: 11px;
    font-weight: 700;
    color: rgba(0, 255, 135, 0.7);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.trn-formula-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(0, 255, 135, 0.05);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 12px;
    font-weight: 800;
    color: #4b5563;
    letter-spacing: 0.06em;
}

.trn-formula-strip .trn-formula-val {
    color: #00ff87;
    font-size: 13px;
}

.trn-stat-val.neon { color: #00ff87; }

.trn-countdown-val-free {
    font-size: 15px;
    font-weight: 900;
    color: #00ff87;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
}

.trn-btn-free {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00ff87, #00c864);
    color: #000;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 0 22px rgba(0, 255, 135, 0.28);
    white-space: nowrap;
    text-align: center;
}

.trn-btn-free:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 32px rgba(0, 255, 135, 0.5);
}

/* World Cup card */
.trn-wc-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 22px 20px 0;
    border-radius: 20px;
    background: linear-gradient(160deg, #0a121f 0%, #070d18 45%, #0a1525 100%);
    border: 1px solid rgba(14, 165, 233, 0.28);
    text-decoration: none;
    color: inherit;
    flex: 1;
    min-height: 0;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.trn-wc-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-bottom: 4px;
    position: relative;
    z-index: 1;
}

.trn-wc-card:hover {
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 0 28px rgba(14, 165, 233, 0.14);
}

.trn-wc-glow {
    position: absolute;
    top: -40%;
    right: -30%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 68%);
    pointer-events: none;
}

.trn-wc-top {
    position: relative;
    z-index: 1;
}

.trn-wc-tagline {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
    color: rgba(56, 189, 248, 0.85);
    letter-spacing: 0.02em;
}

.trn-wc-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.trn-wc-trophy-img {
    width: 64px;
    height: auto;
    max-height: 88px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,0.45));
}

@media (min-width: 768px) {
    .trn-wc-trophy-img {
        width: 72px;
        max-height: 96px;
    }
}

.trn-wc-titles {
    min-width: 0;
}

.trn-wc-title-line {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    line-height: 1.3;
}

.trn-wc-year {
    display: inline-block;
    margin-left: 6px;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(100deg, #38bdf8, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trn-wc-badge {
    margin-top: 8px;
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #38bdf8;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.25);
}

.trn-wc-sub {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

.trn-wc-opening {
    margin: 10px 0 0;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.45;
    color: rgba(148, 163, 184, 0.95);
}

.trn-wc-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.trn-wc-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    border-radius: 12px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.22);
}

.trn-wc-cell span:first-child {
    font-size: 1.35rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
    .trn-wc-cell span:first-child { font-size: 1.5rem; }
}

.trn-wc-cell small {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(56, 189, 248, 0.72);
}

.trn-wc-started {
    margin: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    color: #38bdf8;
}

.trn-wc-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px 20px 20px;
    margin: 16px -20px 0;
    flex-shrink: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .trn-wc-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.trn-wc-footer-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trn-wc-kickoff-lbl {
    font-size: 11px;
    font-weight: 800;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trn-wc-kickoff-val {
    font-size: 14px;
    font-weight: 900;
    color: #e2e8f0;
    letter-spacing: 0.02em;
}

.trn-wc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #0284c7, #0ea5e9);
    box-shadow: 0 0 22px rgba(14, 165, 233, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    text-align: center;
    pointer-events: none;
}

.trn-wc-card:hover .trn-wc-btn {
    transform: translateY(-1px);
    box-shadow: 0 0 32px rgba(14, 165, 233, 0.42);
    background: linear-gradient(135deg, #0369a1, #38bdf8);
}

/* ===================================== */
/* MOBILE + TABLET OVERLAY TEXT SCALING  */
/* ===================================== */
@media (max-width: 1099px) {
    .trn-v2-name { min-height: 0 !important; }
    .trn-v2-badge { white-space: nowrap !important; }
    .trn-card-loyalty .trn-v2-name { font-size: 16px !important; }
    .trn-card-wc .trn-pool-soon { display: none !important; }
}
