
/* Shared section-page components for Schedule, Tickets, Betting, Live and News */
.breadcrumbs {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto 22px;
    font-size: 14px;
    color: var(--muted);
}
.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.breadcrumbs li + li::before {
    content: "›";
    color: #b89257;
    font-weight: 800;
}
.breadcrumbs a {
    color: var(--text);
    font-weight: 800;
}
.breadcrumbs [aria-current="page"] {
    color: var(--brand);
    font-weight: 800;
}
.section-lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 850px;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}
.card-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.info-card,
.news-card,
.live-card,
.ticket-card,
.market-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    padding: 22px;
    box-shadow: 0 12px 30px rgba(7, 17, 31, 0.07);
}
.info-card h3,
.news-card h3,
.live-card h3,
.ticket-card h3,
.market-card h3 {
    margin: 0 0 10px;
    line-height: 1.25;
    color: var(--text);
}
.info-card p,
.news-card p,
.live-card p,
.ticket-card p,
.market-card p {
    margin: 0;
    color: var(--muted);
}
.badge,
.status-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #fff3c4;
    color: var(--brand);
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.status-label::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--brand);
}
.split-section {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 28px;
    align-items: center;
}
.section-image {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface-alt);
    box-shadow: var(--shadow);
}
.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.check-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}
.check-list li {
    position: relative;
    padding-left: 30px;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 13px;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}
.button.secondary {
    background: #ffffff;
    color: var(--dark);
}
.button.ghost {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.45);
}
.schedule-flow {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}
.schedule-stage {
    display: grid;
    grid-template-columns: minmax(160px, 0.35fr) 1fr minmax(120px, 0.3fr);
    gap: 16px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff, #fff7e6);
}
.schedule-stage strong {
    font-size: 18px;
    color: var(--dark);
}
.schedule-stage span {
    color: var(--muted);
}
.stage-date {
    justify-self: end;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
}
.group-map {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}
.group-map a,
.group-tile {
    display: block;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: var(--surface-alt);
    color: var(--text);
    font-weight: 800;
}
.group-map a:hover {
    color: var(--brand);
    background: #fff;
    text-decoration: none;
}
.live-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 18px;
}
.live-card {
    display: block;
    color: var(--text);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.live-card:hover {
    transform: translateY(-3px);
    text-decoration: none;
    box-shadow: var(--shadow);
}
.live-card.featured {
    grid-row: span 2;
    background: linear-gradient(135deg, #1c1118, #5c0010);
    color: #fff;
}
.live-card.featured h3,
.live-card.featured p {
    color: #fff;
}
.news-feature {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 26px;
    align-items: center;
}
.news-feature .section-image {
    min-height: 280px;
}
.news-card {
    padding: 0;
    overflow: hidden;
}
.news-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.news-card-body {
    padding: 20px;
}
.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}
.tag-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.tag-bar a,
.tag-bar span {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--surface-alt);
    color: var(--text);
    font-weight: 800;
}
.notice-box {
    border: 1px solid rgba(193,18,31,.25);
    border-left: 5px solid var(--brand);
    border-radius: 18px;
    padding: 20px;
    background: #fffafa;
    color: var(--text);
    margin-top: 20px;
}
.numbered-steps {
    counter-reset: step;
    display: grid;
    gap: 14px;
    margin-top: 22px;
}
.numbered-steps .step {
    counter-increment: step;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    padding: 18px 18px 18px 64px;
    position: relative;
}
.numbered-steps .step::before {
    content: counter(step);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
}
@media (max-width: 860px) {
    .card-grid,
    .card-grid.two,
    .live-grid,
    .news-feature,
    .split-section {
        grid-template-columns: 1fr;
    }
    .group-map {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .schedule-stage {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .stage-date {
        justify-self: start;
    }
}
@media (max-width: 560px) {
    .breadcrumbs {
        width: calc(100% - 20px);
    }
    .group-map {
        grid-template-columns: 1fr;
    }
    .info-card,
    .news-card-body,
    .live-card,
    .ticket-card,
    .market-card {
        padding: 18px;
    }
}


/* Full fixture schedule table */
.schedule-toc ol {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
}
.schedule-toc a {
    display: block;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface-alt);
    color: var(--text);
    font-weight: 800;
}
.schedule-toc a:hover {
    background: #fff;
    color: var(--brand);
    text-decoration: none;
}
.schedule-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}
.schedule-notes span {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff3c4;
    color: var(--brand);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.schedule-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(7, 17, 31, 0.06);
}
.real-schedule-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
    display: table;
}
.real-schedule-table th,
.real-schedule-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    vertical-align: top;
}
.real-schedule-table th:last-child,
.real-schedule-table td:last-child {
    border-right: 0;
}
.real-schedule-table tbody tr:nth-child(even) {
    background: #fffaf0;
}
.real-schedule-table tbody tr:hover {
    background: #fff0c2;
}
.real-schedule-table th {
    position: sticky;
    top: 0;
    background: var(--dark);
    color: #fff;
    z-index: 1;
}
.real-schedule-table td:first-child,
.real-schedule-table td:nth-child(3) {
    font-weight: 900;
    color: var(--brand);
    white-space: nowrap;
}
@media (max-width: 860px) {
    .schedule-toc ol {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 560px) {
    .schedule-toc ol {
        grid-template-columns: 1fr;
    }
}


/* Generated editorial content and affiliate wrappers */
.table-scroll { width: 100%; overflow-x: auto; margin: 18px 0 24px; border-radius: 18px; border: 1px solid var(--line); background: #fff; }
.content-table { width: 100%; min-width: 760px; border-collapse: collapse; display: table; }
.content-table th, .content-table td { padding: 12px 14px; border: 1px solid var(--line); vertical-align: top; text-align: left; }
.content-table th { background: var(--dark); color: #fff; }
.section-note { margin-top: 18px; color: var(--dark); }
.internal-link { font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.hero-affiliate-actions, .affiliate-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.hero-affiliate-actions .button.secondary, .affiliate-cta .button.secondary { background: #ffffff; color: var(--dark) !important; border-color: rgba(28,17,24,.2); }
.affiliate-cta { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; background: linear-gradient(135deg, #1c1118, #5c0010); color: #fff; }
.affiliate-cta h2, .affiliate-cta p { color: #fff; margin-top: 0; }
.affiliate-image-link { display: block; border-radius: inherit; color: inherit; }
.affiliate-image-link:hover { text-decoration: none; filter: brightness(1.03); }
@media (max-width: 860px) {
    .affiliate-cta { grid-template-columns: 1fr; }
    .hero-affiliate-actions, .affiliate-cta-actions { flex-direction: column; }
    .hero-affiliate-actions .button, .affiliate-cta-actions .button { width: 100%; }
}

/* Final navigation, CTA and confirmed schedule fixes */
@media (min-width: 861px) {
    .site-header {
        width: 100%;
        max-width: none;
        padding-left: clamp(10px, 1.6vw, 28px);
        padding-right: clamp(10px, 1.6vw, 28px);
        gap: 8px;
        flex-wrap: nowrap;
    }
    .brand {
        flex: 0 0 auto;
        min-width: 0;
        gap: 7px;
    }
    .brand-mark {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
    }
    .brand span {
        font-size: 13px;
        line-height: 1.05;
        max-width: 128px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .main-nav {
        flex: 1 1 auto;
        min-width: 0;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-end;
        gap: clamp(4px, .46vw, 8px);
        font-size: clamp(10.5px, .72vw, 12.5px);
        line-height: 1.1;
        white-space: nowrap;
    }
    .main-nav > a,
    .nav-dropdown-toggle {
        padding: 7px 1px;
        white-space: nowrap;
    }
    .nav-affiliate-actions {
        margin-left: 4px;
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
}

@media (max-width: 1440px) and (min-width: 861px) {
    .brand span { display: none; }
}

.nav-affiliate-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-affiliate-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 11px !important;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 900;
    line-height: 1.05;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(120, 0, 18, .16);
    transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.nav-affiliate-button[data-offer="register"] {
    background: linear-gradient(135deg, #d6001c, #8f0014);
    color: #fff !important;
}

.nav-affiliate-button[data-offer="play"],
.nav-affiliate-button--dark[data-offer="play"] {
    background: linear-gradient(135deg, #ffd45a, #f2a900);
    color: #1c1118 !important;
    border-color: rgba(92, 0, 16, .18);
}

.nav-affiliate-button:hover {
    transform: translateY(-1px);
    text-decoration: none !important;
    filter: brightness(1.04);
    box-shadow: 0 14px 28px rgba(120, 0, 18, .22);
}

.hero .button.primary,
.hero-affiliate-actions .button[data-offer="register"],
.affiliate-cta-actions .button[data-offer="register"] {
    background: linear-gradient(135deg, #d6001c, #8f0014) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 14px 30px rgba(120, 0, 18, .24);
}

.hero .button.secondary,
.hero-affiliate-actions .button[data-offer="play"],
.affiliate-cta-actions .button[data-offer="play"] {
    background: linear-gradient(135deg, #ffd45a, #f2a900) !important;
    color: #1c1118 !important;
    border-color: rgba(255, 255, 255, .36) !important;
    box-shadow: 0 14px 30px rgba(242, 169, 0, .22);
}

.hero .button:hover,
.hero-affiliate-actions .button:hover,
.affiliate-cta-actions .button:hover {
    transform: translateY(-1px);
    text-decoration: none !important;
    filter: brightness(1.04);
}

.nav-overview-link {
    font-weight: 950 !important;
    color: var(--brand, #aa0012) !important;
    background: #fff3cc;
}

.confirmed-schedule-table th,
.confirmed-schedule-table td {
    font-size: 14px;
}

.confirmed-schedule-table td:nth-child(4),
.confirmed-schedule-table td:nth-child(2) {
    font-weight: 800;
}

@media (max-width: 860px) {
    .nav-affiliate-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin: 12px 0 0;
    }
    .nav-affiliate-button {
        width: 100%;
        min-height: 44px;
        text-align: center;
    }
    .nav-affiliate-button[data-offer="play"] { color: #1c1118 !important; }
}

@media (max-width: 560px) {
    .nav-affiliate-actions { grid-template-columns: 1fr; }
    .confirmed-schedule-table th,
    .confirmed-schedule-table td { font-size: 13px; }
}

/* Final dropdown stability fix: keeps large desktop dropdowns open while moving from menu item to panel. */
@media (min-width: 861px) {
    .site-header {
        overflow: visible !important;
        z-index: 5000 !important;
    }

    .main-nav,
    .nav-dropdown {
        overflow: visible !important;
    }

    .nav-dropdown-menu {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .16s ease, visibility .16s ease;
        z-index: 5100 !important;
    }

    .nav-dropdown:hover > .nav-dropdown-menu,
    .nav-dropdown:focus-within > .nav-dropdown-menu,
    .nav-dropdown.is-open > .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-dropdown::before {
        content: "";
        display: none;
        position: absolute;
        left: -16px;
        right: -16px;
        top: 100%;
        height: 18px;
        background: transparent;
        pointer-events: auto;
        z-index: 5090;
    }

    .nav-dropdown:hover::before,
    .nav-dropdown.is-open::before,
    .nav-dropdown:focus-within::before {
        display: block;
    }

    .nav-dropdown-menu--teams,
    .nav-dropdown-menu--host-cities,
    .nav-dropdown-menu--stadiums,
    .nav-dropdown-menu--estadios {
        position: fixed !important;
        top: 54px !important;
        z-index: 5100 !important;
    }

    .nav-dropdown--teams::before,
    .nav-dropdown--host-cities::before,
    .nav-dropdown--stadiums::before,
    .nav-dropdown--estadios::before {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        top: 42px !important;
        height: 44px !important;
    }
}

@media (max-width: 860px) {
    .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-dropdown:not(.is-open) > .nav-dropdown-menu {
        display: none !important;
    }

    .nav-dropdown.is-open > .nav-dropdown-menu {
        display: block !important;
    }

    .nav-dropdown.is-open > .nav-dropdown-menu--groups {
        display: grid !important;
    }
}


/* Wider desktop brand area: prevents the logo text from being clipped. */
@media (min-width: 1441px) {
    .brand { flex: 0 0 218px !important; min-width: 218px !important; gap: 9px !important; }
    .brand-mark { width: 42px !important; height: 42px !important; flex: 0 0 42px !important; }
    .brand span { display: block !important; max-width: none !important; overflow: visible !important; text-overflow: clip !important; white-space: nowrap !important; font-size: 14px !important; }
}
@media (min-width: 1720px) {
    .brand { flex-basis: 236px !important; min-width: 236px !important; }
    .brand span { font-size: 15px !important; }
}
@media (max-width: 860px) {
    .brand span { max-width: none !important; overflow: visible !important; text-overflow: clip !important; }
}


/* Use real flags clearly in selection cards and body illustrations. */
img[src*="flagcdn.com"] { object-fit: contain !important; background: #fff; padding: 16px; }

/* Official live-stream cards. */
.official-stream-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin: 24px 0; }
.official-stream-card { display: flex; flex-direction: column; min-height: 250px; padding: 25px; border-radius: 20px; border: 1px solid rgba(255,255,255,.22); color: #fff !important; box-shadow: 0 18px 38px rgba(28,17,24,.16); transition: transform .2s ease, box-shadow .2s ease; }
.official-stream-card:hover { transform: translateY(-4px); text-decoration: none !important; box-shadow: 0 24px 46px rgba(28,17,24,.24); }
.official-stream-card--primary { background: linear-gradient(135deg, #b80019, #68000f); }
.official-stream-card--secondary { background: linear-gradient(135deg, #1c1118, #4b1721); }
.official-stream-kicker { display: inline-flex; align-self: flex-start; margin-bottom: 14px; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,.16); color: #ffd45a; font-size: 13px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.official-stream-card h3 { margin: 0 0 12px; color: #fff; font-size: 25px; }
.official-stream-card p { margin: 0 0 20px; color: rgba(255,255,255,.9); }
.official-stream-action { margin-top: auto; color: #ffd45a; font-weight: 950; }
.live-check-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 22px; }
.live-check-grid > div { padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface-alt); }
.live-check-grid h3 { margin-top: 0; }
@media (max-width: 760px) { .official-stream-grid, .live-check-grid { grid-template-columns: 1fr; } }

/* Extra landing CTA: bright cyan variant for the French FIFA 2026 betting button */
.nav-affiliate-button[data-offer="landing"],
.nav-affiliate-button--landing[data-offer="landing"] {
    background: linear-gradient(135deg, #00f5ff, #009dff) !important;
    color: #00131f !important;
    border-color: rgba(0, 87, 130, .34) !important;
    box-shadow: 0 12px 26px rgba(0, 181, 255, .34) !important;
}

.hero-affiliate-actions .button[data-offer="landing"],
.affiliate-cta-actions .button[data-offer="landing"] {
    background: linear-gradient(135deg, #00f5ff, #009dff) !important;
    color: #00131f !important;
    border-color: rgba(255, 255, 255, .48) !important;
    box-shadow: 0 14px 30px rgba(0, 181, 255, .32) !important;
}

@media (min-width: 861px) {
    .nav-affiliate-button[data-offer="landing"] {
        padding-left: 9px !important;
        padding-right: 9px !important;
        font-size: 11px;
    }
}

@media (max-width: 860px) {
    .nav-affiliate-button[data-offer="landing"] { color: #00131f !important; }
}



/* FINAL VISIBILITY FIXES — wider logo zone and three clearly distinct CTA colors */
@media (min-width: 861px) {
  .site-header {
    padding-left: clamp(18px, 2.2vw, 34px) !important;
    padding-right: clamp(14px, 1.8vw, 28px) !important;
    gap: 10px !important;
    overflow: visible !important;
  }
  .brand {
    flex: 0 0 252px !important;
    min-width: 252px !important;
    padding-left: 4px !important;
    gap: 10px !important;
    overflow: visible !important;
  }
  .brand-mark {
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 40px !important;
    overflow: visible !important;
  }
  .brand-mark img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
  }
  .brand span {
    display: block !important;
    max-width: none !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
    font-size: 14px !important;
    line-height: 1.1 !important;
  }
  .main-nav {
    gap: clamp(4px, .4vw, 7px) !important;
    font-size: clamp(10px, .7vw, 12px) !important;
  }
  .main-nav > a,
  .nav-dropdown-toggle {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }
  .nav-affiliate-actions {
    gap: 8px !important;
    margin-left: 6px !important;
  }
  .nav-affiliate-button {
    min-height: 36px !important;
    padding: 8px 12px !important;
    font-size: 12px !important;
  }
  .nav-affiliate-button[data-offer="landing"] {
    font-size: 12px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

.nav-affiliate-button[data-offer="register"],
.hero-affiliate-actions .button[data-offer="register"],
.affiliate-cta-actions .button[data-offer="register"] {
  background: linear-gradient(135deg, #ff1a3d, #a00016) !important;
  color: #ffffff !important;
  border-color: rgba(120, 0, 18, .18) !important;
  box-shadow: 0 14px 30px rgba(160, 0, 22, .28) !important;
}

.nav-affiliate-button[data-offer="play"],
.nav-affiliate-button--dark[data-offer="play"],
.hero-affiliate-actions .button[data-offer="play"],
.affiliate-cta-actions .button[data-offer="play"] {
  background: linear-gradient(135deg, #ffe25a, #ffb800) !important;
  color: #1c1118 !important;
  border-color: rgba(92, 0, 16, .18) !important;
  box-shadow: 0 14px 30px rgba(255, 184, 0, .28) !important;
}

.nav-affiliate-button[data-offer="landing"],
.nav-affiliate-button--landing[data-offer="landing"],
.hero-affiliate-actions .button[data-offer="landing"],
.affiliate-cta-actions .button[data-offer="landing"] {
  background: linear-gradient(135deg, #00f0ff, #008cff) !important;
  color: #04131e !important;
  border-color: rgba(0, 97, 156, .26) !important;
  box-shadow: 0 14px 30px rgba(0, 166, 255, .30) !important;
}

.nav-affiliate-button:hover,
.hero-affiliate-actions .button:hover,
.affiliate-cta-actions .button:hover {
  transform: translateY(-1px) !important;
  filter: brightness(1.05) !important;
}

@media (max-width: 860px) {
  .nav-affiliate-button[data-offer="register"] { color: #ffffff !important; }
  .nav-affiliate-button[data-offer="play"] { color: #1c1118 !important; }
  .nav-affiliate-button[data-offer="landing"] { color: #04131e !important; }
}
