/* =========================================
   XTRA INDUSTRIAL — Index Page Styles
   Dark Gray + Signal Red Redesign
   ========================================= */

/* ============================
   HERO — SPLIT LAYOUT (left text + right visual)
   ============================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--header-h);
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, #0d0d0d 0%, #161616 100%);
}

/* diagonal slash overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 55%;
    height: 100%;
    background: #1a1a1a;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
}

/* red corner accent */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 6px;
    height: 100%;
    background: var(--clr-primary);
    pointer-events: none;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
    padding: 6rem 0 4rem;
    align-items: center;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-primary);
    color: #fff;
    padding: 0.35rem 1rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    width: fit-content;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    border-radius: 0;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    font-family: 'Barlow Condensed', sans-serif;
    color: #fff;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    line-height: 1.05;
    text-transform: uppercase;
    font-weight: 900;
}

.hero-text-content > p {
    color: var(--clr-text2);
    font-size: 1rem;
    max-width: 480px;
    line-height: 1.75;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Quick access: Desafios Reais / Torneios Ativos */
.hero-tourney-access {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
    width: 100%;
    max-width: 480px;
}
.hero-tourney-pill {
    flex: 1 1 calc(50% - 0.35rem);
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--clr-text);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--clr-muted);
    transition: var(--transition);
    text-decoration: none;
}
.hero-tourney-pill i {
    font-size: 0.85rem;
    color: var(--clr-primary);
}
.hero-tourney-pill:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.16);
    border-left-color: var(--clr-primary);
}
.hero-tourney-pill--accent {
    border-left-color: var(--clr-primary);
    background: rgba(230, 48, 48, 0.08);
}
.hero-tourney-pill--accent:hover {
    background: rgba(230, 48, 48, 0.14);
    box-shadow: var(--shadow-red);
}

/* Hero stats — bottom strip */
.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 3rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid var(--clr-primary);
    max-width: 480px;
    width: 100%;
}
.stat-item {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    text-align: left;
}
.stat-item:last-child { border-right: none; }
.stat-item h4 {
    font-size: 1.9rem;
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--clr-primary);
    margin-bottom: 0;
    font-weight: 800;
    line-height: 1;
}
.stat-item p {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-muted);
    font-family: 'Barlow', sans-serif;
    margin-top: 2px;
}

/* Hero visual — floating card */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.floating-glass-card {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 3px solid var(--clr-primary);
    border-radius: 0;
    padding: 2.5rem;
    width: 100%;
    max-width: 380px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}
.floating-glass-card::before {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 80px; height: 80px;
    background: rgba(230,48,48,0.05);
    clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
}

.jackpot-amount {
    font-size: 2.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    color: #fff;
    font-weight: 800;
    white-space: nowrap;
}

/* ============================
   LIVE WINS TICKER
   ============================ */
.live-wins-bar {
    background: #0d0d0d;
    border-top: 2px solid var(--clr-primary);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0.75rem 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
}
.live-wins-label {
    position: absolute; left: 0;
    background: var(--clr-primary);
    color: #fff;
    padding: 0.75rem 1.2rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
    padding-right: 2rem;
}
.wins-track-container {
    padding-left: 200px;
    width: 100%;
    overflow: hidden;
}
.wins-track {
    display: flex;
    gap: 2rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}
.win-ticket {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--clr-muted);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 3px 14px;
    font-size: 0.8rem;
    background: rgba(255,255,255,0.03);
    font-family: 'Barlow', sans-serif;
}
.win-user { color: var(--clr-text); font-weight: 600; }
.win-amount { color: var(--clr-primary); font-weight: 700; font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Sticky strip under ticker — always one scroll away from hero */
.tourney-access-strip {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    background: linear-gradient(90deg, #141414 0%, #101010 50%, #141414 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 5;
}
.tourney-strip-link {
    flex: 1;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--clr-text2);
    text-decoration: none;
    transition: var(--transition);
}
.tourney-strip-link i {
    color: var(--clr-primary);
    font-size: 0.8rem;
}
.tourney-strip-link:hover {
    color: #fff;
    background: rgba(230, 48, 48, 0.06);
}
.tourney-strip-link--primary {
    color: #fff;
    background: rgba(230, 48, 48, 0.1);
}
.tourney-strip-link--primary:hover {
    background: rgba(230, 48, 48, 0.18);
}
.tourney-strip-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

/* ============================
   CONTENT SECTION BASE
   ============================ */
.content-section {
    padding: 6rem 0;
    position: relative;
}

/* ============================
   HOW TO PLAY — ZIG-ZAG TIMELINE
   ============================ */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 860px;
    margin: 3rem auto 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--clr-primary), rgba(230,48,48,0.1));
    transform: translateX(-50%);
    z-index: 0;
}
.timeline-item {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 1.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 1.5rem 0;
    text-align: right;
}
.timeline-item:nth-child(odd) .timeline-num  { order: 2; }
.timeline-item:nth-child(odd) .timeline-content { order: 1; }
.timeline-item:nth-child(odd)::after { content: ''; order: 3; }
.timeline-item:nth-child(even) { text-align: left; }
.timeline-item:nth-child(even) .timeline-num  { order: 2; }
.timeline-item:nth-child(even) .timeline-content { order: 3; }
.timeline-item:nth-child(even)::before { content: ''; order: 1; display: block; }

.timeline-num {
    width: 52px; height: 52px;
    background: var(--clr-primary);
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: var(--shadow-red);
    flex-shrink: 0;
    transition: var(--transition);
    justify-self: center;
    align-self: center;
    position: relative;
    z-index: 3;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.timeline-item:hover .timeline-num {
    background: var(--clr-primary-l);
    transform: scale(1.1);
}
.timeline-content {
    background: var(--clr-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid var(--clr-primary);
    padding: 1.5rem 2rem;
    transition: var(--transition);
}
.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 3px solid var(--clr-primary);
}
.timeline-content:hover {
    border-color: var(--clr-border-r);
    background: rgba(230,48,48,0.04);
}
.timeline-content h3 { font-size: 1rem; margin-bottom: 0.5rem; color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; letter-spacing: 0.5px; }
.timeline-content p { color: var(--clr-text2); font-size: 0.88rem; line-height: 1.7; font-family: 'Barlow', sans-serif; }

/* ============================
   GAME CARDS — Masonry Grid
   ============================ */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 3px;
    border: none;
    box-shadow: none;
}
.game-card-angular {
    background: #0d0d0d;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: none;
    transition: var(--transition);
    cursor: pointer;
}
.game-card-angular::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
    transition: opacity 0.4s;
}
/* red corner badge */
.game-card-angular::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 40px 40px 0 0;
    border-color: var(--clr-primary) transparent transparent transparent;
    z-index: 3;
    transition: var(--transition);
}
.game-card-angular:hover::after {
    border-width: 50px 50px 0 0;
}
.game-card-angular:hover { transform: none; box-shadow: inset 0 0 0 2px var(--clr-primary); }

.game-card-angular:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.game-card-angular:nth-child(4) { grid-column: span 2; }
.game-card-angular:nth-child(7) { grid-row: span 2; }

.game-card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: opacity 0.5s, transform 0.5s;
    display: block;
    filter: grayscale(40%);
}
.game-card-angular:hover .game-card-img { opacity: 0.8; transform: scale(1.06); filter: grayscale(0%); }

.game-card-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.2rem 1.5rem;
    z-index: 3;
}
.game-card-title {
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.game-card-desc { font-size: 0.75rem; color: #aaa; opacity: 0; transition: opacity 0.3s 0.05s; margin-bottom: 8px; font-family: 'Barlow', sans-serif; }
.game-card-angular:hover .game-card-desc { opacity: 1; }
.game-card-play { display: flex; gap: 8px; }

/* ============================
   VIP TIERS — Styled as Services Grid
   ============================ */
.vip-tiers-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    border: none;
}
.vip-tier-horizontal {
    background: var(--clr-card);
    border: none;
    border-top: 3px solid rgba(255,255,255,0.06);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.vip-tier-horizontal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: rgba(255,255,255,0.06);
    transition: var(--transition);
}
.vip-tier-horizontal:hover { background: rgba(255,255,255,0.03); }
.vip-tier-horizontal:hover::before { background: var(--clr-primary); }

.vip-tier-horizontal:nth-child(3) {
    background: rgba(230,48,48,0.06);
    border-top: 3px solid var(--clr-primary);
}
.vip-tier-horizontal:nth-child(3)::before { background: var(--clr-primary); }

.vip-tier-icon {
    width: 50px; height: 50px;
    background: var(--clr-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.vip-tier-info { width: 100%; margin-bottom: 1.5rem; }
.vip-tier-info h3 { font-size: 1.4rem; color: #fff; margin-bottom: 4px; font-family: 'Barlow Condensed', sans-serif; }
.vip-tier-info > p { color: var(--clr-muted); font-size: 0.75rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; font-family: 'Barlow', sans-serif; }
.vip-perks { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.75rem; }
.vip-perks li { color: var(--clr-text2); font-size: 0.84rem; display: flex; align-items: center; gap: 8px; font-family: 'Barlow', sans-serif; }
.vip-perks li i { color: var(--clr-primary); font-size: 0.72rem; }
.vip-action { width: 100%; margin-top: auto; }
.vip-action .btn-primary,
.vip-action .btn-secondary { clip-path: none; width: 100%; justify-content: center; }

/* ============================
   WHY CHOOSE — 2-col grid
   ============================ */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-top: 3rem;
}
.why-card {
    background: var(--clr-card);
    border: none;
    border-left: 4px solid rgba(255,255,255,0.06);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.why-card:hover { border-left-color: var(--clr-primary); background: rgba(255,255,255,0.02); }
.why-card::after { display: none; }
.why-card::before { display: none; }

/* ============================
   NEWS SPLIT GRID
   ============================ */
.news-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}
.news-featured {
    background: var(--clr-card);
    border: none;
    border-top: 3px solid var(--clr-primary);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.news-featured:hover { box-shadow: var(--shadow-card); filter: brightness(1.05); }
.news-featured img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    opacity: 0.7;
    transition: 0.5s;
    display: block;
    filter: grayscale(30%);
}
.news-featured:hover img { opacity: 0.9; transform: scale(1.02); filter: grayscale(0%); }
.news-featured-content {
    padding: 1.75rem;
    flex: 1;
}
.news-featured-content h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; color: #fff; margin-bottom: 0.6rem; text-transform: uppercase; }
.news-featured-content p { color: var(--clr-text2); font-size: 0.85rem; margin-bottom: 1.2rem; font-family: 'Barlow', sans-serif; }

.news-list { display: flex; flex-direction: column; gap: 0; }
.news-list-item {
    display: flex; gap: 0; align-items: stretch;
    background: var(--clr-card);
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-left: 3px solid transparent;
    transition: var(--transition);
}
.news-list-item:hover { border-left-color: var(--clr-primary); background: rgba(255,255,255,0.02); }
.news-list-item img {
    width: 110px;
    height: 76px;
    object-fit: cover;
    flex-shrink: 0;
    filter: grayscale(40%);
    transition: filter 0.3s;
}
.news-list-item:hover img { filter: grayscale(0%); }
.news-content { display: flex; flex-direction: column; justify-content: center; padding: 0.75rem 1rem; }
.news-content h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; color: #fff; margin-bottom: 3px; text-transform: uppercase; }
.news-content h3 a:hover { color: var(--clr-primary); }
.news-content p { color: var(--clr-muted); font-size: 0.75rem; line-height: 1.5; font-family: 'Barlow', sans-serif; }

/* ============================
   FEATURES GRID — Icon cards
   ============================ */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}
.feature-box {
    background: var(--clr-card);
    border: none;
    border-top: 0;
    padding: 2rem 1.75rem;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.2rem;
}
.feature-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: rgba(255,255,255,0.06);
    transition: var(--transition);
}
.feature-box:hover::before { background: var(--clr-primary); }
.feature-box:hover { background: rgba(255,255,255,0.03); }
.feature-icon {
    width: 48px; height: 48px;
    min-width: 48px;
    background: var(--clr-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    transition: var(--transition);
    flex-shrink: 0;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.feature-box:hover .feature-icon { background: var(--clr-primary-l); box-shadow: var(--shadow-red); }
.feature-box h3 { font-size: 1rem; color: #fff; margin-bottom: 0.4rem; font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; text-transform: uppercase; }
.feature-box p { color: var(--clr-text2); font-size: 0.83rem; line-height: 1.65; font-family: 'Barlow', sans-serif; }

/* ============================
   GAME PROVIDERS TICKER
   ============================ */
.providers-track-container { width: 100%; overflow: hidden; white-space: nowrap; }
.providers-track {
    display: flex;
    gap: 4rem;
    animation: marquee 35s linear infinite;
    align-items: center;
}
.provider-logo {
    color: rgba(180,180,180,0.3);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Barlow', sans-serif;
    letter-spacing: 2px;
    display: flex; align-items: center; gap: 8px;
    transition: var(--transition);
    cursor: default;
}
.provider-logo i { color: var(--clr-primary); font-size: 0.9rem; }
.provider-logo:hover { color: #fff; }

/* ============================
   APP SPLIT SECTION
   ============================ */
.app-split-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 5rem;
    align-items: center;
}
.app-visual { display: flex; justify-content: center; }
.phone-mockup {
    position: relative;
    text-align: center;
    width: 200px;
}
.floating-badge {
    position: absolute;
    background: var(--clr-card);
    color: var(--clr-primary);
    padding: 8px 14px;
    border: 1px solid var(--clr-border-r);
    border-radius: 0;
    font-weight: 700;
    font-size: 0.75rem;
    font-family: 'Barlow', sans-serif;
    z-index: 5;
    display: flex; align-items: center; gap: 6px;
}
.floating-badge.badge-1 { top: 20%; left: -60%; animation: bounce 3s ease-in-out infinite; }
.floating-badge.badge-2 { bottom: 20%; right: -60%; animation: bounce 3.5s ease-in-out infinite 1s; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ============================
   FAQ SECTION
   ============================ */
.faq-split {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
}
.faq-support-card {
    background: var(--clr-card);
    border: none;
    border-left: 4px solid var(--clr-primary);
    padding: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1rem;
}
.faq-support-card i { font-size: 2rem; color: var(--clr-primary); }
.faq-support-card h4 { font-size: 1rem; color: #fff; margin-bottom: 2px; font-family: 'Barlow Condensed', sans-serif; }
.faq-support-card p { font-size: 0.8rem; color: var(--clr-muted); font-family: 'Barlow', sans-serif; }

.faq-grid { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(255,255,255,0.06); }
.faq-item {
    background: var(--clr-card);
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
    padding: 1.25rem 1.5rem;
    color: var(--clr-text);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    transition: 0.3s;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.82rem;
}
.faq-question:hover { color: var(--clr-primary); background: rgba(230,48,48,0.04); }
.faq-question i { flex-shrink: 0; color: var(--clr-muted); transition: 0.3s; font-size: 0.78rem; }
.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s;
    color: var(--clr-text2);
    font-size: 0.88rem;
    line-height: 1.75;
    font-family: 'Barlow', sans-serif;
}
.faq-item.active { border-left: 3px solid var(--clr-primary); }
.faq-item.active .faq-question { color: var(--clr-primary); background: rgba(230,48,48,0.04); }
.faq-item.active .faq-answer { padding: 1.25rem 1.5rem; max-height: 400px; }
.faq-item.active .faq-question i { transform: rotate(45deg); color: var(--clr-primary); }

/* ============================
   FLOATING TOURNAMENT SIDE TAB
   ============================ */
.torneio-float-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: var(--clr-primary);
    color: #fff;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-radius: 0;
    box-shadow: -4px 0 20px rgba(230,48,48,0.3);
    transition: all 0.3s var(--ease);
    text-decoration: none;
    border-left: 2px solid rgba(255,255,255,0.15);
}
.torneio-float-tab:hover {
    padding-right: 18px;
    background: var(--clr-primary-l);
    box-shadow: -4px 0 30px rgba(230,48,48,0.5);
    color: #fff;
}
.torneio-float-tab i {
    writing-mode: horizontal-tb;
    font-size: 1.1rem;
    animation: floatPulse 2s ease-in-out infinite;
}
.float-badge-count {
    writing-mode: horizontal-tb;
    background: #fff;
    color: var(--clr-primary);
    width: 20px; height: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem;
    font-weight: 900;
    border-radius: 50%;
}
@keyframes floatPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Nav highlight for Torneios + Desafios */
.nav-list a.nav-torneios {
    white-space: normal;
    line-height: 1.15;
    padding: 0.45rem 0.85rem;
    max-width: 9.5rem;
    text-align: left;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}
.nav-torneios {
    color: var(--clr-primary) !important;
    position: relative;
}
.nav-torneios > i:first-child {
    font-size: 0.75rem;
    flex-shrink: 0;
    align-self: center;
}
.nav-torneios-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.nav-torneios-line {
    font-size: 0.62rem;
    letter-spacing: 1.2px;
    color: #fff;
    font-weight: 800;
}
.nav-torneios-sub {
    font-size: 0.52rem;
    letter-spacing: 1.4px;
    color: var(--clr-muted);
    font-weight: 600;
    text-transform: uppercase;
}
.nav-torneios:hover .nav-torneios-sub {
    color: var(--clr-text2);
}

/* ============================
   TOURNAMENTS SHOWCASE V2
   ============================ */
.tournaments-showcase {
    background: #0d0d0d;
    border-top: 3px solid var(--clr-primary);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 3rem 0 4rem;
    position: relative;
    overflow: hidden;
    scroll-margin-top: calc(var(--header-h) + 10px);
}
.fragment-scroll-target {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    scroll-margin-top: calc(var(--header-h) + 12px);
    pointer-events: none;
}
.tournaments-showcase::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        linear-gradient(135deg, rgba(230,48,48,0.04) 0%, transparent 40%),
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,0.012) 0px,
            rgba(255,255,255,0.012) 1px,
            transparent 1px,
            transparent 80px
        );
    pointer-events: none;
}

/* Header Bar */
.tourney-header-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 1rem 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}
.tourney-heading-block {
    min-width: 0;
}
.tourney-eyebrow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
    margin-bottom: 0.45rem;
}
.tourney-eyebrow-label {
    margin: 0 !important;
    padding: 0;
}
.tourney-live-pill {
    font-family: 'Barlow', sans-serif;
    font-size: 0.55rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-primary);
    border: 1px solid rgba(230, 48, 48, 0.45);
    padding: 0.2rem 0.5rem;
    background: rgba(230, 48, 48, 0.08);
}
.tourney-main-title {
    text-align: left;
    margin: 0;
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
}
.tourney-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.tourney-btn-ver-todos {
    padding: 0.65rem 1.5rem;
    font-size: 0.72rem;
    white-space: nowrap;
}
.tourney-live-dot {
    width: 10px; height: 10px;
    background: var(--clr-primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(230,48,48,0.6);
    animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(230,48,48,0.6); }
    50% { opacity: 0.5; box-shadow: 0 0 16px rgba(230,48,48,0.9); }
}

/* Grid */
.tournaments-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    position: relative;
    z-index: 2;
}

/* Card V2 */
.tournament-card-v2 {
    background: var(--clr-card);
    border: none;
    border-top: 3px solid rgba(255,255,255,0.06);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.tournament-card-v2.tc-featured {
    border-top-color: var(--clr-primary);
}
.tournament-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

/* Status Tag */
.tc-status {
    position: absolute;
    top: 0; left: 0;
    background: var(--clr-primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 5px 18px 5px 12px;
    z-index: 5;
    letter-spacing: 1.5px;
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
    display: flex; align-items: center; gap: 6px;
}
.tc-status.tc-vip {
    background: #1a1a1a;
    border: 1px solid var(--clr-primary);
    color: var(--clr-primary);
    clip-path: none;
}

/* Visual */
.tc-visual {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.tc-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(50%);
    transition: all 0.5s;
}
.tournament-card-v2:hover .tc-visual img {
    opacity: 0.6;
    transform: scale(1.05);
    filter: grayscale(0%);
}
.tc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
}
.tc-overlay-vip {
    background: linear-gradient(180deg, transparent 20%, rgba(230,48,48,0.1) 60%, rgba(0,0,0,0.86) 100%);
}

/* Prize badge overlay */
.tc-prize-badge {
    position: absolute;
    bottom: 16px; right: 16px;
    background: rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 3px solid var(--clr-primary);
    padding: 10px 16px;
    z-index: 4;
    text-align: right;
}
.tc-prize-badge.tc-prize-gold {
    border-left-color: var(--clr-primary);
    background: rgba(230,48,48,0.12);
    border: 1px solid rgba(230,48,48,0.3);
    border-left: 3px solid var(--clr-primary);
}
.tc-prize-label {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-muted);
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
}
.tc-prize-val {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--clr-primary);
    font-family: 'Barlow Condensed', sans-serif;
    line-height: 1.1;
    margin-top: 2px;
}

/* Info Section */
.tc-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.tc-info h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}
.tc-desc {
    color: var(--clr-muted);
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-family: 'Barlow', sans-serif;
}

/* CTA */
.tc-cta {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}
.tc-cta-gold {
    background: #fff;
    color: #000;
}
.tc-cta-gold:hover {
    background: var(--clr-primary);
    color: #fff;
}

.section-header-centered { text-align: center; margin-bottom: 0; }

/* ============================
   WINNERS CIRCLE
   ============================ */
.winners-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: center;
}
.total-paid-card {
    background: rgba(230,48,48,0.06);
    border-left: 4px solid var(--clr-primary);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
}
.paid-val { font-size: 2.2rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; color: #fff; }
.paid-label { font-size: 0.72rem; color: var(--clr-muted); text-transform: uppercase; letter-spacing: 1.5px; font-family: 'Barlow', sans-serif; }

.winners-gallery { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(255,255,255,0.06); }
.winner-testimonial {
    background: var(--clr-card);
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 1.5rem 2rem;
    display: flex; gap: 1.2rem;
    transition: var(--transition);
}
.winner-testimonial:last-child { border-bottom: none; }
.winner-testimonial:hover { background: rgba(255,255,255,0.02); border-left: 3px solid var(--clr-primary); }
.winner-av {
    width: 48px; height: 48px;
    min-width: 48px;
    background: var(--clr-primary);
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #fff;
    flex-shrink: 0;
}
.winner-quote p { font-style: italic; color: var(--clr-text2); margin-bottom: 0.5rem; font-size: 0.88rem; line-height: 1.6; font-family: 'Barlow', sans-serif; }
.winner-quote h4 { font-size: 0.8rem; color: var(--clr-primary); font-family: 'Barlow', sans-serif; }
.winner-quote h4 span { color: var(--clr-muted); font-weight: 400; }

/* ============================
   FOOTER BANNER (CTA)
   ============================ */
.footer-register-banner {
    background: var(--clr-primary);
    border-top: none;
    border-bottom: none;
    padding: 3.5rem 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.footer-register-banner::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 40%;
    background: rgba(0,0,0,0.15);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.footer-register-banner .container { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; position: relative; z-index: 2; }
.footer-register-banner h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; color: #fff; text-transform: uppercase; font-weight: 900; letter-spacing: 1px; }
.footer-register-banner h3 span { color: #000; }
.footer-register-banner .btn-primary {
    background: #000;
    color: #fff;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.footer-register-banner .btn-primary:hover { background: #1a1a1a; box-shadow: 0 4px 20px rgba(0,0,0,0.5); }

/* ============================
   STATS SECTION (section-header-centered style)
   ============================ */
.stats-row {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr;
    gap: 0;
    background: var(--clr-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 5px solid var(--clr-primary);
    margin-top: 3rem;
    overflow: hidden;
}
.stats-label-block {
    background: var(--clr-primary);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}
.stats-label-block p {
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.2;
}
.stats-counter {
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    position: relative;
}
.stats-counter:last-child { border-right: none; }
.stats-counter .num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
    display: block;
}
.stats-counter .num sup { font-size: 1.5rem; }
.stats-counter .lbl {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-muted);
    font-family: 'Barlow', sans-serif;
    margin-top: 4px;
    display: block;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1100px) {
    .vip-tiers-row { grid-template-columns: 1fr; gap: 3px; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .stats-label-block { grid-column: span 2; min-width: unset; padding: 1.5rem; }
}

@media (max-width: 992px) {
    .hero-split { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0 3rem; text-align: center; }
    .hero-text-content { align-items: center; }
    .hero-stats { max-width: 100%; }
    .hero h1 { font-size: clamp(2rem, 6vw, 3rem); }
    /* hide right panel on mobile */
    .hero-visual { display: none; }
    .hero::before { display: none; }

    .timeline { max-width: 600px; }
    .timeline::before { left: 26px; transform: none; }
    .timeline-item { grid-template-columns: 52px 1fr; gap: 1rem; text-align: left; padding: 1rem 0; }
    .timeline-item:nth-child(odd) .timeline-num,
    .timeline-item:nth-child(even) .timeline-num { order: 1; justify-self: start; }
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content { order: 2; border-right: none; border-left: 3px solid var(--clr-primary); }
    .timeline-item:nth-child(odd)::after { display: none; }
    .timeline-item:nth-child(even)::before { display: none; }

    .masonry-grid { grid-template-columns: 1fr 1fr; }
    .game-card-angular:nth-child(1),
    .game-card-angular:nth-child(4),
    .game-card-angular:nth-child(7) { grid-column: span 1; grid-row: span 1; }

    .news-split-grid { grid-template-columns: 1fr; }
    .features-grid-modern { grid-template-columns: 1fr 1fr; }
    .why-choose-grid { grid-template-columns: 1fr; gap: 3px; }

    .app-split-layout { grid-template-columns: 1fr; text-align: center; }
    .phone-mockup { display: none; }

    .live-wins-bar { flex-direction: column; padding: 0; }
    .live-wins-label { position: relative; width: 100%; text-align: center; justify-content: center; clip-path: none; padding-right: 1.2rem; }
    .wins-track-container { padding-left: 0; padding-top: 8px; }

    .faq-split { grid-template-columns: 1fr; gap: 2rem; }
    .faq-info { text-align: center; }

    .tournaments-grid-v2 { grid-template-columns: 1fr; }
    .tourney-header-bar {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
    .tourney-header-actions {
        justify-content: stretch;
    }
    .tourney-btn-ver-todos {
        width: 100%;
        justify-content: center;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    .tourney-main-title { font-size: 1.65rem; }
    .hero-tourney-access {
        justify-content: center;
        max-width: 100%;
    }
    .winners-layout { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .winners-text { display: flex; flex-direction: column; align-items: center; }
    .winner-testimonial { flex-direction: row; text-align: left; }
}

@media (max-width: 768px) {
    .content-section { padding: 4rem 0; }
    .hero-stats { flex-wrap: wrap; }
    .stat-item { flex: 1 1 33%; }
    .features-grid-modern { grid-template-columns: 1fr; }
    .masonry-grid { grid-template-columns: 1fr; }
    .news-list-item img { width: 90px; height: 65px; }
    .vip-tiers-row { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .stats-label-block { grid-column: span 2; }
    .torneio-float-tab { display: none; }
    .tc-visual { height: 150px; }
    .tournaments-showcase { padding: 2rem 0 3rem; }
}

@media (max-width: 576px) {
    .hero h1 { font-size: 2rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; clip-path: none; }
    .section-title { font-size: 1.6rem !important; }
    .footer-register-banner h3 { font-size: 1.6rem; }
    .news-list-item { flex-direction: column; }
    .news-list-item img { width: 100%; height: 130px; }
    .stat-item { flex: 1 1 50%; }
    .feature-box { flex-direction: column; }
    .winner-testimonial { flex-direction: column; align-items: center; text-align: center; }
    .stats-row { grid-template-columns: 1fr; }
    .stats-label-block { grid-column: span 1; }
    .stats-counter .num { font-size: 2.2rem; }
}