:root {
    --goc-navy: #17213e;
    --goc-navy-deep: #111a33;
    --goc-purple: #6553d8;
    --goc-purple-light: #a789ff;
    --goc-green: #3ac981;
    --goc-ink: #18203a;
    --goc-muted: #6f7891;
}

.goc-events {
    position: relative;
    overflow: hidden;
    padding: 0;
    color: #fff;
    background: transparent;
}

.goc-events__inner {
    position: relative;
}

.goc-events__tabs {
    display: flex;
    gap: 18px;
    margin: 0 50px 30px;
    overflow-x: auto;
    scrollbar-width: none;
}

.goc-events__tabs::-webkit-scrollbar {
    display: none;
}

.goc-events__tab {
    flex: 0 0 auto;
    min-width: 132px;
    padding: 11px 21px;
    border: 1px solid #7061dc;
    border-radius: 9px;
    color: #fff;
    background: rgba(27, 36, 67, .72);
    font-size: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s, background .2s, border-color .2s;
}

.goc-events__tab:hover,
.goc-events__tab:focus-visible {
    transform: translateY(-2px);
    border-color: #b6a7ff;
}

.goc-events__tab.is-active {
    border-color: transparent;
    background: linear-gradient(135deg, #7763e3, #5947c7);
    box-shadow: 0 8px 24px rgba(68, 45, 174, .3);
}

.goc-events__slider-shell {
    position: relative;
}

.goc-events__viewport {
    margin: 0 50px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.goc-events__viewport::-webkit-scrollbar {
    display: none;
}

.goc-events__track {
    display: flex;
    gap: 28px;
    align-items: stretch;
    width: max-content;
}

.goc-event-card {
    flex: 0 0 246px;
    scroll-snap-align: start;
}

.goc-event-card[hidden] {
    display: none;
}

.goc-event-card__main {
    display: flex;
    min-height: 264px;
    min-height: 300px;
    height: 100%;
    padding: 22px 20px 18px;
    border-radius: 10px;
    flex-direction: column;
    color: var(--goc-ink);
    background: #fff;
    box-shadow: 0 18px 35px rgba(3, 8, 26, .2);
    text-decoration: none;
    transition: transform .22s, box-shadow .22s;
}

.goc-event-card__main:hover,
.goc-event-card__main:focus-visible {
    color: var(--goc-ink);
    transform: translateY(-5px);
    box-shadow: 0 23px 45px rgba(3, 8, 26, .3);
}

.goc-event-card__sport-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}

.goc-event-card__league {
    max-width: 60%;
    overflow: hidden;
    color: var(--goc-muted);
    font-size: 10px;
    font-size: 13px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.goc-event-card__sport {
    padding: 4px 9px;
    border-radius: 99px;
    color: #fff;
    background: var(--goc-purple);
    font-size: 9px;
    font-size: 12px;
    font-weight: 700;
}

.goc-event-card[data-sport="volleyball"] .goc-event-card__sport {
    background: var(--goc-green);
}

.goc-event-card[data-sport="basketball"] .goc-event-card__sport {
    background: #f0984a;
}

.goc-event-card[data-sport="tennis"] .goc-event-card__sport {
    background: #26a6b8;
}

.goc-event-card__teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 6px;
    align-items: center;
    min-height: 48px;
    margin: 0 0 12px;
    color: var(--goc-ink);
    font-size: 13px;
    font-size: 16px;
    line-height: 1.3;
}

.goc-event-card__logos {
    display: grid;
    grid-template-columns: 42px auto 42px;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.goc-event-card__logos span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
}

.goc-event-card__logos img {
    max-width: 38px;
    max-height: 38px;
    object-fit: contain;
}

.goc-event-card__logos small {
    color: #a5abc0;
    font-size: 8px;
    font-size: 11px;
    font-weight: 800;
}

.goc-event-card__teams span:last-child {
    text-align: right;
}

.goc-event-card__versus {
    color: #a5abc0;
    font-size: 9px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.goc-event-card__date {
    display: flex;
    gap: 7px;
    align-items: center;
    margin-bottom: 13px;
    color: #66708a;
    font-size: 10px;
    font-size: 13px;
    font-weight: 600;
}

.goc-event-card__date span {
    color: var(--goc-purple);
}

.goc-event-card__odds {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    margin-bottom: 12px;
}

.goc-event-card__odds > span {
    display: flex;
    min-width: 0;
    padding: 6px;
    border: 1px solid #ececf4;
    border-radius: 6px;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    background: #fafafe;
}

.goc-event-card__odds small {
    overflow: hidden;
    color: #8a90a4;
    font-size: 8px;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.goc-event-card__odds strong {
    color: var(--goc-purple);
    font-size: 10px;
    font-size: 13px;
}

.goc-event-card__tips {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: auto;
    color: var(--goc-purple);
    font-size: 12px;
    font-size: 14px;
    font-weight: 700;
}

.goc-event-card__tips strong {
    font-size: 17px;
    font-size: 20px;
}

.goc-event-card__tips small {
    max-width: 100px;
    margin-left: auto;
    overflow: hidden;
    color: #9298aa;
    font-size: 9px;
    font-size: 11px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.goc-event-card__learn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 13px;
    border-top: 1px solid #eff0f5;
    color: #343b51;
    font-size: 10px;
    font-size: 13px;
    font-weight: 700;
}

.goc-event-card__learn span {
    color: var(--goc-purple);
    font-size: 18px;
    font-weight: 400;
}

.goc-events__arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 38px;
    height: 74px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    color: #fff;
    background: rgba(148, 154, 174, .68);
    font: 300 42px/1 sans-serif;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .2s, opacity .2s;
}

.goc-events__arrow:hover:not(:disabled),
.goc-events__arrow:focus-visible:not(:disabled) {
    background: var(--goc-purple);
}

.goc-events__arrow:disabled {
    opacity: .25;
    cursor: default;
}

.goc-events__arrow--prev {
    left: 0;
}

.goc-events__arrow--next {
    right: 0;
}

.goc-events__status {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* The Events archive lists every result; only embedded/home sections scroll. */
.goc-events-archive .goc-events__viewport {
    margin-right: 50px;
    margin-left: 50px;
    overflow: visible;
    scroll-snap-type: none;
}

.goc-events-archive .goc-events__track {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.goc-events-archive .goc-event-card {
    width: 100%;
    min-width: 0;
    flex: none;
}

.goc-events-archive .goc-events__arrow {
    display: none;
}

@media (max-width: 1100px) {
    .goc-events-archive .goc-events__track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .goc-events-archive .goc-events__track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 540px) {
    .goc-events-archive .goc-events__track {
        grid-template-columns: minmax(0, 1fr);
    }
}

.goc-events-empty {
    padding: 18px;
    border-left: 4px solid var(--goc-purple);
    background: #fff;
}

/* Match the full-width page shell used by the single Sportsbook template. */
.single-goc_event #page {
    width: 100%;
    max-width: none;
    margin: 0;
}

.single-goc_event #content {
    display: block;
    width: 100%;
    padding: 0;
}

.goc-single-event .grid-container {
    width: calc(100% - 48px);
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
}

.goc-single-event {
    width: 100%;
    background: #f4f5fa;
}

.goc-single-event__hero {
    padding: 52px 0 62px;
    color: #fff;
    background:
        radial-gradient(circle at 50% 0, rgba(119, 99, 227, .35), transparent 38%),
        linear-gradient(135deg, var(--goc-navy-deep), var(--goc-navy));
}

.goc-single-event__back {
    display: inline-block;
    margin-bottom: 38px;
    color: #c9cce0;
    font-size: 13px;
    text-decoration: none;
}

.goc-single-event__back:hover {
    color: #fff;
}

.goc-single-event__meta {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.goc-single-event__meta span {
    padding: 6px 11px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 99px;
    color: #dddff0;
    font-size: 11px;
}

.goc-single-event__matchup {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 170px minmax(0, 1fr);
    gap: 35px;
    align-items: center;
    text-align: center;
}

.goc-single-event__matchup h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(26px, 4vw, 48px);
}

.goc-single-event__team {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.goc-single-event__team img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.goc-single-event__kickoff {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.goc-single-event__kickoff strong {
    display: grid;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    place-items: center;
    background: var(--goc-purple);
    box-shadow: 0 0 0 8px rgba(101, 83, 216, .18);
}

.goc-single-event__kickoff time {
    color: #e4e5ef;
    font-size: 12px;
    font-weight: 700;
}

.goc-single-event__kickoff small {
    color: #9da4be;
}

.goc-single-event__odds {
    display: flex;
    max-width: 700px;
    gap: 8px;
    justify-content: center;
    margin: 34px auto 0;
}

.goc-single-event__odds div {
    display: flex;
    min-width: 120px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 7px;
    justify-content: space-between;
    gap: 20px;
    background: rgba(255, 255, 255, .07);
}

.goc-single-event__odds span {
    color: #c8ccdc;
    font-size: 12px;
}

.goc-single-event__content {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: 34px;
    padding-top: 55px;
    padding-bottom: 70px;
    color: var(--goc-ink);
}

.goc-single-event__content--tips-only {
    max-width: 920px;
.goc-single-event__content--single-column {
    grid-template-columns: minmax(0, 1fr);
}

.goc-single-event__details {
    grid-column: 1 / -1;
}

.goc-single-event__tips,
.goc-single-event__about {
.goc-single-event__about,
.goc-single-event__details,
.goc-single-event__teams-info {
    padding: clamp(24px, 4vw, 38px);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(25, 32, 59, .07);
}

.goc-single-event__details,
.goc-single-event__teams-info,
.goc-single-event__tips,
.goc-single-event__about {
    color: var(--goc-ink);
}

.goc-single-event__details h2 {
    margin: 5px 0 24px;
    color: var(--goc-ink);
}

.goc-single-event__details-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.goc-single-event__details-grid > div {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 72px;
    padding: 15px 17px;
    border: 1px solid #e8eaf1;
    border-radius: 8px;
    align-content: center;
    gap: 6px;
    background: #fbfbfe;
}

.goc-single-event__detail-icon {
    display: grid;
    width: 34px;
    height: 34px;
    grid-row: 1 / 3;
    border-radius: 8px;
    place-items: center;
    color: var(--goc-purple);
    background: #efedff;
    font-style: normal;
}

.goc-single-event__detail-icon--status::before { content: "●"; }
.goc-single-event__detail-icon--sport::before { content: "★"; }
.goc-single-event__detail-icon--competition::before { content: "◆"; }
.goc-single-event__detail-icon--country::before { content: "◎"; }
.goc-single-event__detail-icon--venue::before { content: "⌂"; }
.goc-single-event__detail-icon--time::before { content: "◷"; }

.goc-single-event__teams-info {
    grid-column: 1 / -1;
}

.goc-single-event__teams-info h2 {
    margin: 5px 0 24px;
    color: var(--goc-ink) !important;
}

.goc-single-event__teams-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.goc-single-event__team-card {
    padding: 22px;
    border: 1px solid #e8eaf1;
    border-radius: 10px;
    background: #fbfbfe;
}

.goc-single-event__team-card header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.goc-single-event__team-card header img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.goc-single-event__team-card h3 {
    margin: 0;
    color: var(--goc-ink) !important;
}

.goc-single-event__team-card ul {
    display: grid;
    gap: 8px;
    margin: 0;
    list-style: none;
}

.goc-single-event__team-card li {
    display: grid;
    grid-template-columns: 27px minmax(80px, 1fr) minmax(0, 1.3fr);
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 7px;
    color: var(--goc-ink);
    background: #fff;
}

.goc-single-event__team-card li i {
    display: grid;
    width: 25px;
    height: 25px;
    border-radius: 6px;
    place-items: center;
    color: var(--goc-purple);
    background: #efedff;
    font-style: normal;
}

.goc-single-event__team-card li span {
    color: var(--goc-muted);
    font-size: 11px;
    text-transform: uppercase;
}

.goc-single-event__team-card li strong {
    color: var(--goc-ink);
    text-align: right;
}

.goc-single-event__details-grid span {
    color: var(--goc-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.goc-single-event__details-grid strong {
    color: var(--goc-ink);
    line-height: 1.35;
}

.goc-single-event__details-grid .goc-single-event__status {
    width: max-content;
    padding: 4px 9px;
    border-radius: 99px;
    color: #fff;
    background: var(--goc-purple);
    font-size: 11px;
    text-transform: capitalize;
}

.goc-single-event__details-grid .goc-single-event__status--live {
    background: var(--goc-green);
}

.goc-single-event__tips > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.goc-single-event__eyebrow {
    color: var(--goc-purple);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.goc-single-event__tips h2,
.goc-single-event__about h2 {
    margin: 5px 0 0;
    color: var(--goc-ink);
}

.goc-single-event__tip-count {
    display: grid;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    place-items: center;
    color: #fff;
    background: var(--goc-purple);
}

.goc-tips-list {
    display: grid;
    gap: 16px;
}

.goc-tip {
    padding: 22px;
    border: 1px solid #e9eaf1;
    border-radius: 9px;
}

.goc-tip__top,
.goc-tip footer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.goc-tip__market {
    color: var(--goc-purple);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.goc-tip__odds {
    margin-left: auto;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    background: var(--goc-green);
}

.goc-tip h3 {
    margin: 8px 0;
    color: var(--goc-ink);
}

.goc-tip__analysis {
    color: #606980;
}

.goc-tip footer {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #eff0f4;
    color: #858ca0;
    font-size: 11px;
}

.goc-tip footer a {
    margin-left: auto;
}

.goc-tip__confidence {
    color: var(--goc-purple);
    font-weight: 700;
}

.goc-single-event__empty {
    padding: 35px;
    border: 1px dashed #d7d9e5;
    border-radius: 9px;
    text-align: center;
}

.goc-single-event__empty h3 {
    margin-top: 0;
}

@media (max-width: 768px) {
    .goc-single-event .grid-container {
        width: calc(100% - 32px);
    }

    .goc-events__tabs,
    .goc-events__viewport {
        margin-right: 24px;
        margin-left: 24px;
    }

    .goc-events__arrow {
        display: none;
    }

    .goc-event-card {
        flex-basis: min(78vw, 275px);
    }

    .goc-single-event__matchup {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .goc-single-event__kickoff {
        grid-row: 2;
    }

    .goc-single-event__content {
        grid-template-columns: 1fr;
    }

    .goc-single-event__details-grid {
        grid-template-columns: 1fr;
    }

    .goc-single-event__teams-grid {
        grid-template-columns: 1fr;
    }

    .goc-single-event__odds {
        flex-wrap: wrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    .goc-events__viewport {
        scroll-behavior: auto;
    }

    .goc-event-card__main,
    .goc-events__tab {
        transition: none;
    }
}