._toggle_odyd6_1 {
    position: relative
}

._selected_odyd6_5:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--color-border-upnext-active)
}

._bgGradient_glj9x_1 {
    background: linear-gradient(95deg,var(--surface-contrast) 37.78%,var(--ui-brand-100) 96.67%)
}

._quickMenuBalanceVisible_g6gn5_1 {
    display: grid;
    grid: "balance balance account" "tokens  tokens  account";
    align-items: center
}

@media(min-width: 48rem) {
    ._quickMenuBalanceVisible_g6gn5_1 {
        grid:"tokens balance account"
    }
}

._tokens_g6gn5_15 {
    grid-area: tokens;
    display: flex;
    gap: .75rem;
    align-items: center
}

._depositMatch_g6gn5_22,._bonusBack_g6gn5_26,._boost_g6gn5_30,._bonus_g6gn5_26,._compact_g6gn5_38 {
    display: flex
}

@media(min-width: 40rem) {
    ._compact_g6gn5_38 {
        display:none
    }
}

._compactBonus_g6gn5_48 {
    display: flex
}

@media(min-width: 40rem) {
    ._compactBonus_g6gn5_48 {
        display:none
    }
}

._compactQuickMenuBalanceVisible_g6gn5_58 {
    display: grid;
    grid: "balance balance account" "tokens  tokens  account";
    align-items: center
}

._compactQuickMenuBalanceVisible_g6gn5_58 ._bonus_g6gn5_26,._compactQuickMenuBalanceVisible_g6gn5_58 ._boost_g6gn5_30,._compactQuickMenuBalanceVisible_g6gn5_58 ._depositMatch_g6gn5_22,._compactQuickMenuBalanceVisible_g6gn5_58 ._bonusBack_g6gn5_26 {
    display: none
}

@media(min-width: 40rem) {
    ._compactQuickMenuBalanceVisible_g6gn5_58 {
        display:grid;
        grid: "tokens balance account";
        align-items: center
    }

    ._compactQuickMenuBalanceVisible_g6gn5_58 ._bonus_g6gn5_26,._compactQuickMenuBalanceVisible_g6gn5_58 ._boost_g6gn5_30,._compactQuickMenuBalanceVisible_g6gn5_58 ._depositMatch_g6gn5_22,._compactQuickMenuBalanceVisible_g6gn5_58 ._bonusBack_g6gn5_26 {
        display: flex
    }
}

._balance_g6gn5_90 {
    grid-area: balance;
    text-align: right
}

@media(min-width: 40rem) {
    ._balance_g6gn5_90 {
        text-align:center
    }
}

._account_g6gn5_101 {
    grid-area: account
}
:root {
  --crownbet-navy: #070d26;
  --crownbet-navy-soft: #111936;
  --crownbet-ink: #1b2138;
  --crownbet-panel: #ffffff;
  --crownbet-surface: #f3f3f4;
  --crownbet-line: #e3e4ea;
  --crownbet-muted: #677087;
  --crownbet-magenta: #982aa5;
  --crownbet-magenta-light: #b937c4;
  --crownbet-purple: #2b367f;
  --crownbet-shadow: 0 24px 70px rgba(7, 13, 38, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(90deg, var(--crownbet-navy) 0 16.5%, #efefef 16.5% 79.5%, #ffffff 79.5% 100%);
  color: var(--crownbet-ink);
}

.crownbet-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.crownbet-demo-button {
  border: 0;
  border-radius: 22px;
  padding: 13px 22px;
  color: #ffffff;
  background: var(--crownbet-magenta);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(152, 42, 165, 0.32);
}

.crownbet-age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.crownbet-age-gate.is-visible {
  display: flex;
}

.crownbet-age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 13, 38, 0.78);
  backdrop-filter: blur(7px);
}

.crownbet-age-gate__panel {
  position: relative;
  width: min(460px, 100%);
  border-radius: 22px;
  padding: 26px;
  background: var(--crownbet-panel);
  box-shadow: var(--crownbet-shadow);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.crownbet-age-gate__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.crownbet-age-gate__logo {
  color: var(--crownbet-navy);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1.4px;
}

.crownbet-age-gate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 38px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--crownbet-magenta), var(--crownbet-purple));
  font-weight: 900;
}

.crownbet-age-gate__title {
  margin: 0 0 10px;
  color: var(--crownbet-navy);
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.8px;
}

.crownbet-age-gate__text {
  margin: 0;
  color: var(--crownbet-muted);
  font-size: 15px;
  line-height: 1.55;
}

.crownbet-age-gate__actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.crownbet-age-gate__button {
  min-height: 48px;
  border: 0;
  border-radius: 24px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.crownbet-age-gate__button:hover {
  transform: translateY(-1px);
}

.crownbet-age-gate__button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--crownbet-magenta), var(--crownbet-magenta-light));
  box-shadow: 0 14px 30px rgba(152, 42, 165, 0.35);
}

.crownbet-age-gate__button--secondary {
  color: var(--crownbet-navy);
  background: #eef0f6;
}

.crownbet-age-gate__notice {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--crownbet-line);
  color: var(--crownbet-muted);
  font-size: 12px;
  line-height: 1.45;
}

.crownbet-cookie {
  position: fixed;
  left: 16.8%;
  right: 20.8%;
  bottom: 18px;
  z-index: 900;
  display: none;
}

.crownbet-cookie.is-visible {
  display: block;
}

.crownbet-cookie__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 12px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--crownbet-line);
  box-shadow: 0 18px 50px rgba(7, 13, 38, 0.16);
}

.crownbet-cookie__main {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-width: 0;
}

.crownbet-cookie__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--crownbet-navy);
  font-size: 19px;
}

.crownbet-cookie__content {
  min-width: 0;
}

.crownbet-cookie__title {
  margin: 0 0 4px;
  color: var(--crownbet-navy);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
}

.crownbet-cookie__text {
  margin: 0;
  color: var(--crownbet-muted);
  font-size: 13px;
  line-height: 1.45;
}

.crownbet-cookie__actions {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
}

.crownbet-cookie__button {
  min-height: 39px;
  border-radius: 22px;
  padding: 0 15px;
  border: 0;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.crownbet-cookie__button--primary {
  color: #ffffff;
  background: var(--crownbet-magenta);
}

.crownbet-cookie__button--secondary {
  color: var(--crownbet-navy);
  background: #eef0f6;
}

.crownbet-cookie__button--ghost {
  color: var(--crownbet-magenta);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(152, 42, 165, 0.32);
}

.crownbet-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.crownbet-cookie-modal.is-visible {
  display: flex;
}

.crownbet-cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 13, 38, 0.68);
  backdrop-filter: blur(6px);
}

.crownbet-cookie-modal__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--crownbet-shadow);
}

.crownbet-cookie-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 16px;
  border-bottom: 1px solid var(--crownbet-line);
}

.crownbet-cookie-modal__eyebrow {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--crownbet-magenta);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.crownbet-cookie-modal__title {
  margin: 0;
  color: var(--crownbet-navy);
  font-size: 24px;
  letter-spacing: -0.6px;
}

.crownbet-cookie-modal__close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--crownbet-navy);
  background: #eef0f6;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.crownbet-cookie-modal__list {
  display: grid;
  gap: 10px;
  padding: 18px 22px;
}

.crownbet-cookie-modal__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 15px;
  border: 1px solid var(--crownbet-line);
  border-radius: 14px;
  background: #fbfbfc;
  cursor: pointer;
}

.crownbet-cookie-modal__item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--crownbet-navy);
  font-size: 14px;
}

.crownbet-cookie-modal__item small {
  display: block;
  color: var(--crownbet-muted);
  font-size: 12px;
  line-height: 1.4;
}

.crownbet-cookie-modal__input {
  appearance: none;
  flex: 0 0 auto;
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: #d8dbe5;
  position: relative;
  cursor: pointer;
  transition: background 0.18s ease;
}

.crownbet-cookie-modal__input::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(7, 13, 38, 0.2);
  transition: transform 0.18s ease;
}

.crownbet-cookie-modal__input:checked {
  background: var(--crownbet-magenta);
}

.crownbet-cookie-modal__input:checked::after {
  transform: translateX(20px);
}

.crownbet-cookie-modal__input:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.crownbet-cookie-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 22px 22px;
  border-top: 1px solid var(--crownbet-line);
}

.crownbet-cookie-modal__button {
  min-height: 42px;
  border: 0;
  border-radius: 22px;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
}

.crownbet-cookie-modal__button--primary {
  color: #ffffff;
  background: var(--crownbet-magenta);
}

.crownbet-cookie-modal__button--secondary {
  color: var(--crownbet-navy);
  background: #eef0f6;
}

@media (max-width: 1024px) {
  .crownbet-cookie {
    left: 16px;
    right: 16px;
  }

  .crownbet-cookie__card {
    align-items: stretch;
    flex-direction: column;
  }

  .crownbet-cookie__actions {
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  body {
    background: #efefef;
  }

  .crownbet-age-gate__panel,
  .crownbet-cookie-modal__panel {
    border-radius: 16px;
  }

  .crownbet-cookie {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .crownbet-cookie__actions,
  .crownbet-cookie-modal__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .crownbet-cookie__button,
  .crownbet-cookie-modal__button {
    width: 100%;
  }
}