:root {
    --wagerGreen: #1cad75;
    --backColour: #191919;
    --tabColour: #262626;
    --textColour: #f1f1f1;
    --highlight: #1cad75;
    --borderColour: #333333;
    --boxShadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    --gold: rgb(180, 140, 58);
}

.baseholder {
    background-color: var(--backColour);
    color: white;
}

.header-container {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

.main-container {
    font-family: 'poppins', sans-serif !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.body-container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
}

.banner-image-container {
    margin-top: 25px;
    margin-bottom: 20px;
}

.banner-image {
    width: 900px;
    border-radius: 5px;
}

.game-schedule-container {
    display: flex;
    flex-direction: column;
    justify-content: left;
}

.game-schedule-inner-container {
    display: flex;
    flex-direction: column;
    width: 900px;
}

.day-container {
    border-radius: 10px;
    padding: 10px;
    border: 2px solid var(--borderColour);
    box-shadow: var(--boxShadow);
    margin-top: 25px;
    display: flex;
    flex-direction: column;
}

.day-week-title {
    color: rgba(255, 255, 255, 0.767);
    font-size: 0.7em;
}

.game-container {
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.inner-game-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: left;
    align-items: center;
}

.game-header-container {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.game-header-line {
    min-width: 100%;
    height: 3px;
    background-color: var(--gold);
}

.team-image {
    width: 60px;
}


.team-name-container {
    display: flex;
    flex-direction: column;
    font-size: 1.75em;
}

.team-container {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.trapezoid {
    margin-top: -1px;
    width: 200px;
    height: 20px;
    background-color: var(--gold);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}

.game-time-container {
    font-weight: bold;
    display: flex;
    margin-top: -5px;
    font-size: 1.2em;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.verus-container {
    font-family: 'Anton', sans-serif;
    font-size: 1em;
    font-weight: 100;
    /* Anton is bold by default */

}

.ladder-container {
    width: 100%;
    max-width: 700px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 20px;
}

.betting-ad-container {
    text-align: center;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--borderColour);
}

.betting-image-container {
    display: flex;
    justify-content: center;
}

.betting-image {
    width: 200px;
}

.betting-ad-link {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.75em;
    color: #1cad75;
}

.betting-ad-link:hover {
    color: #1cad75;
}

.ladder-main-container {
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--borderColour);
    box-shadow: var(--boxShadow);
}

.ladder-row {
    display: flex;
    padding: 10px;
    box-shadow: var(--boxShadow);
    border-bottom: 1px solid var(--borderColour);
}

.ladder-header {
    color: white;
    font-weight: bold;
}

.ladder-cell {
    font-size: 0.8em;
    flex: 1;
    text-align: center;
}

.team-name {
    flex: 2;
    text-align: left;
    padding-left: 10px;
}

.team-ladder-image {
    width: 40px;
}

.bookie-image {
    border-radius: 5px;
    width: 25px;
}

.bookmaker-team-odds-container {
    font-size: 0.6em;
    gap: 3px;
    font-weight: 700;
    letter-spacing: 0.1px;
    font-family: 'Roboto Mono', monospace;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.bookie-left {
    justify-content: start;
}

.bookie-right {
    justify-content: end;
}

.team-name-actual {
    font-size: 0.8em;
}


/* Card Style */
.bet-card {
    display: none;
    background-color: #1a1a1a;
    border: 1px solid #2c2c2c;
    border-radius: 12px;
    padding: 20px;
    max-width: 400px;
    font-family: 'Inter', sans-serif;
    color: #fff;
    margin-bottom: 24px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.bet-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
    margin-bottom: 16px;
}

.ev-badge-wrapper {
    position: relative;
    display: inline-block;
}

.ev-badge {
    border: 1px solid #ff5e0093;
    color: white;

    border-radius: 4px;
    padding: 10px 15px;
    font-weight: 700;
    font-size: 16px;
    position: relative;
    z-index: 1;

}

.ev-icon {
    position: absolute;
    top: -18px;
    left: -1px;
    font-size: 10px;
    z-index: 2;

    pointer-events: none;
}

.game-title {
    font-size: 14px;
    font-weight: 600;
}

.bet-body p {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.4;
}

.odds {
    color: #1cad75;
    font-weight: 600;
}

.bookie {
    font-size: 13px;
    color: #999;
}

.bet-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta {
    background-color: #1cad75;
    color: #000;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.link {
    color: #aaa;
    font-size: 13px;
    text-decoration: underline;
}


.ev-icon-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.best-bet-icon {
    width: 150px;
}

.game-odds-container {
    width: 100%;
}

.odds-table {
    margin-top: 10px;
    width: 100%;
    font-family: 'Barlow Semi Condensed', sans-serif;

}

.odds-table td {
    text-align: center;
    border: 1px solid var(--borderColour);
}

.bookmaker-odds-header {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.bookmaker-odds-name-container {
    text-align: left !important;
}

.best-odd {
    background-color: var(--wagerGreen);
    color: var(--backColour);
    /* contrasts nicely with wagerGreen */
    font-weight: bold;
    border-radius: 6px;
    padding: 4px 6px;
}

.worst-odd {
    background-color: #3a1c1c;
    /* dark red variant for dark theme */
    color: var(--textColour);
    border-radius: 6px;
    padding: 4px 6px;
}

.best-odd,
.worst-odd {
    transition: background-color 0.2s ease;
}

.best-odd:hover {
    background-color: #159c66;
    /* darker shade on hover */
}

.worst-odd:hover {
    background-color: #5b2b2b;
}

.leagues-grid {
    margin-top: 75px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 24px auto;
    padding: 0 12px;
}

.league-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--ring);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 0 0 0 rgba(28, 173, 117, 0);
    transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}

.league-card:hover {
    text-decoration: none;
    color: white !important;
    transform: translateY(-2px);
    border-color: var(--accent-ghost);
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, .6), 0 0 0 1px var(--accent-ghost) inset;
}

.icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid var(--ring);
}

.icon-wrap svg {
    width: 26px;
    height: 26px;
}

.league-meta {
    flex: 1;
}

.league-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.league-sub {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    font-size: .72rem;
    line-height: 1;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid var(--ring);
    color: var(--muted);
    background: rgba(255, 255, 255, .02);
}

.pill--accent {
    color: var(--accent);
    border-color: var(--accent-ghost);
    background: rgba(28, 173, 117, .08);
}

/* tiny right chevron */
.chev {
    opacity: .5;
    transform: translateX(0);
    transition: transform .15s ease, opacity .15s ease;
}

.league-card:hover .chev {
    opacity: .9;
    transform: translateX(2px);
}

.image-container {
    margin-top: 10px;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* clip any accidental overflow */
}

.image-container img {
    display: block;
    /* removes inline-gap issues */
    max-width: 1200px;
    /* never wider than the container */
    width: 100%;
    /* stretch to container width */
    height: auto;
    /* keep aspect ratio */
    object-fit: contain;
    /* scale down if needed */
    min-width: 0;
    /* allow flexbox to shrink properly */
}

/* Optional: cap very tall images to viewport height */
.image-container--vh img {
    max-height: 100vh;
}

.help-main-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.help-container {
    box-shadow: var(--boxShadow);
    border-radius: 25px;
    border: 1px solid var(--borderColour);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3em;
    flex-direction: row;
    width: 100%;
    height: 100px;
    font-family: 'Roboto', sans-serif;
    margin: 15px 0px 15px 0px;

    /* 💥 “sick” dark neon gradient (brand-friendly) */
    background:
        radial-gradient(140% 180% at 0% 0%, rgba(28, 173, 117, 0.30) 0%, rgba(28, 173, 117, 0) 60%),
        radial-gradient(140% 180% at 100% 0%, rgba(0, 200, 255, 0.22) 0%, rgba(0, 200, 255, 0) 55%),
        linear-gradient(135deg, #0a0f0c 0%, #0e1316 50%, #0a1712 100%);
    /* optional subtle inner glow—comment out if you prefer flat edges */
    /* box-shadow: var(--boxShadow), inset 0 0 0 1px rgba(28, 173, 117, 0.25); */
}

.sports-link {
    color: #1cad75;
}

.help-text-container {
    font-size: 1.05em;
}

.help-container {
    background-size: 200% 200%, 200% 200%, 200% 200%;
    animation: gradientShift 10s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%, 100% 0%, 0% 0%;
    }

    50% {
        background-position: 100% 50%, 0% 0%, 100% 100%;
    }

    100% {
        background-position: 0% 50%, 100% 0%, 0% 0%;
    }
}

.fa-graduation-cap {
    color: var(--gold);

}



@media (max-width: 1500px) {
    .header-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
     #bet-card {
        max-width: 1200px;
    }
    .help-container {
        max-width: 1200px;
    }
}

@media (max-width: 1250px) {
    .help-container {
        max-width: 1000px;
    }
}

@media (max-width: 1050px) {
    .help-container {
        flex-direction: column;
        gap: 15px;
        max-width: 750px;
    }

    .fa-graduation-cap {
        margin-right: 15px;
        scale: 2;
    }

    .help-text-container {
        font-size: 1em;
    }

    .help-text-heading {
        font-size: 1.25em;
    }
}

@media (max-width: 780px) {
    .help-container {
        max-width: 500px;
    }

    .fa-graduation-cap {
        margin-left: 10px;
        scale: 1;
    }

    .help-text-container {
        margin-left: 10px;
    }
}

@media(max-width: 670px){
    #bet-card {
        flex-direction: column;
    }

    .placing-container {
        display: flex;
        flex-direction: row;
    }

    .placing-container-sub {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 530px) {
    .help-container {
        max-width: 400px;
        height: 150px;
    }

    .help-text-heading,
    .help-text-container {
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 440px) {
    .help-container {
        max-width: 350px;
        height: 175px;
    }
    .placing-container-sub {
        justify-content: center;
        flex-direction: column;
        align-items: center;
     }
    
}

@media (max-width: 380px) {
   
    .help-container {
        max-width: 300px;
        height: 195px;
    }

}



@media (max-width:1000px) {
    .leagues-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width:640px) {
    .leagues-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}



@media (max-width: 1500px) {

    .game-schedule-inner-container,
    .banner-image {
        width: 800px;
    }

    .betting-ad-link {
        font-size: 1.5em;
    }

}

@media (max-width: 1200px) {

    .game-schedule-inner-container,
    .banner-image {
        width: 600px;
    }

    .betting-ad-link {
        font-size: 1.5em;
    }

}

@media (max-width: 1000px) {

    .game-schedule-inner-container,
    .banner-image {
        width: 400px;
    }

    .betting-ad-link {
        font-size: 1.5em;
    }

    .team-image {
        width: 50px;
    }

    .team-name-actual {
        font-size: 0.8em;
    }

    .ladder-cell {
        font-size: 0.6em;
    }
}


@media (max-width: 768px) {

    .game-schedule-inner-container,
    .banner-image {
        width: 600px;
    }

    .day-container {
        width: 500px;
    }

    .body-container {
        flex-direction: column-reverse;
    }

    .game-schedule-container,
    .game-schedule-inner-container,
    .banner-image-container {
        justify-content: center;
        align-items: center;
    }

    .game-title {
        font-size: 10px;
        font-weight: 600;
    }
}


@media (max-width: 550px) {
    .game-title {
        font-size: 14px;
    }

    .bet-header {
        justify-content: left;
        gap: 4px;
        align-items: start;
        flex-direction: column;
    }

    .game-schedule-inner-container,
    .banner-image {
        width: 400px;
    }

    .day-container {
        width: 400px;
    }

    .game-schedule-container,
    .game-schedule-inner-container,
    .banner-image-container {
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 435px) {

    .game-schedule-inner-container,
    .banner-image {
        width: 300px;
    }

    .day-container {
        width: 350px;
    }



    .game-schedule-container,
    .game-schedule-inner-container,
    .banner-image-container {
        justify-content: center;
        align-items: center;
    }

    .team-image {
        width: 45px;
    }

    .team-name-actual {
        font-size: 0.7em;
    }

    .bookie-image {
        width: 20px;
    }

    .bookmaker-odds-container {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {

    .game-schedule-inner-container,
    .banner-image {
        width: 250px;
    }

    .day-container {
        width: 300px;
    }


    .game-schedule-container,
    .game-schedule-inner-container,
    .banner-image-container {
        justify-content: center;
        align-items: center;
    }

    .team-image {
        width: 45px;
    }

    .team-name-actual {
        font-size: 0.5em;
    }

    .bookie-image {
        width: 20px;
    }

    .bookmaker-odds-container {
        font-size: 0.9em;
    }
}

/* Modern shared sports pages */
.sports-page {
    --sports-bg: #091017;
    --sports-surface: rgba(14, 22, 30, 0.86);
    --sports-surface-strong: rgba(11, 18, 26, 0.96);
    --sports-border: rgba(255, 255, 255, 0.09);
    --sports-border-strong: rgba(255, 255, 255, 0.14);
    --sports-text: #f6fbff;
    --sports-muted: rgba(222, 234, 244, 0.74);
    --sports-accent: #25d58a;
    --sports-accent-soft: rgba(37, 213, 138, 0.16);
    --sports-accent-glow: rgba(37, 213, 138, 0.24);
    --sports-gold: #d9b15e;
    --sports-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
    --sports-market-col-width: 220px;
    --sports-best-col-width: 180px;
    --sports-table-head-height: 76px;
    color: var(--sports-text);
    font-family: "Inter", "Segoe UI", sans-serif;
    max-width: 1480px;
    margin: 0 auto;
    padding: 2rem 1rem 4.5rem;
}

.sports-page h1,
.sports-page h2,
.sports-page h3 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    letter-spacing: -0.03em;
}

.sports-page a {
    color: inherit;
}

.sports-page .best-bet-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.sports-page .bookmaker-image {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    object-fit: contain;
    padding: 3px;
}

.sports-hero,
.sports-toolbar,
.sports-insights,
.sports-faq,
.sports-leagues,
.sports-promo,
.sports-empty-state,
.sports-game-card {
    position: relative;
    border: 1px solid var(--sports-border);
    background: var(--sports-surface);
    border-radius: 28px;
    box-shadow: var(--sports-shadow);
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.sports-hero {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background:
        radial-gradient(circle at top left, rgba(37, 213, 138, 0.22), transparent 38%),
        radial-gradient(circle at top right, rgba(217, 177, 94, 0.18), transparent 30%),
        linear-gradient(140deg, rgba(9, 16, 23, 0.96), rgba(16, 25, 35, 0.92));
}

.sports-hero__mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}

.sports-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 420px);
    gap: 1.25rem;
    align-items: stretch;
}

.sports-eyebrow,
.sports-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--sports-gold);
}

.sports-eyebrow__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--sports-accent);
    box-shadow: 0 0 0 6px rgba(37, 213, 138, 0.12);
}

.sports-hero__copy h1 {
    margin: 0.9rem 0 0.75rem;
    font-size: clamp(2.3rem, 5vw, 4.3rem);
    line-height: 0.97;
}

.sports-hero__lede,
.sports-toolbar__copy p,
.sports-section-heading p,
.sports-copy-shell__main p,
.sports-promo__copy p,
.sports-empty-state p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.72;
    color: var(--sports-muted);
    max-width: 70ch;
}

.sports-hero__actions,
.sports-promo__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.35rem;
}

.sports-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.sports-button:hover {
    transform: translateY(-1px);
    text-decoration: none;
    color: inherit;
}

.sports-button--primary {
    background: linear-gradient(135deg, var(--sports-accent), #16b873);
    color: #04110b;
    box-shadow: 0 16px 34px rgba(37, 213, 138, 0.28);
}

.sports-button--secondary,
.sports-button--ghost {
    color: var(--sports-text);
    border-color: var(--sports-border-strong);
    background: rgba(255, 255, 255, 0.04);
}

.sports-button--ghost {
    background: transparent;
}

.sports-button--compact {
    min-height: 42px;
    padding: 0.7rem 1rem;
}

.featured-bet-card__meta-card,
.sports-insight-card,
.sports-faq-card,
.sports-education-card,
.sports-toolbar__count {
    border: 1px solid var(--sports-border);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
}

.featured-bet-card__meta-card span,
.sports-insight-card__label,
.sports-game-card__time,
.sports-copy-shell__linkline,
.sports-education-card p,
.sports-toolbar__count {
    color: var(--sports-muted);
}

.featured-bet-card__meta-card span,
.sports-insight-card__label {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.featured-bet-card {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 24px;
    border: 1px solid rgba(37, 213, 138, 0.2);
    background:
        radial-gradient(circle at top, rgba(37, 213, 138, 0.18), transparent 46%),
        rgba(8, 14, 20, 0.92);
}

.featured-bet-card.is-visible {
    display: flex;
}

.featured-bet-card__topline,
.featured-bet-card__footer,
.featured-bet-card__tag,
.featured-bet-card__bookmaker,
.sports-toolbar,
.sports-toolbar__controls,
.sports-bookmaker-head,
.sports-game-card__meta,
.sports-copy-shell,
.sports-education-card {
    display: flex;
    align-items: center;
}

.featured-bet-card__topline,
.featured-bet-card__footer,
.sports-toolbar {
    justify-content: space-between;
}

.featured-bet-card__tag,
.featured-bet-card__bookmaker,
.sports-bookmaker-head,
.sports-game-card__meta,
.sports-toolbar__controls,
.sports-copy-shell,
.sports-education-card {
    gap: 0.85rem;
}

.featured-bet-card__tag span,
.featured-bet-card__league {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sports-gold);
}

.featured-bet-card__ev {
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: var(--sports-accent-soft);
    color: var(--sports-accent);
    font-weight: 800;
}

.featured-bet-card__body h2 {
    margin: 0.6rem 0 0.35rem;
    font-size: 1.7rem;
}

.featured-bet-card__betline {
    margin: 0 0 0.7rem;
    font-size: 1rem;
    font-weight: 700;
}

.featured-bet-card__reason {
    margin: 0;
    padding-top: 0.8rem;
    border-top: 1px solid var(--sports-border);
}

.featured-bet-card__reason span {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sports-muted);
}

.featured-bet-card__reason strong,
.featured-bet-card__meta-card strong {
    display: block;
}

.featured-bet-card__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.featured-bet-card__meta-card {
    padding: 0.85rem 0.9rem;
}

.featured-bet-card__meta-card strong {
    margin-top: 0.35rem;
    font-size: 1.2rem;
}

.featured-bet-card__bookmaker span {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.78rem;
    color: var(--sports-muted);
}

.featured-bet-card__bookmaker strong {
    font-size: 1.05rem;
}

.featured-bet-card__logo {
    width: 72px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    object-fit: contain;
    padding: 6px;
    display: none;
}

.sports-toolbar,
.sports-insights,
.sports-faq,
.sports-leagues,
.sports-promo,
.sports-empty-state {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sports-toolbar__copy h2,
.sports-section-heading h2,
.sports-promo__copy h2 {
    margin: 0.45rem 0 0.5rem;
    font-size: clamp(1.6rem, 3vw, 2.55rem);
}

.sports-search {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: min(100%, 340px);
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid var(--sports-border);
    background: rgba(255, 255, 255, 0.04);
}

.sports-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--sports-text);
}

.sports-search input::placeholder {
    color: rgba(222, 234, 244, 0.48);
}

.sports-toolbar__count {
    padding: 0.95rem 1rem;
    font-weight: 700;
}

.sports-games-list {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.sports-game-card {
    padding: 1.2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 20%),
        var(--sports-surface-strong);
}

.sports-game-card__header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.sports-game-card__title-wrap h3 {
    margin: 0.55rem 0 0.45rem;
    font-size: clamp(1.35rem, 2vw, 2rem);
}

.sports-game-card__title-wrap h3 span {
    color: var(--sports-muted);
    font-size: 0.7em;
}

.sports-chip {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: var(--sports-accent-soft);
    color: var(--sports-accent);
    font-size: 0.76rem;
    font-weight: 700;
}

.sports-chip--muted {
    background: rgba(255, 255, 255, 0.05);
    color: var(--sports-muted);
}

.sports-game-card__body {
    min-width: 0;
}

.sports-odds-table-wrapper {
    position: relative;
    isolation: isolate;
    border: 1px solid var(--sports-border);
    border-radius: 22px;
    overflow: auto;
    background: rgba(255, 255, 255, 0.02);
    scrollbar-width: thin;
    scrollbar-color: rgba(132, 246, 195, 0.92) rgba(255, 255, 255, 0.06);
}

.sports-odds-table-wrapper::-webkit-scrollbar {
    height: 12px;
}

.sports-odds-table-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
}

.sports-odds-table-wrapper::-webkit-scrollbar-thumb {
    border-radius: 999px;
    border: 2px solid rgba(7, 12, 18, 0.9);
    background: linear-gradient(90deg,
            rgba(37, 213, 138, 0.56) 0%,
            rgba(167, 244, 203, 0.98) 50%,
            rgba(37, 213, 138, 0.56) 100%);
    background-size: 200% 100%;
    animation: sportsScrollbarShimmer 2.4s linear infinite;
    box-shadow: 0 0 12px rgba(37, 213, 138, 0.18);
}

.sports-odds-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg,
            rgba(37, 213, 138, 0.72) 0%,
            rgba(186, 250, 217, 1) 50%,
            rgba(37, 213, 138, 0.72) 100%);
    background-size: 200% 100%;
}

@keyframes sportsScrollbarShimmer {
    from {
        background-position: 200% 0;
    }

    to {
        background-position: 0 0;
    }
}

.sports-odds-table__corner-overlay {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 40;
    height: 0;
    pointer-events: none;
}

.sports-odds-table__corner-surface {
    display: flex;
    align-items: center;
    width: var(--sports-market-col-width);
    min-width: var(--sports-market-col-width);
    min-height: var(--sports-table-head-height);
    padding: 0.95rem 1rem;
    background: rgba(8, 14, 20, 1);
    color: var(--sports-text);
    box-shadow:
        1px 0 0 rgba(255, 255, 255, 0.05),
        16px 0 26px rgba(4, 9, 13, 0.34);
}

.sports-odds-table {
    width: 100%;
    min-width: 980px;
    border-collapse: separate;
    border-spacing: 0;
}

.sports-odds-table th,
.sports-odds-table td {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.sports-odds-table thead th {
    position: sticky;
    top: 0;
    z-index: 6;
    height: var(--sports-table-head-height);
    overflow: hidden;
    background: rgba(7, 12, 18, 0.96);
    backdrop-filter: blur(14px);
}

.sports-odds-table__market-col,
.sports-odds-table__label {
    position: sticky;
    left: 0;
    z-index: 8;
    text-align: left;
    min-width: var(--sports-market-col-width);
    width: var(--sports-market-col-width);
    background: rgba(8, 14, 20, 0.98);
    box-shadow:
        1px 0 0 rgba(255, 255, 255, 0.05),
        16px 0 26px rgba(4, 9, 13, 0.28);
}

.sports-odds-table__market-col {
    top: 0;
    z-index: 10;
    background: rgba(8, 14, 20, 1);
    color: transparent;
}

.sports-odds-table__best-header,
.sports-odds-table__best-col {
    min-width: var(--sports-best-col-width);
    width: var(--sports-best-col-width);
    background: rgba(8, 14, 20, 0.98);
    box-shadow: 0 0 0 1px rgba(37, 213, 138, 0.04) inset;
}

.sports-odds-table__best-header {
    z-index: 4;
}

.sports-odds-table__book-col {
    z-index: 4;
}

.sports-odds-table__best-col {
    padding: 0.7rem 0.8rem;
}

.sports-bookmaker-head {
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    font-size: 0.76rem;
    font-weight: 700;
}

.sports-bookmaker-head span,
.sports-bookmaker-head small {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sports-bookmaker-head--best {
    color: #9cf6c6;
}

.sports-best-column-title {
    letter-spacing: 0.04em;
}

.sports-bookmaker-head--best small {
    font-size: 0.68rem;
    color: var(--sports-muted);
}

.sports-row-best {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    padding: 0.8rem 0.85rem;
    width: 100%;
    min-height: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.025);
}

.sports-row-best.is-active {
    border-color: rgba(37, 213, 138, 0.34);
    background:
        radial-gradient(circle at top left, rgba(37, 213, 138, 0.2), transparent 60%),
        rgba(8, 16, 23, 0.94);
    box-shadow:
        inset 0 0 0 1px rgba(37, 213, 138, 0.1),
        0 0 22px rgba(37, 213, 138, 0.12);
}

.sports-row-best__badge {
    order: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(37, 213, 138, 0.18);
    border: 1px solid rgba(37, 213, 138, 0.34);
    color: #8ef4c1;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 0 18px rgba(37, 213, 138, 0.18);
}

.sports-row-best__book {
    order: 3;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--sports-muted);
    font-size: 0.82rem;
    text-align: left;
}

.sports-row-best__book span {
    overflow-wrap: anywhere;
}

.sports-row-best__price {
    order: 2;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
    color: #9cf6c6;
    text-shadow: 0 0 20px rgba(37, 213, 138, 0.24);
}

.sports-market-row td {
    text-align: left;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sports-gold);
    background: rgba(255, 255, 255, 0.03);
}

.sports-market-row__label {
    position: sticky;
    left: 0;
    z-index: 9;
    min-width: var(--sports-market-col-width);
    width: var(--sports-market-col-width);
    background: rgba(15, 22, 30, 0.98);
    box-shadow:
        1px 0 0 rgba(255, 255, 255, 0.05),
        16px 0 26px rgba(4, 9, 13, 0.28);
}

.sports-market-row__fill {
    background: rgba(255, 255, 255, 0.03);
}

.sports-odd {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.sports-line-points {
    color: var(--sports-muted);
}

.sports-card-empty,
.sports-empty-state {
    text-align: center;
}

.sports-card-empty {
    padding: 1rem 1.1rem;
    border: 1px dashed var(--sports-border-strong);
    border-radius: 20px;
    color: var(--sports-muted);
}

.sports-empty-state__icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 0.9rem;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--sports-accent);
    font-size: 1.45rem;
}

.sports-empty-state h3,
.sports-copy-shell__main h3,
.sports-insight-card h3,
.sports-faq-card h3,
.sports-education-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}

.sports-insights__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.3rem;
}

.sports-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.sports-insight-card {
    padding: 1.15rem;
}

.sports-faq-card {
    padding: 1.15rem;
}

.sports-insight-card p,
.sports-faq-card p,
.sports-education-card p {
    margin: 0;
    line-height: 1.7;
}

.sports-copy-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: start;
    gap: 1rem;
    margin-top: 1.25rem;
}

.sports-copy-shell__main,
.sports-copy-shell__aside {
    min-width: 0;
}

.sports-copy-shell__linkline a,
.sports-education-card a {
    color: var(--sports-accent);
    font-weight: 700;
}

.sports-education-card {
    align-items: flex-start;
    padding: 1.15rem;
}

.sports-education-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(217, 177, 94, 0.13);
    color: var(--sports-gold);
    font-size: 1.2rem;
}

.sports-page .leagues-grid {
    margin: 1.2rem 0 0;
    padding: 0;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.sports-page .league-card {
    border-radius: 22px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--sports-border);
    color: var(--sports-text);
    box-shadow: none;
}

.sports-page .league-card--active {
    border-color: rgba(37, 213, 138, 0.48);
    background: linear-gradient(180deg, rgba(37, 213, 138, 0.12), rgba(255, 255, 255, 0.03));
}

.sports-page .icon-wrap {
    border-radius: 16px;
    border-color: var(--sports-border);
    background: rgba(255, 255, 255, 0.05);
}

.sports-page .pill {
    color: var(--sports-muted);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--sports-border);
}

.sports-page .pill--accent {
    color: var(--sports-accent);
    border-color: rgba(37, 213, 138, 0.22);
    background: rgba(37, 213, 138, 0.12);
}

.sports-promo {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    background:
        radial-gradient(circle at right, rgba(37, 213, 138, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(10, 18, 24, 0.98), rgba(16, 24, 34, 0.96));
}

@media (max-width: 1200px) {
    .sports-hero__inner,
    .sports-copy-shell,
    .sports-promo,
    .sports-game-card__header {
        grid-template-columns: 1fr;
    }

    .sports-insights__grid,
    .sports-faq__grid,
    .sports-page .leagues-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .sports-page {
        padding: 1.4rem 0.85rem 3.5rem;
    }

    .sports-toolbar,
    .sports-hero__actions,
    .sports-toolbar__controls,
    .featured-bet-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .featured-bet-card__meta {
        grid-template-columns: 1fr;
    }

    .sports-page .leagues-grid,
    .sports-insights__grid,
    .sports-faq__grid {
        grid-template-columns: 1fr;
    }

    .sports-search,
    .sports-toolbar__count {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .sports-page {
        --sports-market-col-width: 180px;
        --sports-best-col-width: 160px;
    }

    .sports-page h1 {
        font-size: 2.3rem;
    }

    .sports-hero,
    .sports-toolbar,
    .sports-insights,
    .sports-faq,
    .sports-leagues,
    .sports-promo,
    .sports-empty-state,
    .sports-game-card {
        border-radius: 22px;
        padding: 1.1rem;
    }

    .sports-odds-table th,
    .sports-odds-table td {
        padding: 0.8rem 0.75rem;
    }
}
