._container_182i6_1 {
    display: grid;
    grid: "ticker ticker" "header header" "main main" 1fr "navigation navigation" / 1fr auto;
    max-width: 90rem;
    margin: 0 auto;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    background-color: var(--color-bg-margin)
}

@media(min-width: 48rem) {
    ._container_182i6_1 {
        grid:"ticker ticker ticker" "header header header" "stories stories betslip" "navigation main betslip" 1fr / auto 1fr auto;
        padding-bottom: 0;
        max-height: 100vh;
        max-height: -webkit-fill-available
    }
}

._ticker_182i6_29 {
    grid-area: ticker;
    display: none
}

@media(min-width: 48rem) {
    ._ticker_182i6_29 {
        display:block
    }
}

._darkBodyOverLay_182i6_40 {
    background-color: #000c
}

._header_182i6_44 {
    grid-area: header;
    height: 3.5rem;
    background-color: var(--color-bg-navigation-topnav);
    position: sticky;
    top: 0;
    z-index: 50
}

._stories_182i6_53 {
    grid-area: stories;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 51
}

._storyModalPortal_182i6_61 {
    grid-area: main;
    position: relative;
    z-index: 51;
    pointer-events: none
}

._storyModalPortalActive_182i6_68 {
    grid-area: main;
    position: relative;
    z-index: 51;
    pointer-events: auto!important
}

@media(min-width: 48rem) {
    ._storyModalPortal_182i6_61,._storyModalPortalActive_182i6_68 {
        grid-area:navigation / navigation / main / main
    }
}

._navigation_182i6_85 {
    grid-area: navigation;
    background-color: var(--color-bg-navigation-leftnav-main);
    position: sticky;
    bottom: 0;
    z-index: 50;
    width: 100%
}

@media(min-width: 48rem) {
    ._navigation_182i6_85 {
        position:initial;
        width: 15rem;
        border-right: 1px solid var(--color-border-leftnav, var(--color-border-primary))
    }
}

@media(min-width: 48rem)and (max-width:79.9375rem) {
    ._navigation_182i6_85 {
        width:0!important;
        min-width: 0;
        border: none;
        padding: 0;
        overflow: hidden
    }
}

._main_182i6_113 {
    grid-area: main;
    background-color: var(--color-bg-body);
    overflow-y: hidden;
    overflow-x: hidden;
    position: relative;
    color: var(--color-text-primary);
    padding-bottom: 11rem
}

@media(min-width: 48rem) {
    ._main_182i6_113 {
        overflow-y:auto;
        padding-bottom: 0
    }
}

._betslip_182i6_130 {
    grid-area: betslip;
    position: fixed;
    inset: 0;
    overflow: auto
}

@media(min-width: 48rem) {
    ._betslip_182i6_130 {
        position:relative;
        transition: width .2s ease-in-out
    }
}
:root {
  --pony-ink: #07043a;
  --pony-blue: #120da8;
  --pony-blue-dark: #0d086d;
  --pony-orange: #f04405;
  --pony-orange-dark: #d73802;
  --pony-cloud: #f3f3f5;
  --pony-card: #ffffff;
  --pony-muted: #5c6073;
  --pony-line: #dedfe6;
  --pony-shadow: 0 20px 60px rgba(7, 4, 58, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #eeeeef;
  color: var(--pony-ink);
}

button {
  font: inherit;
}

.pony-age-shade,
.pony-settings-shade {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(7, 4, 58, 0.72);
  backdrop-filter: blur(8px);
}

.pony-age-shade.pony-visible,
.pony-settings-shade.pony-visible {
  display: flex;
}

.pony-age-card,
.pony-settings-card {
  width: min(520px, 100%);
  border-radius: 18px;
  background: var(--pony-card);
  box-shadow: var(--pony-shadow);
  overflow: hidden;
}

.pony-age-card {
  position: relative;
  padding: 34px;
  text-align: center;
  border-top: 10px solid var(--pony-orange);
}

.pony-age-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 92px;
  background: linear-gradient(135deg, var(--pony-blue), var(--pony-blue-dark));
  z-index: 0;
}

.pony-age-card > * {
  position: relative;
  z-index: 1;
}

.pony-age-mark {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: 10px auto 24px;
  border-radius: 50%;
  background: var(--pony-orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(240, 68, 5, 0.35);
  border: 7px solid #fff;
}

.pony-age-mark span {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.pony-age-card h2,
.pony-settings-card h2,
.pony-cookie-copy h3 {
  margin: 0;
  color: var(--pony-ink);
  font-weight: 900;
}

.pony-age-card h2 {
  font-size: 30px;
}

.pony-age-card p {
  margin: 14px auto 0;
  max-width: 420px;
  line-height: 1.5;
  color: var(--pony-muted);
}

.pony-age-actions,
.pony-cookie-actions,
.pony-settings-actions {
  display: flex;
  gap: 10px;
}

.pony-age-actions {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pony-action-primary,
.pony-action-secondary,
.pony-action-ghost,
.pony-close-button {
  border: 0;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.pony-action-primary:hover,
.pony-action-secondary:hover,
.pony-action-ghost:hover,
.pony-close-button:hover {
  transform: translateY(-1px);
}

.pony-action-primary {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--pony-orange);
  color: #fff;
  box-shadow: 0 10px 22px rgba(240, 68, 5, 0.28);
}

.pony-action-primary:hover {
  background: var(--pony-orange-dark);
}

.pony-action-secondary {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: #e8e8ee;
  color: var(--pony-ink);
}

.pony-action-secondary:hover {
  background: #dcdce5;
}

.pony-action-ghost {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--pony-ink);
  box-shadow: inset 0 0 0 2px #e1e2e8;
}

.pony-action-ghost:hover {
  background: #f7f7fa;
}

.pony-age-note {
  font-size: 13px;
}

.pony-cookie-shell {
  position: fixed;
  right: 26px;
  bottom: 26px;
  left: 26px;
  z-index: 9998;
  display: none;
}

.pony-cookie-shell.pony-visible {
  display: block;
}

.pony-cookie-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 4, 58, 0.22);
  border-left: 7px solid var(--pony-orange);
}

.pony-cookie-badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffd747;
  color: var(--pony-ink);
  font-size: 23px;
  font-weight: 900;
  border: 5px dotted #fff2a2;
}

.pony-cookie-copy h3 {
  font-size: 18px;
}

.pony-cookie-copy p {
  margin: 5px 0 0;
  color: var(--pony-muted);
  line-height: 1.45;
}

.pony-settings-card {
  border-top: 10px solid var(--pony-orange);
}

.pony-settings-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 26px 18px;
  background: linear-gradient(135deg, var(--pony-blue), var(--pony-blue-dark));
}

.pony-settings-head h2 {
  margin-top: 4px;
  color: #fff;
  font-size: 28px;
}

.pony-settings-kicker {
  color: #ffcfbd;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pony-close-button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pony-orange);
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

.pony-settings-intro {
  margin: 0;
  padding: 20px 26px 4px;
  color: var(--pony-muted);
  line-height: 1.5;
}

.pony-consent-list {
  display: grid;
  gap: 12px;
  padding: 18px 26px;
}

.pony-consent-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--pony-line);
  border-radius: 14px;
  background: #f8f8fa;
  cursor: pointer;
}

.pony-consent-row strong {
  display: block;
  color: var(--pony-ink);
  font-size: 15px;
}

.pony-consent-row small {
  display: block;
  margin-top: 4px;
  color: var(--pony-muted);
  line-height: 1.4;
}

.pony-consent-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pony-consent-row i {
  position: relative;
  display: block;
  width: 54px;
  height: 30px;
  border-radius: 999px;
  background: #c9cad4;
  transition: background 0.18s ease;
}

.pony-consent-row i::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.18s ease;
  box-shadow: 0 3px 8px rgba(7, 4, 58, 0.2);
}

.pony-consent-row input:checked + i {
  background: var(--pony-orange);
}

.pony-consent-row input:checked + i::after {
  transform: translateX(24px);
}

.pony-consent-row-locked {
  cursor: not-allowed;
  background: #eeeef3;
}

.pony-settings-actions {
  justify-content: flex-end;
  padding: 0 26px 26px;
}

@media (max-width: 760px) {
  .pony-cookie-main {
    grid-template-columns: auto 1fr;
  }

  .pony-cookie-actions {
    grid-column: 1 / -1;
    flex-direction: column;
  }

  .pony-cookie-actions button,
  .pony-settings-actions button,
  .pony-age-actions button {
    width: 100%;
  }

  .pony-settings-actions {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .pony-cookie-shell {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .pony-age-card {
    padding: 28px 20px;
  }

  .pony-settings-head,
  .pony-settings-intro,
  .pony-consent-list,
  .pony-settings-actions {
    padding-left: 18px;
    padding-right: 18px;
  }
}