/* Promo hub — Estrela Bet, hero carousel, brackets, venue strips */

/* ── Partner banner (leaderboard ~728×90) ── */
.partner-banner-slot {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin: 0.5rem 0 1rem;
}

.partner-banner {
    display: block;
    width: 100%;
    max-width: 728px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    line-height: 0;
}

.partner-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 215, 0, 0.12);
}

.partner-banner img {
    width: 100%;
    height: auto;
    aspect-ratio: 728 / 90;
    object-fit: cover;
    display: block;
}

.partner-banner--compact {
    max-width: 320px;
}

@media (max-width: 480px) {
    .partner-banner {
        border-radius: 10px;
    }
}

/* ── Hero news carousel ── */
.hero-news-carousel {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.35);
}

.hero-news-viewport {
    overflow: hidden;
    position: relative;
}

.hero-news-track {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hero-news-slide {
    flex: 0 0 100%;
    position: relative;
    min-height: 140px;
}

.hero-news-slide a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.hero-news-slide img {
    width: 100%;
    height: auto;
    min-height: 120px;
    max-height: 220px;
    object-fit: cover;
    display: block;
}

.hero-news-slide--logo img {
    object-fit: contain;
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 1rem;
    max-height: 200px;
}

.hero-news-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.25rem 0.85rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-news-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 0 12px;
    background: rgba(0, 0, 0, 0.25);
}

.hero-news-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.hero-news-dot.active {
    background: var(--primary);
    transform: scale(1.15);
}

.hero-news-ticker {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(231, 76, 60, 0.12);
    border-bottom: 1px solid rgba(231, 76, 60, 0.2);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #e74c3c;
}

.hero-news-ticker i {
    animation: tickerPulse 1.5s ease infinite;
}

@keyframes tickerPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@media (min-width: 768px) {
    .hero-news-slide {
        min-height: 180px;
    }

    .hero-news-slide img {
        max-height: 260px;
    }
}

/* ── Match venue strip (live cards) ── */
.match-venue-strip {
    position: relative;
    height: 72px;
    margin: -0.25rem -1rem 0.75rem;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.match-venue-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.match-venue-strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    font-size: 0.72rem;
    font-weight: 600;
}

.match-venue-strip-overlay i {
    color: var(--primary);
}

.featured-venue-strip {
    height: 56px;
    border-radius: 10px;
    margin-bottom: 0.75rem;
}

/* ── Knockout bracket ── */
.knockout-section {
    margin-bottom: 2.5rem;
}

.knockout-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.knockout-header img.wc-brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.knockout-bracket-wrap {
    overflow-x: auto;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
}

.knockout-bracket {
    display: flex;
    gap: 16px;
    min-width: min-content;
    padding: 4px 2px;
}

.knockout-round {
    flex: 0 0 auto;
    min-width: 168px;
    max-width: 200px;
}

.knockout-round-title {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 10px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
}

.knockout-matches {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.knockout-match {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.75rem 0.85rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.knockout-match:hover {
    border-color: rgba(52, 152, 219, 0.45);
    background: rgba(52, 152, 219, 0.06);
}

.knockout-match.live {
    border-color: rgba(231, 76, 60, 0.5);
    box-shadow: 0 0 12px rgba(231, 76, 60, 0.15);
}

.knockout-team {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0;
    min-height: 1.75rem;
}

.knockout-team + .knockout-team {
    margin-top: 0.15rem;
    padding-top: 0.45rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.knockout-team img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.knockout-team b {
    margin-left: auto;
    font-size: 0.85rem;
}

.knockout-match-meta {
    font-size: 0.62rem;
    color: var(--text-muted);
    margin-top: 0.65rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.knockout-match .live-dot {
    color: #e74c3c;
    font-size: 0.55rem;
    margin-right: 4px;
}

/* WC live matches mini-carousel */
.wc-matches-carousel {
    margin-bottom: 1.5rem;
}

.wc-matches-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
}

.wc-match-chip {
    flex: 0 0 260px;
    scroll-snap-align: start;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: border-color 0.2s;
}

.wc-match-chip:hover {
    border-color: var(--primary);
}

.wc-match-chip.live {
    border-color: rgba(231, 76, 60, 0.45);
}

.wc-match-chip-meta {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wc-match-chip-body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.wc-match-chip-team {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
    min-height: 1.75rem;
}

.wc-match-chip-team.away {
    flex-direction: row-reverse;
    text-align: right;
}

.wc-match-chip-team img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.wc-match-chip-team span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wc-match-chip-score {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 800;
    padding: 0.35rem 0;
    color: var(--text-main);
}

.wc-match-chip-score.live {
    color: #e74c3c;
}

/* legacy alias */
.wc-match-chip-teams {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.wc-match-chip-teams img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Footer sponsor */
.footer-sponsor {
    font-size: 0.82rem;
    margin-top: 0.5rem;
    color: var(--text-muted);
}

.footer-sponsor a {
    color: #2ecc71;
    font-weight: 600;
    text-decoration: none;
}

.footer-sponsor a:hover {
    text-decoration: underline;
}

/* SEO E-E-A-T */
.footer-eeat {
    max-width: 640px;
    margin: 0.75rem auto 0;
    padding: 0 0.5rem;
}

.footer-eeat-title {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.footer-eeat-text {
    font-size: 0.72rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0;
}

.footer-eeat-text a {
    color: #2ecc71;
    text-decoration: none;
}

.footer-eeat-text a:hover {
    text-decoration: underline;
}

.seo-eeat-section {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.seo-eeat-card {
    padding: 1.35rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.seo-eeat-h2 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--text-main);
}

.seo-eeat-card p {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0 0 0.65rem;
}

.seo-eeat-card p:last-child {
    margin-bottom: 0;
}

.seo-eeat-muted {
    font-size: 0.78rem !important;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .seo-eeat-card {
        padding: 1rem 1.1rem;
    }
}

/* Redirect page */
.redirect-page .redirect-logo {
    width: min(160px, 42vw);
    height: auto;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.redirect-page .container {
    max-width: 420px;
}
