:root {
  --od-bg: #202726;
  --od-bg-deep: #161d1c;
  --od-panel: #2d3433;
  --od-panel-2: #343c3b;
  --od-panel-dark: #1c2322;
  --od-border: rgba(255,255,255,0.09);
  --od-border-strong: rgba(255,255,255,0.16);
  --od-text: #f4fbf8;
  --od-muted: #a9b7b2;
  --od-muted-2: #72817c;
  --od-green: #23ec89;
  --od-green-soft: rgba(35,236,137,0.16);
  --od-green-dark: #10985a;
  --od-gold: #ffd76b;
  --od-danger: #ff5d67;
  --od-shadow: 0 18px 50px rgba(0,0,0,0.34);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 0;
}

body {
  margin: 0;
  background: var(--od-bg);
}

/* =========================
   HEADER
========================= */
.od-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 980;
  width: 100%;
  max-width: 100vw;
  color: var(--od-text);
  background:
    radial-gradient(circle at 12% 0%, rgba(35,236,137,0.13), transparent 35%),
    linear-gradient(180deg, rgba(50,58,57,0.99), rgba(37,45,44,0.98));
  border-bottom: 1px solid rgba(255,255,255,0.055);
  box-shadow: 0 12px 32px rgba(0,0,0,0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.od-header__top {
  width: 100%;
  height: 62px;
  padding: 10px 14px 7px;
  display: flex;
  align-items: center;
  gap: 9px;
  overflow: hidden;
}

.od-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  flex: 0 0 auto;
}

.od-brand__logo {
  width: 136px;
  max-width: 22vw;
  height: 38px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(35,236,137,0.11));
}

.od-brand__icon {
  display: none;
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(35,236,137,0.15));
}

.od-user-actions {
  min-width: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  flex: 1 1 auto;
}

.od-balance-pill {
  min-width: 0;
  max-width: none;
  height: 38px;
  padding: 4px 7px 4px 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
    #1d2524;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 10px 22px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.055);
  transition:
    transform .22s ease,
    border-color .22s ease,
    background .22s ease;
  animation: odSoftAppear .5s ease both;
}

.od-balance-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(35,236,137,0.30);
  background:
    linear-gradient(135deg, rgba(35,236,137,0.09), rgba(255,255,255,0.025)),
    #1d2524;
}

.od-balance-pill__coin {
  width: 29px;
  height: 29px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 29px;
  color: #171104;
  font-size: 9.8px;
  font-weight: 1000;
  letter-spacing: -0.04em;
  background:
    radial-gradient(circle at 30% 24%, #fff2b2 0%, #ffd76b 34%, #e3a51d 68%, #805000 100%);
  border: 1px solid rgba(255,226,128,0.62);
  box-shadow:
    0 7px 15px rgba(255,195,64,0.20),
    inset 0 1px 0 rgba(255,255,255,0.45);
}

.od-balance-pill__text {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #ffffff;
  font-weight: 1000;
  font-size: 13px;
  white-space: nowrap;
  letter-spacing: -0.03em;
  line-height: 1;
}

.od-balance-pill__text strong {
  font-weight: 1000;
}

.od-balance-pill__chev {
  width: 16px;
  height: 16px;
  color: #a9b8b3;
  flex: 0 0 auto;
}

.od-square-btn,
.od-avatar-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  text-decoration: none;
  color: #c3cfcb;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.065), rgba(255,255,255,0.022)),
    var(--od-panel);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 9px 20px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  transition:
    transform .22s ease,
    color .22s ease,
    border-color .22s ease,
    background .22s ease;
  animation: odSoftAppear .54s ease both;
}

.od-square-btn:nth-child(2) { animation-delay: .03s; }
.od-square-btn:nth-child(3) { animation-delay: .06s; }
.od-square-btn:nth-child(4) { animation-delay: .09s; }
.od-avatar-btn { animation-delay: .12s; }

.od-square-btn:hover,
.od-avatar-btn:hover {
  transform: translateY(-1px);
  color: #ffffff;
  border-color: rgba(35,236,137,0.28);
}

.od-square-btn:active,
.od-avatar-btn:active,
.od-balance-pill:active,
.od-quick-link:active {
  transform: scale(.95);
}

.od-square-btn svg {
  width: 20px;
  height: 20px;
}

.od-square-btn--deposit {
  color: #07140f;
  background: linear-gradient(135deg, #33f296, #17d276);
  border-color: rgba(35,236,137,0.62);
  box-shadow:
    0 11px 24px rgba(35,236,137,0.22),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

.od-square-btn--deposit svg {
  animation: odDepositPulse 2.4s ease-in-out infinite;
}

.od-square-btn--gift svg {
  animation: odGiftSwing 3.6s ease-in-out infinite;
  transform-origin: 50% 18%;
}

.od-notify-btn svg {
  animation: odBellFloat 4s ease-in-out infinite;
  transform-origin: 50% 14%;
}

.od-notify-btn[data-has-unread="0"] svg {
  animation: none;
}

.od-dot {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--od-green);
  box-shadow:
    0 0 0 3px rgba(35,236,137,0.10),
    0 0 12px rgba(35,236,137,0.85);
  opacity: 1;
  transform: scale(1);
  transition:
    opacity .18s ease,
    transform .18s ease;
}

.od-dot.is-hidden {
  opacity: 0;
  transform: scale(0);
}

.od-avatar-btn {
  overflow: hidden;
  color: #07140f;
  background:
    radial-gradient(circle at 30% 20%, #fff0a3, transparent 28%),
    linear-gradient(135deg, #23ec89, #0d8f54);
  border-color: rgba(35,236,137,0.35);
}

.od-avatar-btn span {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 1000;
}

.od-header__quick {
  width: 100%;
  height: 46px;
  padding: 0 14px 9px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  overflow: hidden;
}

.od-quick-link {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bcc8c4;
  text-decoration: none;
  position: relative;
  transition:
    transform .22s ease,
    color .22s ease,
    filter .22s ease;
}

.od-quick-link svg {
  width: 27px;
  height: 27px;
}

.od-quick-link:hover,
.od-quick-link.is-active {
  color: var(--od-green);
  transform: translateY(-1px);
}

.od-quick-link.is-active::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: -4px;
  height: 3px;
  border-radius: 999px;
  background: var(--od-green);
  box-shadow: 0 0 14px rgba(35,236,137,0.7);
}

.od-quick-link--withdraw:hover svg,
.od-quick-link--withdraw.is-active svg {
  animation: odWithdrawDrop .9s ease both;
}

.od-live-badge {
  min-width: 39px;
  height: 22px;
  padding: 0 6px;
  border-radius: 7px;
  border: 2.4px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-size: 9px;
  font-weight: 1000;
  line-height: 1;
  letter-spacing: .04em;
  animation: odLivePulse 1.35s ease-in-out infinite;
}

.od-quick-link--live {
  filter: drop-shadow(0 0 0 rgba(35,236,137,0));
}

.od-quick-link--live:hover,
.od-quick-link--live.is-active {
  filter: drop-shadow(0 0 12px rgba(35,236,137,0.45));
}

.od-quick-divider {
  width: 1px;
  height: 29px;
  flex: 0 0 1px;
  background: rgba(255,255,255,0.32);
  border-radius: 999px;
}

/* =========================
   GUEST HEADER
========================= */
.od-guest-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.od-auth-btn {
  height: 38px;
  padding: 0 17px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 1000;
  transition:
    transform .22s ease,
    border-color .22s ease,
    background .22s ease;
}

.od-auth-btn--login {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.od-auth-btn--join {
  color: #07140f;
  background: linear-gradient(135deg, #31ef91, #19d978);
  border: 2px solid rgba(35,236,137,0.58);
  box-shadow: 0 12px 26px rgba(35,236,137,0.18);
}

.od-auth-btn:hover {
  transform: translateY(-1px);
}

/* =========================
   WITHDRAWAL TICKER
========================= */
.od-withdrawal-toast {
  position: fixed;
  left: 50%;
  top: 113px;
  z-index: 979;
  width: max-content;
  max-width: calc(100vw - 28px);
  min-height: 28px;
  padding: 5px 10px 5px 6px;
  display: none;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(8,41,31,.74), rgba(11,61,46,.54));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 12px 28px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -20px) scale(.96);
}

.od-withdrawal-toast.show {
  display: flex;
  animation: odWithdrawalToast 2.2s ease-in-out both;
}

.od-withdrawal-toast__icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  flex: 0 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,215,107,.16);
  border: 1px solid rgba(255,215,107,.28);
}

.od-withdrawal-toast__icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--od-gold);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-withdrawal-toast__text {
  min-width: 0;
  max-width: 280px;
  color: rgba(255,255,255,.90);
  font-size: 9.5px;
  line-height: 1;
  font-weight: 1000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.od-withdrawal-toast__text b {
  color: var(--od-gold);
  font-weight: 1000;
}

.od-page-offset {
  height: 108px;
}

.od-header--guest + .od-page-offset {
  height: 62px;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes odSoftAppear {
  0% {
    opacity: 0;
    transform: translateY(-5px) scale(.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes odDepositPulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes odGiftSwing {
  0%, 100% {
    transform: rotate(0deg);
  }

  8% {
    transform: rotate(-7deg);
  }

  16% {
    transform: rotate(7deg);
  }

  24% {
    transform: rotate(0deg);
  }
}

@keyframes odBellFloat {
  0%, 100% {
    transform: rotate(0deg);
  }

  6% {
    transform: rotate(-9deg);
  }

  12% {
    transform: rotate(8deg);
  }

  18% {
    transform: rotate(-5deg);
  }

  24% {
    transform: rotate(0deg);
  }
}

@keyframes odLivePulse {
  0%, 100% {
    color: #bfcac6;
    box-shadow: 0 0 0 rgba(35,236,137,0);
    transform: scale(1);
  }

  50% {
    color: var(--od-green);
    box-shadow: 0 0 18px rgba(35,236,137,0.36);
    transform: scale(1.05);
  }
}

@keyframes odWithdrawDrop {
  0% {
    transform: translateY(0);
  }

  42% {
    transform: translateY(3px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes odWithdrawalToast {
  0% {
    opacity: 0;
    transform: translate(-50%, -22px) scale(.96);
  }

  18% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }

  74% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 24px) scale(.98);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (min-width: 701px) {
  .od-header {
    left: 0;
    right: 0;
  }

  .od-header__top,
  .od-header__quick {
    max-width: 1180px;
    margin: 0 auto;
  }

  .od-brand__logo {
    display: block;
  }

  .od-brand__icon {
    display: none;
  }
}

@media (max-width: 700px) {
  .od-header__top {
    height: 56px;
    padding: 9px 8px 6px;
    gap: 6px;
  }

  .od-brand__logo {
    display: none;
  }

  .od-brand__icon {
    display: block;
    width: 36px;
    height: 36px;
  }

  .od-user-actions {
    gap: 5px;
  }

  .od-balance-pill {
    height: 35px;
    padding: 3px 5px 3px 3px;
    gap: 5px;
  }

  .od-balance-pill__coin {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
    font-size: 9px;
  }

  .od-balance-pill__text {
    font-size: 12px;
    gap: 3px;
  }

  .od-balance-pill__chev {
    width: 14px;
    height: 14px;
  }

  .od-square-btn,
  .od-avatar-btn {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
    border-radius: 11px;
  }

  .od-square-btn svg {
    width: 19px;
    height: 19px;
  }

  .od-avatar-btn span {
    font-size: 14px;
  }

  .od-header__quick {
    height: 43px;
    padding: 0 12px 8px;
    gap: 21px;
  }

  .od-quick-link {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .od-quick-link svg {
    width: 26px;
    height: 26px;
  }

  .od-live-badge {
    min-width: 37px;
    height: 21px;
    font-size: 8.5px;
  }

  .od-page-offset {
    height: 99px;
  }

  .od-withdrawal-toast {
    top: 101px;
  }

  .od-header--guest + .od-page-offset {
    height: 56px;
  }

  .od-auth-btn {
    height: 36px;
    padding: 0 15px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .od-header__top {
    padding-left: 7px;
    padding-right: 7px;
  }

  .od-brand__icon {
    width: 34px;
    height: 34px;
  }

  .od-user-actions {
    gap: 4px;
  }

  .od-balance-pill {
    height: 34px;
    border-radius: 12px;
  }

  .od-balance-pill__coin {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
    font-size: 8.5px;
  }

  .od-balance-pill__text {
    font-size: 11.5px;
    letter-spacing: -0.04em;
  }

  .od-balance-pill__chev {
    width: 13px;
    height: 13px;
  }

  .od-square-btn,
  .od-avatar-btn {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 11px;
  }

  .od-square-btn svg {
    width: 18px;
    height: 18px;
  }

  .od-dot {
    top: 6px;
    right: 7px;
    width: 6px;
    height: 6px;
  }

  .od-header__quick {
    gap: 20px;
    padding-left: 11px;
    padding-right: 11px;
  }

  .od-quick-link {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }
}

@media (max-width: 380px) {
  .od-header__top {
    padding-left: 6px;
    padding-right: 6px;
    gap: 5px;
  }

  .od-brand__icon {
    width: 32px;
    height: 32px;
  }

  .od-user-actions {
    gap: 3.5px;
  }

  .od-balance-pill {
    height: 33px;
    gap: 4px;
    padding-right: 4px;
  }

  .od-balance-pill__coin {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
    font-size: 8px;
  }

  .od-balance-pill__text {
    font-size: 10.6px;
  }

  .od-balance-pill__chev {
    display: none;
  }

  .od-square-btn,
  .od-avatar-btn {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    border-radius: 10px;
  }

  .od-square-btn svg {
    width: 17px;
    height: 17px;
  }

  .od-avatar-btn span {
    font-size: 13px;
  }

  .od-header__quick {
    gap: 17px;
  }

  .od-withdrawal-toast__text {
    max-width: 225px;
    font-size: 8.8px;
  }
}

@media (max-width: 340px) {
  .od-header__top {
    padding-left: 5px;
    padding-right: 5px;
  }

  .od-brand__icon {
    width: 30px;
    height: 30px;
  }

  .od-user-actions {
    gap: 3px;
  }

  .od-balance-pill__text {
    font-size: 10px;
  }

  .od-square-btn,
  .od-avatar-btn {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .od-square-btn svg {
    width: 16px;
    height: 16px;
  }

  .od-header__quick {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .od-withdrawal-toast.show,
  .od-square-btn--deposit svg,
  .od-square-btn--gift svg,
  .od-notify-btn svg,
  .od-live-badge,
  .od-quick-link--withdraw:hover svg,
  .od-quick-link--withdraw.is-active svg {
    animation: none;
  }

  .od-auth-btn,
  .od-square-btn,
  .od-avatar-btn,
  .od-balance-pill,
  .od-quick-link,
  .od-dot {
    transition: none;
  }
}
/* =========================================================
   OddeminBet Header Override
   Paste this at the bottom of: /assets/css/layout.css
   Purpose:
   - Remove currency code text from balance
   - Center symbol/amount inside wallet pill
   - Support uploaded/chosen profile avatars
   - Keep header compact on mobile
========================================================= */

.od-balance-pill {
  justify-content: center !important;
  min-width: 112px !important;
  max-width: none !important;
}

.od-balance-pill__text {
  max-width: none !important;
  overflow: visible !important;
  text-overflow: clip !important;
  justify-content: center !important;
  text-align: center !important;
}

.od-balance-pill__text strong {
  display: none !important;
}

.od-balance-pill__amount {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  font-weight: 1000 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.od-avatar-btn {
  padding: 0 !important;
  overflow: hidden !important;
}

.od-avatar-img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: inherit !important;
}

.od-brand {
  cursor: pointer !important;
}

@media (min-width: 701px) {
  .od-brand__logo {
    display: block !important;
  }

  .od-brand__icon {
    display: none !important;
  }
}

@media (max-width: 700px) {
  .od-brand__logo {
    display: none !important;
  }

  .od-brand__icon {
    display: block !important;
  }

  .od-balance-pill {
    flex: 1 1 auto !important;
    min-width: 104px !important;
    max-width: 150px !important;
  }

  .od-balance-pill__text {
    font-size: 12px !important;
  }
}

@media (max-width: 380px) {
  .od-balance-pill {
    min-width: 96px !important;
    max-width: 132px !important;
  }

  .od-balance-pill__text {
    font-size: 10.8px !important;
  }
}

@media (max-width: 340px) {
  .od-balance-pill {
    min-width: 88px !important;
    max-width: 118px !important;
  }

  .od-balance-pill__text {
    font-size: 10px !important;
  }
}
/* =========================================================
   OddeminBet Header Override
   Paste this at the bottom of: /assets/css/layout.css
   Purpose:
   - Remove currency code text from balance
   - Center symbol/amount inside wallet pill
   - Support uploaded/chosen profile avatars
   - Keep header compact on mobile
========================================================= */

.od-balance-pill {
  justify-content: center !important;
  min-width: 112px !important;
  max-width: none !important;
}

.od-balance-pill__text {
  max-width: none !important;
  overflow: visible !important;
  text-overflow: clip !important;
  justify-content: center !important;
  text-align: center !important;
}

.od-balance-pill__text strong {
  display: none !important;
}

.od-balance-pill__amount {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  font-weight: 1000 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.od-avatar-btn {
  padding: 0 !important;
  overflow: hidden !important;
}

.od-avatar-img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: inherit !important;
}

.od-brand {
  cursor: pointer !important;
}

@media (min-width: 701px) {
  .od-brand__logo {
    display: block !important;
  }

  .od-brand__icon {
    display: none !important;
  }
}

@media (max-width: 700px) {
  .od-brand__logo {
    display: none !important;
  }

  .od-brand__icon {
    display: block !important;
  }

  .od-balance-pill {
    flex: 1 1 auto !important;
    min-width: 104px !important;
    max-width: 150px !important;
  }

  .od-balance-pill__text {
    font-size: 12px !important;
  }
}

@media (max-width: 380px) {
  .od-balance-pill {
    min-width: 96px !important;
    max-width: 132px !important;
  }

  .od-balance-pill__text {
    font-size: 10.8px !important;
  }
}

@media (max-width: 340px) {
  .od-balance-pill {
    min-width: 88px !important;
    max-width: 118px !important;
  }

  .od-balance-pill__text {
    font-size: 10px !important;
  }
}
/* Wallet combo: symbol + balance + plus in one border */
.od-wallet-combo {
  height: 38px !important;
  min-width: 166px !important;
  max-width: 178px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0 !important;
  padding: 3px !important;
  border-radius: 14px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
    #1d2524 !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow:
    0 10px 22px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.055) !important;
  overflow: hidden !important;
  flex: 0 0 auto !important;
}

.od-wallet-combo__balance {
  min-width: 0 !important;
  flex: 1 1 auto !important;
  height: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 0 5px 0 0 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.od-wallet-combo__coin {
  width: 29px !important;
  height: 29px !important;
  flex: 0 0 29px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #171104 !important;
  font-size: 9.5px !important;
  font-weight: 1000 !important;
  letter-spacing: -0.05em !important;
  background:
    radial-gradient(circle at 30% 24%, #fff2b2 0%, #ffd76b 34%, #e3a51d 68%, #805000 100%) !important;
  border: 1px solid rgba(255,226,128,0.62) !important;
  box-shadow:
    0 7px 15px rgba(255,195,64,0.20),
    inset 0 1px 0 rgba(255,255,255,0.45) !important;
}

.od-wallet-combo__amount {
  min-width: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 1000 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  letter-spacing: -0.03em !important;
}

.od-wallet-combo__chev {
  width: 15px !important;
  height: 15px !important;
  flex: 0 0 15px !important;
  color: #9eaaa6 !important;
}

.od-wallet-combo__plus {
  width: 35px !important;
  height: 32px !important;
  flex: 0 0 35px !important;
  border-radius: 11px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #07140f !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #33f296, #17d276) !important;
  border: 1px solid rgba(35,236,137,0.62) !important;
  box-shadow:
    0 8px 18px rgba(35,236,137,0.22),
    inset 0 1px 0 rgba(255,255,255,0.28) !important;
}

.od-wallet-combo__plus svg {
  width: 20px !important;
  height: 20px !important;
}

/* hide old balance/deposit style if browser cache still affects */
.od-balance-pill,
.od-square-btn--deposit {
  display: none !important;
}

@media (max-width: 420px) {
  .od-wallet-combo {
    height: 35px !important;
    min-width: 150px !important;
    max-width: 158px !important;
    border-radius: 13px !important;
  }

  .od-wallet-combo__coin {
    width: 26px !important;
    height: 26px !important;
    flex-basis: 26px !important;
    font-size: 8.5px !important;
  }

  .od-wallet-combo__amount {
    font-size: 12px !important;
  }

  .od-wallet-combo__plus {
    width: 32px !important;
    height: 29px !important;
    flex-basis: 32px !important;
  }

  .od-wallet-combo__plus svg {
    width: 18px !important;
    height: 18px !important;
  }
}

@media (max-width: 360px) {
  .od-wallet-combo {
    min-width: 138px !important;
    max-width: 146px !important;
  }

  .od-wallet-combo__balance {
    gap: 4px !important;
  }

  .od-wallet-combo__amount {
    font-size: 10.8px !important;
  }

  .od-wallet-combo__chev {
    display: none !important;
  }
}
/* =========================================================
   HEADER PERFECT SPACING FIX
   Equal spacing from logo/icon to wallet/gift/bell/avatar
   Wallet + plus in one border
========================================================= */

:root {
  --od-header-gap: 7px;
  --od-header-side-pad: 8px;
  --od-header-icon: 35px;
  --od-wallet-width: 158px;
}

/* whole top row */
.od-header__top {
  width: 100% !important;
  height: 56px !important;
  padding: 9px var(--od-header-side-pad) 6px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: var(--od-header-gap) !important;
  overflow: hidden !important;
}

/* logo/icon is first item */
.od-brand {
  flex: 0 0 var(--od-header-icon) !important;
  width: var(--od-header-icon) !important;
  height: var(--od-header-icon) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
}

.od-brand__icon {
  width: var(--od-header-icon) !important;
  height: var(--od-header-icon) !important;
  display: block !important;
  object-fit: contain !important;
}

.od-brand__logo {
  display: none !important;
}

/* all right-side header items */
.od-user-actions {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: var(--od-header-gap) !important;
  overflow: hidden !important;
}

/* wallet and plus combined in one border */
.od-wallet-combo {
  height: var(--od-header-icon) !important;
  width: var(--od-wallet-width) !important;
  min-width: var(--od-wallet-width) !important;
  max-width: var(--od-wallet-width) !important;
  flex: 0 0 var(--od-wallet-width) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0 !important;
  padding: 3px !important;
  border-radius: 13px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
    #1d2524 !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow:
    0 10px 22px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.055) !important;
  overflow: hidden !important;
}

/* balance side */
.od-wallet-combo__balance {
  height: 100% !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  padding: 0 4px 0 0 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  overflow: hidden !important;
}

/* currency symbol circle */
.od-wallet-combo__coin {
  width: 27px !important;
  height: 27px !important;
  flex: 0 0 27px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #171104 !important;
  font-size: 8.8px !important;
  font-weight: 1000 !important;
  letter-spacing: -0.06em !important;
  background:
    radial-gradient(circle at 30% 24%, #fff2b2 0%, #ffd76b 34%, #e3a51d 68%, #805000 100%) !important;
  border: 1px solid rgba(255,226,128,0.62) !important;
  box-shadow:
    0 7px 15px rgba(255,195,64,0.20),
    inset 0 1px 0 rgba(255,255,255,0.45) !important;
}

/* amount only, no GHS text */
.od-wallet-combo__amount {
  min-width: 0 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 1000 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  letter-spacing: -0.03em !important;
  overflow: hidden !important;
  text-overflow: clip !important;
}

.od-wallet-combo__chev {
  width: 13px !important;
  height: 13px !important;
  flex: 0 0 13px !important;
  color: #9eaaa6 !important;
}

/* plus side inside same border */
.od-wallet-combo__plus {
  width: 31px !important;
  height: 29px !important;
  flex: 0 0 31px !important;
  border-radius: 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #07140f !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #33f296, #17d276) !important;
  border: 1px solid rgba(35,236,137,0.62) !important;
  box-shadow:
    0 8px 18px rgba(35,236,137,0.22),
    inset 0 1px 0 rgba(255,255,255,0.28) !important;
}

.od-wallet-combo__plus svg {
  width: 18px !important;
  height: 18px !important;
}

/* gift, notification, avatar same size as logo */
.od-square-btn,
.od-avatar-btn {
  width: var(--od-header-icon) !important;
  height: var(--od-header-icon) !important;
  flex: 0 0 var(--od-header-icon) !important;
  border-radius: 11px !important;
  margin: 0 !important;
}

.od-square-btn svg {
  width: 18px !important;
  height: 18px !important;
}

.od-avatar-img,
.od-avatar-btn span {
  width: 100% !important;
  height: 100% !important;
}

/* hide old separate balance/deposit if still in CSS/cache */
.od-balance-pill,
.od-square-btn--deposit {
  display: none !important;
}

/* desktop: show full logo but keep equal spacing */
@media (min-width: 701px) {
  :root {
    --od-header-gap: 10px;
    --od-header-side-pad: 16px;
    --od-header-icon: 38px;
    --od-wallet-width: 178px;
  }

  .od-brand {
    flex-basis: 132px !important;
    width: 132px !important;
  }

  .od-brand__logo {
    width: 132px !important;
    height: 38px !important;
    display: block !important;
    object-fit: contain !important;
  }

  .od-brand__icon {
    display: none !important;
  }

  .od-user-actions {
    justify-content: flex-end !important;
  }
}

/* normal phones */
@media (max-width: 420px) {
  :root {
    --od-header-gap: 5px;
    --od-header-side-pad: 7px;
    --od-header-icon: 34px;
    --od-wallet-width: 150px;
  }

  .od-wallet-combo__coin {
    width: 26px !important;
    height: 26px !important;
    flex-basis: 26px !important;
    font-size: 8.4px !important;
  }

  .od-wallet-combo__amount {
    font-size: 11.5px !important;
  }

  .od-wallet-combo__plus {
    width: 30px !important;
    height: 28px !important;
    flex-basis: 30px !important;
  }
}

/* small phones */
@media (max-width: 380px) {
  :root {
    --od-header-gap: 4px;
    --od-header-side-pad: 6px;
    --od-header-icon: 32px;
    --od-wallet-width: 138px;
  }

  .od-wallet-combo__balance {
    gap: 4px !important;
  }

  .od-wallet-combo__coin {
    width: 24px !important;
    height: 24px !important;
    flex-basis: 24px !important;
    font-size: 7.8px !important;
  }

  .od-wallet-combo__amount {
    font-size: 10.5px !important;
  }

  .od-wallet-combo__chev {
    display: none !important;
  }

  .od-wallet-combo__plus {
    width: 29px !important;
    height: 27px !important;
    flex-basis: 29px !important;
  }
}

/* very tiny phones */
@media (max-width: 340px) {
  :root {
    --od-header-gap: 3px;
    --od-header-side-pad: 5px;
    --od-header-icon: 30px;
    --od-wallet-width: 128px;
  }

  .od-wallet-combo__amount {
    font-size: 9.8px !important;
  }

  .od-wallet-combo__coin {
    width: 23px !important;
    height: 23px !important;
    flex-basis: 23px !important;
  }

  .od-wallet-combo__plus {
    width: 27px !important;
    height: 25px !important;
    flex-basis: 27px !important;
  }
}
/* =========================================================
   WALLET CLONE FIX
   Same border/spacing style as reference image
========================================================= */

.od-wallet-combo {
  height: 38px !important;
  width: 198px !important;
  min-width: 198px !important;
  max-width: 198px !important;
  flex: 0 0 198px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  padding: 4px !important;
  gap: 0 !important;

  border-radius: 15px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(0,0,0,0.02)),
    #202827 !important;

  border: 2px solid rgba(255,255,255,0.075) !important;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.20),
    0 7px 18px rgba(0,0,0,0.18) !important;

  overflow: hidden !important;
}

.od-wallet-combo__balance {
  height: 100% !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;

  gap: 8px !important;
  padding: 0 7px 0 4px !important;

  color: #ffffff !important;
  text-decoration: none !important;
  overflow: hidden !important;
}

.od-wallet-combo__coin {
  width: 30px !important;
  height: 30px !important;
  flex: 0 0 30px !important;

  border-radius: 999px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: #171104 !important;
  font-size: 9px !important;
  font-weight: 1000 !important;
  letter-spacing: -0.06em !important;

  background:
    radial-gradient(circle at 30% 24%, #fff2b2 0%, #ffd76b 34%, #e3a51d 68%, #805000 100%) !important;

  border: 1px solid rgba(255,226,128,0.70) !important;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    0 6px 14px rgba(255,195,64,0.20) !important;
}

.od-wallet-combo__amount {
  color: #ffffff !important;
  font-size: 13.5px !important;
  font-weight: 1000 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  letter-spacing: -0.03em !important;
}

.od-wallet-combo__chev {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;
  color: #9aa8a4 !important;
  margin-left: auto !important;
}

.od-wallet-combo__plus {
  width: 38px !important;
  height: 32px !important;
  flex: 0 0 38px !important;

  border-radius: 11px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: #07140f !important;
  text-decoration: none !important;

  background: linear-gradient(135deg, #33f296, #17d276) !important;
  border: 1px solid rgba(35,236,137,0.65) !important;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.30),
    0 8px 18px rgba(35,236,137,0.23) !important;
}

.od-wallet-combo__plus svg {
  width: 20px !important;
  height: 20px !important;
}

/* equal spacing like the image */
.od-header__top {
  gap: 8px !important;
}

.od-user-actions {
  gap: 8px !important;
  justify-content: flex-start !important;
}

/* hide old separate balance/deposit only after wallet combo is in PHP */
.od-balance-pill,
.od-square-btn--deposit {
  display: none !important;
}

/* phone fit */
@media (max-width: 420px) {
  .od-wallet-combo {
    width: 188px !important;
    min-width: 188px !important;
    max-width: 188px !important;
    flex-basis: 188px !important;
    height: 36px !important;
    padding: 3px !important;
  }

  .od-wallet-combo__coin {
    width: 29px !important;
    height: 29px !important;
    flex-basis: 29px !important;
  }

  .od-wallet-combo__amount {
    font-size: 13px !important;
  }

  .od-wallet-combo__plus {
    width: 36px !important;
    height: 30px !important;
    flex-basis: 36px !important;
  }
}

/* smaller phone fit */
@media (max-width: 380px) {
  .od-wallet-combo {
    width: 176px !important;
    min-width: 176px !important;
    max-width: 176px !important;
    flex-basis: 176px !important;
  }

  .od-wallet-combo__balance {
    gap: 6px !important;
    padding-left: 3px !important;
    padding-right: 5px !important;
  }

  .od-wallet-combo__amount {
    font-size: 12px !important;
  }

  .od-wallet-combo__chev {
    width: 16px !important;
    height: 16px !important;
    flex-basis: 16px !important;
  }

  .od-wallet-combo__plus {
    width: 34px !important;
    flex-basis: 34px !important;
  }
}
/* =========================================================
   DESKTOP / MOBILE WALLET DIFFERENCE
   Mobile keeps the cloned one-border wallet.
   Desktop goes back to old-style separate balance + plus.
========================================================= */

/* DESKTOP: make wallet look like old style */
@media (min-width: 701px) {
  .od-wallet-combo {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 38px !important;
    flex: 0 0 auto !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;

    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .od-wallet-combo__balance {
    height: 38px !important;
    min-width: 148px !important;
    max-width: 188px !important;
    flex: 0 0 auto !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;

    padding: 4px 9px 4px 4px !important;
    border-radius: 13px !important;

    color: #ffffff !important;
    text-decoration: none !important;

    background:
      linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
      #1d2524 !important;

    border: 1px solid rgba(255,255,255,0.10) !important;

    box-shadow:
      0 10px 22px rgba(0,0,0,0.20),
      inset 0 1px 0 rgba(255,255,255,0.055) !important;
  }

  .od-wallet-combo__coin {
    width: 29px !important;
    height: 29px !important;
    flex: 0 0 29px !important;
  }

  .od-wallet-combo__amount {
    font-size: 13px !important;
    font-weight: 1000 !important;
    white-space: nowrap !important;
  }

  .od-wallet-combo__chev {
    width: 16px !important;
    height: 16px !important;
    flex: 0 0 16px !important;
    margin-left: 0 !important;
  }

  .od-wallet-combo__plus {
    width: 38px !important;
    height: 38px !important;
    flex: 0 0 38px !important;

    border-radius: 12px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: #07140f !important;
    text-decoration: none !important;

    background: linear-gradient(135deg, #33f296, #17d276) !important;
    border: 1px solid rgba(35,236,137,0.62) !important;

    box-shadow:
      0 11px 24px rgba(35,236,137,0.22),
      inset 0 1px 0 rgba(255,255,255,0.28) !important;
  }

  .od-wallet-combo__plus svg {
    width: 20px !important;
    height: 20px !important;
  }

  .od-user-actions {
    justify-content: flex-end !important;
    gap: 10px !important;
  }
}

/* MOBILE: keep wallet and + inside one border */
@media (max-width: 700px) {
  .od-wallet-combo {
    height: 36px !important;
    width: 188px !important;
    min-width: 188px !important;
    max-width: 188px !important;
    flex: 0 0 188px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    padding: 3px !important;
    gap: 0 !important;

    border-radius: 15px !important;

    background:
      linear-gradient(180deg, rgba(255,255,255,0.045), rgba(0,0,0,0.02)),
      #202827 !important;

    border: 2px solid rgba(255,255,255,0.075) !important;

    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.08),
      inset 0 -1px 0 rgba(0,0,0,0.20),
      0 7px 18px rgba(0,0,0,0.18) !important;

    overflow: hidden !important;
  }

  .od-wallet-combo__balance {
    height: 100% !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    gap: 7px !important;
    padding: 0 6px 0 4px !important;

    color: #ffffff !important;
    text-decoration: none !important;
    overflow: hidden !important;
  }

  .od-wallet-combo__coin {
    width: 29px !important;
    height: 29px !important;
    flex: 0 0 29px !important;
  }

  .od-wallet-combo__amount {
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 1000 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .od-wallet-combo__chev {
    width: 16px !important;
    height: 16px !important;
    flex: 0 0 16px !important;
    color: #9aa8a4 !important;
    margin-left: auto !important;
  }

  .od-wallet-combo__plus {
    width: 36px !important;
    height: 30px !important;
    flex: 0 0 36px !important;

    border-radius: 11px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: #07140f !important;
    text-decoration: none !important;

    background: linear-gradient(135deg, #33f296, #17d276) !important;
    border: 1px solid rgba(35,236,137,0.65) !important;

    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.30),
      0 8px 18px rgba(35,236,137,0.23) !important;
  }

  .od-wallet-combo__plus svg {
    width: 19px !important;
    height: 19px !important;
  }
}
/* =========================================================
   OddeminBet Home Promo Showcase
   Paste this at the bottom of: /assets/css/layout.css
   Used by: /layout/leagues.php
========================================================= */

.od-home-showcase {
  width: 100%;
  max-width: 100vw;
  padding: 10px 14px 4px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 0%, rgba(35,236,137,0.10), transparent 38%),
    #202726;
}

.od-promo-frame {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

.od-promo-track {
  width: 100%;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 18px;
}

.od-promo-track::-webkit-scrollbar {
  display: none;
}

.od-promo-card {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: center;
  border-radius: 22px;
  overflow: hidden;
  background: #09100f;
  border: 1px solid rgba(35,236,137,0.18);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.07);
  transform: scale(0.985);
  opacity: 0.68;
  transition:
    transform .35s ease,
    opacity .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

.od-promo-card.is-active {
  transform: scale(1);
  opacity: 1;
  border-color: rgba(35,236,137,0.42);
  box-shadow:
    0 22px 56px rgba(0,0,0,0.34),
    0 0 0 1px rgba(35,236,137,0.10),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.od-promo-link,
.od-promo-picture,
.od-promo-img {
  width: 100%;
  display: block;
}

.od-promo-link {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.od-promo-link:focus-visible {
  outline: 3px solid rgba(35,236,137,0.90);
  outline-offset: -5px;
}

.od-promo-picture {
  aspect-ratio: 7 / 3;
  background: #07100f;
  overflow: hidden;
}

.od-promo-img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
  transform: scale(1.002);
}

.od-promo-card.is-active .od-promo-img {
  animation: odPromoImageIn .55s ease both;
}

.od-promo-dots {
  position: absolute;
  left: 22px;
  bottom: 30px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(6,12,11,0.48);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.od-promo-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.38);
  cursor: pointer;
  transition:
    width .22s ease,
    background .22s ease,
    transform .22s ease;
}

.od-promo-dot.is-active {
  width: 34px;
  background: #23ec89;
  box-shadow: 0 0 16px rgba(35,236,137,0.55);
}

.od-promo-dot:active {
  transform: scale(.92);
}

@keyframes odPromoImageIn {
  from {
    transform: scale(1.024);
    filter: brightness(.94) saturate(.96);
  }

  to {
    transform: scale(1.002);
    filter: brightness(1) saturate(1);
  }
}

@media (min-width: 900px) {
  .od-home-showcase {
    padding-top: 18px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .od-promo-track {
    gap: 18px;
  }

  .od-promo-card {
    border-radius: 24px;
  }
}

@media (max-width: 700px) {
  .od-home-showcase {
    padding: 10px 14px 0;
  }

  .od-promo-track {
    gap: 13px;
    padding-bottom: 18px;
  }

  .od-promo-card {
    flex-basis: 100%;
    border-radius: 20px;
  }

  .od-promo-picture {
    aspect-ratio: 4 / 5;
  }

  .od-promo-img {
    object-position: center;
  }

  .od-promo-dots {
    left: 18px;
    bottom: 30px;
    gap: 6px;
    padding: 5px 7px;
  }

  .od-promo-dot {
    width: 8px;
    height: 8px;
  }

  .od-promo-dot.is-active {
    width: 31px;
  }
}

@media (max-width: 420px) {
  .od-home-showcase {
    padding-left: 10px;
    padding-right: 10px;
  }

  .od-promo-card {
    border-radius: 18px;
  }

  .od-promo-dots {
    left: 16px;
    bottom: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .od-promo-track {
    scroll-behavior: auto;
  }

  .od-promo-card,
  .od-promo-img,
  .od-promo-dot {
    transition: none;
    animation: none !important;
  }
}
/* =========================================================
   DESKTOP PROMO IMAGE FIX
   Desktop only:
   - no border
   - no background
   - no rounded card frame
   - show full image without cutting parts
========================================================= */

@media (min-width: 701px) {
  .zb-home-showcase,
  .od-home-showcase {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  .zb-hero-slider,
  .od-hero-slider {
    width: 100vw !important;
    max-width: 100vw !important;
    aspect-ratio: 2048 / 696 !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  .zb-slide,
  .od-slide {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
  }

  .zb-slide-inner,
  .od-slide-inner {
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  .zb-promo-link,
  .zb-promo-picture,
  .zb-promo-img,
  .od-promo-link,
  .od-promo-picture,
  .od-promo-img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .zb-promo-img,
  .od-promo-img {
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
  }
}

/* =========================================================
   OddeminBet Top Bets Match Cards CSS
   Paste this at the bottom of /assets/css/layout.css
========================================================= */

.od-top-matches,
  .od-top-matches * {
    box-sizing: border-box;
  }

  .od-top-matches {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 12px 0 16px;
    background:
      radial-gradient(circle at 10% 0%, rgba(35,236,137,.10), transparent 36%),
      linear-gradient(180deg, #202726 0%, #1b2221 100%);
    overflow: hidden;
  }

  .od-top-matches__head {
    width: 100%;
    padding: 0 18px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .od-top-matches__title {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 11px;
  }

  .od-top-matches__icon {
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ff9f1c;
    filter: drop-shadow(0 0 14px rgba(255,159,28,.22));
  }

  .od-top-matches__icon svg {
    width: 34px;
    height: 34px;
    display: block;
    fill: currentColor;
  }

  .od-top-matches__title span:not(.od-top-matches__icon) {
    display: block;
    color: #23ec89;
    font-size: 10px;
    font-weight: 1000;
    line-height: 1;
    letter-spacing: .13em;
  }

  .od-top-matches__title h2 {
    margin: 4px 0 0;
    color: #ffffff;
    font-size: clamp(24px, 4vw, 39px);
    line-height: .92;
    font-weight: 1000;
    letter-spacing: -0.06em;
  }

  .od-top-matches__view {
    height: 34px;
    flex: 0 0 auto;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #07140f;
    text-decoration: none;
    background: linear-gradient(135deg, #2df395, #12c86c);
    border: 1px solid rgba(35,236,137,.56);
    box-shadow:
      0 12px 25px rgba(35,236,137,.18),
      inset 0 1px 0 rgba(255,255,255,.32);
    font-size: 11px;
    font-weight: 1000;
    transition: transform .18s ease, filter .18s ease;
  }

  .od-top-matches__view:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
  }

  .od-top-matches__view svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .od-top-matches__scroll {
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(310px, 78vw);
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 18px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .od-top-matches__scroll::-webkit-scrollbar {
    display: none;
  }

  .od-match-card {
    position: relative;
    isolation: isolate;
    scroll-snap-align: start;
    min-height: 236px;
    padding: 14px;
    border-radius: 23px;
    color: #ffffff;
    background:
      radial-gradient(circle at 88% 6%, rgba(32,116,255,.36), transparent 43%),
      radial-gradient(circle at 16% 92%, rgba(35,236,137,.22), transparent 42%),
      linear-gradient(135deg, #284dff 0%, #5135cb 48%, #8a2bc4 100%);
    overflow: hidden;
    box-shadow:
      0 18px 40px rgba(0,0,0,.28),
      inset 0 1px 0 rgba(255,255,255,.17);
    opacity: 0;
    transform: translateY(10px) scale(.985);
    animation: odMatchCardIn .48s cubic-bezier(.2,.85,.2,1) forwards;
    animation-delay: var(--od-card-delay, 0ms);
  }

  .od-match-card:nth-child(2n) {
    background:
      radial-gradient(circle at 92% 4%, rgba(255,84,201,.34), transparent 44%),
      radial-gradient(circle at 10% 92%, rgba(35,236,137,.20), transparent 42%),
      linear-gradient(135deg, #1d91ff 0%, #3337d9 48%, #6c2bc4 100%);
  }

  .od-match-card:nth-child(3n) {
    background:
      radial-gradient(circle at 88% 7%, rgba(35,236,137,.30), transparent 43%),
      radial-gradient(circle at 15% 92%, rgba(64,132,255,.28), transparent 42%),
      linear-gradient(135deg, #314bff 0%, #202b82 50%, #128b6b 100%);
  }

  .od-match-card__glow {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
      radial-gradient(circle at 78% 44%, rgba(255,255,255,.24), transparent 28%),
      linear-gradient(100deg, rgba(255,255,255,.10), transparent 38%, rgba(0,0,0,.18));
  }

  .od-match-card__pattern {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .20;
    background-image:
      radial-gradient(circle, rgba(255,255,255,.55) 1px, transparent 1.2px),
      linear-gradient(120deg, transparent 0%, transparent 47%, rgba(255,255,255,.35) 48%, transparent 50%, transparent 100%);
    background-size: 13px 13px, 100% 100%;
    mask-image: linear-gradient(90deg, rgba(0,0,0,.8), transparent 72%);
  }

  .od-match-card__top {
    position: relative;
    z-index: 2;
    min-height: 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    color: rgba(255,255,255,.82);
  }

  .od-match-card__league {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .01em;
  }

  .od-match-card__league span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .od-match-card__league svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .od-match-card__time {
    flex: 0 0 auto;
    color: rgba(255,255,255,.92);
    font-size: 11px;
    font-weight: 1000;
    white-space: nowrap;
    letter-spacing: .02em;
  }

  .od-match-card.is-live .od-match-card__time {
    color: #ff5d67;
    text-shadow: 0 0 16px rgba(255,93,103,.32);
    animation: odLiveFlash 1.3s ease-in-out infinite;
  }

  .od-match-card__teams {
    position: relative;
    z-index: 2;
    min-height: 106px;
    padding: 15px 0 9px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    color: inherit;
    text-decoration: none;
  }

  .od-team {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }

  .od-team--away {
    align-items: flex-end;
    text-align: right;
  }

  .od-team strong {
    max-width: 100%;
    display: block;
    color: #ffffff;
    font-size: clamp(17px, 3.3vw, 29px);
    line-height: .98;
    font-weight: 1000;
    letter-spacing: -0.05em;
    text-shadow: 0 8px 22px rgba(0,0,0,.22);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .od-team-badge {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
      radial-gradient(circle at 30% 20%, rgba(255,255,255,.90), rgba(255,255,255,.65) 38%, rgba(255,255,255,.18) 100%);
    border: 1px solid rgba(255,255,255,.58);
    box-shadow:
      0 10px 24px rgba(0,0,0,.20),
      inset 0 1px 0 rgba(255,255,255,.62);
  }

  .od-team-badge--initials {
    color: #07140f;
    font-size: 13px;
    font-weight: 1000;
    letter-spacing: -0.05em;
  }

  .od-team-badge img {
    width: 78%;
    height: 78%;
    display: block;
    object-fit: contain;
  }

  .od-match-card__versus {
    align-self: center;
    justify-self: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.82);
    font-size: 11px;
    font-weight: 1000;
    background: rgba(255,255,255,.11);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
  }

  .od-match-card__market {
    position: relative;
    z-index: 2;
    margin: 0 auto 9px;
    width: max-content;
    max-width: 100%;
    color: rgba(255,255,255,.65);
    font-size: 12px;
    line-height: 1;
    font-weight: 1000;
    text-align: center;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .od-match-card__odds {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .od-match-odd {
    min-width: 0;
    min-height: 51px;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255,255,255,.18);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.16),
      0 9px 18px rgba(0,0,0,.10);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    cursor: pointer;
    overflow: hidden;
    transition:
      transform .17s ease,
      background .17s ease,
      border-color .17s ease,
      box-shadow .17s ease;
  }

  .od-match-odd span {
    min-width: 0;
    color: rgba(255,255,255,.88);
    font-size: 11px;
    line-height: 1.05;
    font-weight: 950;
    text-transform: lowercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .od-match-odd strong {
    flex: 0 0 auto;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    font-weight: 1000;
    font-variant-numeric: tabular-nums;
  }

  .od-match-odd:hover,
  .od-match-odd:focus-visible,
  .od-match-odd.is-selected,
  .od-match-odd.selected,
  .od-match-odd.active,
  .od-match-odd.in-slip,
  .od-match-odd[aria-pressed="true"] {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #2df395, #15d374);
    border-color: rgba(35,236,137,.62);
    box-shadow:
      0 12px 25px rgba(35,236,137,.22),
      inset 0 1px 0 rgba(255,255,255,.32);
    outline: none;
  }

  .od-match-odd:hover span,
  .od-match-odd:hover strong,
  .od-match-odd:focus-visible span,
  .od-match-odd:focus-visible strong,
  .od-match-odd.is-selected span,
  .od-match-odd.is-selected strong,
  .od-match-odd.selected span,
  .od-match-odd.selected strong,
  .od-match-odd.active span,
  .od-match-odd.active strong,
  .od-match-odd.in-slip span,
  .od-match-odd.in-slip strong,
  .od-match-odd[aria-pressed="true"] span,
  .od-match-odd[aria-pressed="true"] strong {
    color: #07140f !important;
  }

  .od-match-odd--ghost {
    opacity: .78;
  }

  @keyframes odMatchCardIn {
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes odLiveFlash {
    0%, 100% {
      opacity: 1;
    }

    50% {
      opacity: .62;
    }
  }

  @media (max-width: 700px) {
    .od-top-matches {
      padding: 11px 0 14px;
    }

    .od-top-matches__head {
      padding-inline: 16px;
    }

    .od-top-matches__scroll {
      grid-auto-columns: minmax(310px, 77vw);
      gap: 13px;
      padding-inline: 16px;
    }

    .od-match-card {
      min-height: 220px;
      padding: 13px;
      border-radius: 22px;
    }

    .od-match-card__teams {
      min-height: 96px;
    }

    .od-team-badge {
      width: 39px;
      height: 39px;
    }

    .od-match-odd {
      min-height: 47px;
      padding-inline: 8px;
    }
  }

  @media (max-width: 430px) {
    .od-top-matches__scroll {
      grid-auto-columns: 78vw;
      padding-inline: 17px;
    }

    .od-match-card {
      min-height: 206px;
    }

    .od-team strong {
      font-size: 17px;
    }

    .od-match-card__teams {
      min-height: 86px;
      gap: 7px;
    }

    .od-match-card__versus {
      width: 34px;
      height: 34px;
      font-size: 9px;
    }

    .od-team-badge {
      width: 36px;
      height: 36px;
    }

    .od-match-card__odds {
      gap: 6px;
    }

    .od-match-odd {
      min-height: 43px;
      border-radius: 12px;
      padding-inline: 7px;
    }

    .od-match-odd span {
      font-size: 10px;
    }

    .od-match-odd strong {
      font-size: 12.5px;
    }
  }

  @media (max-width: 370px) {
    .od-top-matches__scroll {
      grid-auto-columns: 84vw;
      padding-inline: 12px;
    }

    .od-top-matches__head {
      padding-inline: 12px;
    }

    .od-top-matches__view span {
      display: none;
    }

    .od-top-matches__view {
      width: 34px;
      padding: 0;
    }
  }

  @media (min-width: 980px) {
    .od-top-matches {
      padding-top: 18px;
      padding-bottom: 20px;
    }

    .od-top-matches__head,
    .od-top-matches__scroll {
      max-width: 1320px;
      margin-inline: auto;
    }

    .od-top-matches__scroll {
      grid-auto-columns: minmax(390px, 420px);
    }

    .od-match-card {
      min-height: 256px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .od-match-card,
    .od-match-odd,
    .od-top-matches__view {
      animation: none;
      transition: none;
    }

    .od-match-card {
      opacity: 1;
      transform: none;
    }
  }
/* =========================================================
   OddeminBet Bottom Navigation
   Add this to the bottom of /assets/css/layout.css
========================================================= */

body {
  padding-bottom: calc(104px + env(safe-area-inset-bottom)) !important;
}

.od-bottom-nav,
.od-bottom-nav * {
  box-sizing: border-box;
}

.od-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9900;
  height: calc(82px + env(safe-area-inset-bottom));
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 4px;
  background:
    radial-gradient(circle at 50% -20%, rgba(35,236,137,.10), transparent 36%),
    linear-gradient(180deg, rgba(48,57,56,.96), rgba(39,47,46,.98));
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 -18px 48px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.od-bottom-nav__item {
  position: relative;
  min-width: 0;
  height: 58px;
  padding: 5px 3px 3px;
  border-radius: 18px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #aebbb7;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    color .18s ease,
    transform .18s ease,
    background .18s ease;
}

.od-bottom-nav__item:hover,
.od-bottom-nav__item.is-active {
  color: #23ec89;
}

.od-bottom-nav__item:active {
  transform: scale(.96);
}

.od-bottom-nav__icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.od-bottom-nav__icon svg {
  width: 27px;
  height: 27px;
  display: block;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-bottom-nav__item.is-active .od-bottom-nav__icon {
  filter: drop-shadow(0 0 12px rgba(35,236,137,.42));
}

.od-bottom-nav__icon--live svg {
  animation: odBottomLivePulse 1.4s ease-in-out infinite;
}

.od-bottom-nav__label {
  width: 100%;
  max-width: 74px;
  display: block;
  color: currentColor;
  font-size: 11px;
  line-height: 1;
  font-weight: 1000;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.04em;
}

.od-bottom-nav__item.is-active .od-bottom-nav__label {
  text-shadow: 0 0 13px rgba(35,236,137,.30);
}

.od-bottom-nav__item--center {
  height: 74px;
  padding-top: 0;
  justify-content: flex-start;
  transform: translateY(-18px);
}

.od-bottom-nav__item--center:active {
  transform: translateY(-18px) scale(.96);
}

.od-bottom-nav__center-ring {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,.24), transparent 30%),
    linear-gradient(135deg, #32f296, #14d475);
  border: 1px solid rgba(35,236,137,.70);
  box-shadow:
    0 16px 36px rgba(35,236,137,.28),
    inset 0 1px 0 rgba(255,255,255,.35);
  overflow: hidden;
}

.od-bottom-nav__center-ring img {
  width: 45px;
  height: 45px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 7px 10px rgba(0,0,0,.18));
}

.od-bottom-nav__label--center {
  margin-top: 4px;
  color: #23ec89;
}

@keyframes odBottomLivePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(35,236,137,0));
  }

  50% {
    opacity: .78;
    transform: scale(1.06);
    filter: drop-shadow(0 0 12px rgba(35,236,137,.48));
  }
}

@media (max-width: 420px) {
  .od-bottom-nav {
    height: calc(78px + env(safe-area-inset-bottom));
    padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }

  .od-bottom-nav__item {
    height: 55px;
    gap: 4px;
  }

  .od-bottom-nav__icon {
    width: 28px;
    height: 28px;
  }

  .od-bottom-nav__icon svg {
    width: 25px;
    height: 25px;
  }

  .od-bottom-nav__label {
    font-size: 10.5px;
    max-width: 62px;
  }

  .od-bottom-nav__center-ring {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .od-bottom-nav__center-ring img {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 360px) {
  .od-bottom-nav {
    padding-left: 7px;
    padding-right: 7px;
  }

  .od-bottom-nav__label {
    font-size: 10px;
  }

  .od-bottom-nav__center-ring {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .od-bottom-nav__center-ring img {
    width: 39px;
    height: 39px;
  }
}

/* =========================================================
   OddeminBet Win Popup
   Add this to the bottom of /assets/css/layout.css
========================================================= */

.od-win-overlay {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
  opacity: 0;
  background: rgba(2,6,23,.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity .22s ease;
}

.od-win-overlay.show {
  display: block;
  opacity: 1;
}

.od-win-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 12001;
  width: min(420px, calc(100vw - 26px));
  padding: 18px 16px 16px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 4%, rgba(255,215,107,.20), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(35,236,137,.20), transparent 36%),
    linear-gradient(180deg, #123b31 0%, #071f18 100%);
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
  overflow: hidden;
  transform: translate(-50%, -50%) scale(.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.od-win-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.od-win-modal__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: .32;
  pointer-events: none;
}

.od-win-modal__glow--gold {
  width: 150px;
  height: 150px;
  top: -35px;
  right: -25px;
  background: #ffd76b;
}

.od-win-modal__glow--green {
  width: 120px;
  height: 120px;
  left: -30px;
  bottom: -25px;
  background: #23ec89;
}

.od-win-modal__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.od-win-modal__badge {
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .04em;
}

.od-win-modal__badge span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #23ec89;
  box-shadow: 0 0 0 0 rgba(35,236,137,.70);
  animation: odWinPulse 1.4s infinite;
}

.od-win-modal__close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255,255,255,.12);
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}

.od-win-modal__close:hover {
  background: rgba(255,255,255,.18);
  transform: scale(1.04);
}

.od-win-modal__close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-win-modal__trophy-wrap {
  position: relative;
  z-index: 2;
  width: 120px;
  height: 120px;
  margin: 14px auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.od-win-modal__ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,215,107,.32) 0%, rgba(255,215,107,.10) 55%, rgba(255,215,107,0) 72%);
  animation: odWinRing 2.4s ease-in-out infinite;
}

.od-win-modal__trophy {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f2937;
  background: linear-gradient(135deg, #ffd76b, #f59e0b);
  box-shadow: 0 14px 28px rgba(0,0,0,.24);
  animation: odWinFloat 2.8s ease-in-out infinite;
}

.od-win-modal__trophy svg {
  width: 46px;
  height: 46px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-win-modal__title {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 1000;
  letter-spacing: -.035em;
}

.od-win-modal__subtitle {
  position: relative;
  z-index: 2;
  margin: 6px 0 0;
  color: rgba(255,255,255,.82);
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
}

.od-win-modal__amount {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  color: #ffd76b;
  text-align: center;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 1000;
  letter-spacing: -.035em;
}

.od-win-modal__meta {
  position: relative;
  z-index: 2;
  margin-top: 7px;
  color: rgba(255,255,255,.78);
  text-align: center;
  font-size: 12px;
  font-weight: 850;
}

.od-win-modal__cards {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.od-win-modal__card {
  min-width: 0;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.od-win-modal__card span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 850;
}

.od-win-modal__card strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 1000;
  word-break: break-word;
}

.od-win-modal__card--full {
  grid-column: 1 / -1;
}

.od-win-modal__actions {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  display: flex;
  gap: 10px;
}

.od-win-modal__history,
.od-win-modal__ok {
  flex: 1 1 0;
  height: 48px;
  border: 0;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 1000;
  transition: transform .18s ease, filter .18s ease, background .18s ease;
}

.od-win-modal__history {
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
}

.od-win-modal__ok {
  color: #1f2937;
  background: linear-gradient(135deg, #ffd76b, #f59e0b);
}

.od-win-modal__history:hover,
.od-win-modal__ok:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

body.od-win-open {
  overflow: hidden !important;
}

@keyframes odWinPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(35,236,137,.70);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(35,236,137,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(35,236,137,0);
  }
}

@keyframes odWinFloat {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-5px) rotate(2deg);
  }
}

@keyframes odWinRing {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.08);
    opacity: .74;
  }
}

@media (max-width: 480px) {
  .od-win-modal {
    width: calc(100vw - 16px);
    padding: 14px 12px 12px;
    border-radius: 22px;
  }

  .od-win-modal__badge {
    min-height: 30px;
    padding: 5px 10px;
    font-size: 11px;
  }

  .od-win-modal__close {
    width: 32px;
    height: 32px;
  }

  .od-win-modal__trophy-wrap {
    width: 94px;
    height: 94px;
    margin: 10px auto 6px;
  }

  .od-win-modal__trophy {
    width: 68px;
    height: 68px;
  }

  .od-win-modal__trophy svg {
    width: 38px;
    height: 38px;
  }

  .od-win-modal__title {
    font-size: 22px;
  }

  .od-win-modal__subtitle {
    font-size: 12px;
  }

  .od-win-modal__amount {
    margin-top: 10px;
    font-size: 26px;
  }

  .od-win-modal__meta {
    margin-top: 5px;
    font-size: 11px;
  }

  .od-win-modal__cards {
    margin-top: 12px;
    gap: 8px;
  }

  .od-win-modal__card {
    padding: 9px;
    border-radius: 14px;
  }

  .od-win-modal__card span {
    font-size: 10px;
  }

  .od-win-modal__card strong {
    font-size: 12px;
    line-height: 1.25;
  }

  .od-win-modal__actions {
    margin-top: 12px;
    gap: 8px;
  }

  .od-win-modal__history,
  .od-win-modal__ok {
    height: 44px;
    border-radius: 13px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .od-bottom-nav__icon--live svg,
  .od-win-modal__badge span,
  .od-win-modal__ring,
  .od-win-modal__trophy {
    animation: none !important;
  }

  .od-bottom-nav__item,
  .od-win-modal,
  .od-win-overlay,
  .od-win-modal__history,
  .od-win-modal__ok {
    transition: none !important;
  }
}
/* =========================================================
   OddeminBet Menu Page
   Add this to the bottom of /assets/css/layout.css
========================================================= */

.od-menu-page,
.od-menu-page * {
  box-sizing: border-box;
}

html[data-od-theme="dark"] .od-menu-page,
.od-menu-page[data-od-theme="dark"] {
  --od-menu-bg: #202726;
  --od-menu-surface: #303837;
  --od-menu-surface-2: #37413f;
  --od-menu-text: #f6fbf9;
  --od-menu-muted: #adbbb6;
  --od-menu-icon: #c2cfcb;
  --od-menu-border: rgba(255,255,255,.06);
  --od-menu-shadow: 0 16px 38px rgba(0,0,0,.20);
}

html[data-od-theme="light"] .od-menu-page,
.od-menu-page[data-od-theme="light"] {
  --od-menu-bg: #f5f6f7;
  --od-menu-surface: #ffffff;
  --od-menu-surface-2: #f0f2f3;
  --od-menu-text: #101415;
  --od-menu-muted: #626b70;
  --od-menu-icon: #5d666c;
  --od-menu-border: rgba(15,23,42,.06);
  --od-menu-shadow: 0 14px 30px rgba(15,23,42,.07);
}

.od-menu-page {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  color: var(--od-menu-text);
  background:
    radial-gradient(circle at 16% 0%, rgba(35,236,137,.08), transparent 30%),
    var(--od-menu-bg);
  overflow-x: hidden;
}

.od-menu-main {
  width: 100vw;
  max-width: 100vw;
  min-height: calc(100vh - 100px);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 14px 16px calc(112px + env(safe-area-inset-bottom));
  background: var(--od-menu-bg);
}

.od-menu-hero {
  width: 100%;
  min-height: 68px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.od-menu-back {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 13px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--od-menu-icon);
  background: var(--od-menu-surface-2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.od-menu-back svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-menu-hero__brand {
  min-width: 0;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.od-menu-hero__brand img {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(35,236,137,.18));
}

.od-menu-hero__brand div {
  min-width: 0;
}

.od-menu-hero__brand span {
  display: block;
  color: #23ec89;
  font-size: 11px;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.od-menu-hero__brand strong {
  display: block;
  margin-top: 4px;
  color: var(--od-menu-text);
  font-size: 24px;
  line-height: .95;
  font-weight: 1000;
  letter-spacing: -.06em;
}

.od-menu-card {
  width: 100%;
  margin: 0 0 13px;
  padding: 8px 0;
  border-radius: 18px;
  background: var(--od-menu-surface);
  border: 1px solid var(--od-menu-border);
  box-shadow: var(--od-menu-shadow);
  overflow: hidden;
}

.od-menu-row {
  position: relative;
  width: 100%;
  min-height: 68px;
  padding: 0 22px 0 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--od-menu-text);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.od-menu-row:hover,
.od-menu-row.is-active {
  color: #23ec89;
  background: rgba(35,236,137,.06);
}

.od-menu-row:active {
  transform: scale(.99);
}

.od-menu-row__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.od-menu-row__icon svg {
  width: 31px;
  height: 31px;
  display: block;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-menu-row__label {
  min-width: 0;
  flex: 1 1 auto;
  color: inherit;
  font-size: clamp(20px, 4.6vw, 28px);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -.045em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.od-menu-row__badge {
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #07140f;
  background: #23ec89;
  box-shadow: 0 8px 18px rgba(35,236,137,.22);
  font-size: 12px;
  font-weight: 1000;
}

.od-menu-row__chev {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--od-menu-muted);
  background: var(--od-menu-surface-2);
}

.od-menu-row__chev svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-menu-theme-card {
  padding: 5px;
}

.od-menu-theme-switch {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  border-radius: 17px;
  background: var(--od-menu-surface-2);
  padding: 4px;
}

.od-theme-option {
  min-height: 58px;
  border: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--od-menu-muted);
  background: transparent;
  cursor: pointer;
  font-size: 19px;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -.04em;
  -webkit-tap-highlight-color: transparent;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.od-theme-option svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-theme-option.is-active {
  color: var(--od-menu-text);
  background: color-mix(in srgb, var(--od-menu-surface) 72%, #23ec89 12%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.od-theme-option:active {
  transform: scale(.98);
}

html[data-od-theme="light"] .od-menu-page {
  background: var(--od-menu-bg);
}

html[data-od-theme="light"] .od-header {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,247,248,.96)) !important;
  border-bottom: 1px solid rgba(15,23,42,.06) !important;
}

html[data-od-theme="light"] .od-bottom-nav {
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(244,246,247,.98)) !important;
  border-top: 1px solid rgba(15,23,42,.08) !important;
  box-shadow: 0 -18px 48px rgba(15,23,42,.08) !important;
}

html[data-od-theme="light"] .od-bottom-nav__item {
  color: #6b747a !important;
}

html[data-od-theme="light"] .od-bottom-nav__item.is-active,
html[data-od-theme="light"] .od-bottom-nav__item:hover {
  color: #13c873 !important;
}

@media (min-width: 768px) {
  .od-menu-main {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    border-left: 1px solid var(--od-menu-border);
    border-right: 1px solid var(--od-menu-border);
  }
}

@media (max-width: 430px) {
  .od-menu-main {
    padding-left: 15px;
    padding-right: 15px;
  }

  .od-menu-row {
    min-height: 64px;
    padding-left: 22px;
    padding-right: 20px;
    gap: 16px;
  }

  .od-menu-row__icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .od-menu-row__icon svg {
    width: 29px;
    height: 29px;
  }

  .od-menu-row__chev {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .od-theme-option {
    min-height: 54px;
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .od-menu-main {
    padding-left: 10px;
    padding-right: 10px;
  }

  .od-menu-row {
    min-height: 60px;
    padding-left: 18px;
    padding-right: 16px;
    gap: 13px;
  }

  .od-menu-row__label {
    font-size: 19px;
  }

  .od-menu-row__chev {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
  }
}
/* =========================================================
   OddeminBet Menu Popup Override
   Paste at bottom of /assets/css/layout.css
========================================================= */

/* hide old full-page menu header if cached/old code exists */
.od-menu-hero,
.od-menu-back,
.od-menu-hero__brand {
  display: none !important;
}

:root {
  --od-menu-top-space: 132px;
  --od-menu-bottom-space: 90px;
}

html[data-od-theme="dark"] body,
body[data-od-theme="dark"] {
  --od-menu-bg: #202726;
  --od-menu-surface: #303837;
  --od-menu-surface-2: #37413f;
  --od-menu-text: #f6fbf9;
  --od-menu-muted: #adbbb6;
  --od-menu-icon: #c2cfcb;
  --od-menu-border: rgba(255,255,255,.06);
  --od-menu-shadow: 0 14px 30px rgba(0,0,0,.18);
}

html[data-od-theme="light"] body,
body[data-od-theme="light"] {
  --od-menu-bg: #f5f6f7;
  --od-menu-surface: #ffffff;
  --od-menu-surface-2: #eef0f2;
  --od-menu-text: #101415;
  --od-menu-muted: #626b70;
  --od-menu-icon: #5d666c;
  --od-menu-border: rgba(15,23,42,.06);
  --od-menu-shadow: 0 14px 30px rgba(15,23,42,.07);
}

.od-menu-popup,
.od-menu-popup * {
  box-sizing: border-box;
}

.od-menu-popup {
  position: fixed;
  inset: 0;
  z-index: 9700;
  display: none;
  pointer-events: none;
}

.od-menu-popup.is-open {
  display: block;
  pointer-events: auto;
}

.od-menu-popup__shade {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.06);
  opacity: 0;
  transition: opacity .18s ease;
}

.od-menu-popup.is-open .od-menu-popup__shade {
  opacity: 1;
}

.od-menu-popup__panel {
  position: absolute;
  inset: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  background: var(--od-menu-bg);
  color: var(--od-menu-text);
  transform: translateY(12px);
  opacity: 0;
  transition: opacity .18s ease, transform .22s cubic-bezier(.2,.85,.2,1);
  overflow: hidden;
}

.od-menu-popup.is-open .od-menu-popup__panel {
  opacity: 1;
  transform: translateY(0);
}

.od-menu-popup__handle {
  display: none;
}

.od-menu-popup__scroll {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding:
    calc(var(--od-menu-top-space) + env(safe-area-inset-top))
    16px
    calc(var(--od-menu-bottom-space) + env(safe-area-inset-bottom));
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.36) transparent;
}

.od-menu-popup__scroll::-webkit-scrollbar {
  width: 4px;
}

.od-menu-popup__scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255,255,255,.34);
}

.od-menu-card {
  width: 100%;
  margin: 0 0 10px;
  padding: 7px 0;
  border-radius: 16px;
  background: var(--od-menu-surface);
  border: 1px solid var(--od-menu-border);
  box-shadow: var(--od-menu-shadow);
  overflow: hidden;
}

.od-menu-row {
  position: relative;
  width: 100%;
  min-height: 54px;
  padding: 0 18px 0 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--od-menu-text);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.od-menu-row:hover,
.od-menu-row.is-active {
  color: #23ec89;
  background: rgba(35,236,137,.06);
}

.od-menu-row:active {
  transform: scale(.99);
}

.od-menu-row__icon {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.od-menu-row__icon svg {
  width: 25px;
  height: 25px;
  display: block;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-menu-row__label {
  min-width: 0;
  flex: 1 1 auto;
  color: inherit;
  font-size: 18px;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.od-menu-row__badge {
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #07140f;
  background: #23ec89;
  box-shadow: 0 8px 18px rgba(35,236,137,.22);
  font-size: 11px;
  font-weight: 1000;
}

.od-menu-row__chev {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--od-menu-muted);
  background: var(--od-menu-surface-2);
}

.od-menu-row__chev svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-menu-theme-card {
  padding: 5px;
}

.od-menu-theme-switch {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  border-radius: 15px;
  background: var(--od-menu-surface-2);
  padding: 4px;
}

.od-theme-option {
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--od-menu-muted);
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -.04em;
  -webkit-tap-highlight-color: transparent;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.od-theme-option svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-theme-option.is-active {
  color: var(--od-menu-text);
  background: color-mix(in srgb, var(--od-menu-surface) 76%, #23ec89 10%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.od-theme-option:active {
  transform: scale(.98);
}

body.od-menu-open {
  overflow: hidden !important;
}

html[data-od-theme="light"] body {
  background: #f5f6f7 !important;
}

html[data-od-theme="light"] .od-header {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,247,248,.96)) !important;
  border-bottom: 1px solid rgba(15,23,42,.06) !important;
}

html[data-od-theme="light"] .od-bottom-nav {
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(244,246,247,.98)) !important;
  border-top: 1px solid rgba(15,23,42,.08) !important;
  box-shadow: 0 -18px 48px rgba(15,23,42,.08) !important;
}

html[data-od-theme="light"] .od-bottom-nav__item {
  color: #6b747a !important;
}

html[data-od-theme="light"] .od-bottom-nav__item.is-active,
html[data-od-theme="light"] .od-bottom-nav__item:hover {
  color: #13c873 !important;
}

@media (min-width: 768px) {
  .od-menu-popup__scroll {
    max-width: 760px;
    margin: 0 auto;
    border-left: 1px solid var(--od-menu-border);
    border-right: 1px solid var(--od-menu-border);
  }
}

@media (max-width: 430px) {
  :root {
    --od-menu-top-space: 126px;
    --od-menu-bottom-space: 86px;
  }

  .od-menu-popup__scroll {
    padding-left: 14px;
    padding-right: 14px;
  }

  .od-menu-row {
    min-height: 52px;
    padding-left: 18px;
    padding-right: 16px;
    gap: 12px;
  }

  .od-menu-row__icon {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
  }

  .od-menu-row__icon svg {
    width: 23px;
    height: 23px;
  }

  .od-menu-row__label {
    font-size: 17px;
  }

  .od-menu-row__chev {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .od-theme-option {
    min-height: 46px;
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .od-menu-popup__scroll {
    padding-left: 10px;
    padding-right: 10px;
  }

  .od-menu-row {
    min-height: 49px;
    padding-left: 16px;
    padding-right: 14px;
    gap: 10px;
  }

  .od-menu-row__label {
    font-size: 16px;
  }
}
/* =========================================================
   FIX: show site header above menu popup
========================================================= */

/* keep header above the popup */
.od-header,
.site-header,
.main-header,
header {
  z-index: 9900 !important;
}

/* menu popup starts under the header */
.od-menu-popup {
  top: 92px !important;
  bottom: 0 !important;
  height: auto !important;
  z-index: 9700 !important;
}

/* popup panel must fill only the popup area, not cover header */
.od-menu-popup__panel {
  top: 0 !important;
  bottom: 0 !important;
  height: 100% !important;
  min-height: 0 !important;
}

/* remove the big fake top spacing because real header is now visible */
.od-menu-popup__scroll {
  height: 100% !important;
  padding-top: 12px !important;
  padding-bottom: calc(96px + env(safe-area-inset-bottom)) !important;
}
/* =========================================================
   DESKTOP ONLY FIX: menu full width + bottom nav alignment
   This does NOT affect mobile.
========================================================= */

@media (min-width: 1024px) {

  /* Menu popup full desktop width */
  .od-menu-popup {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    top: 118px !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: auto !important;
    z-index: 9700 !important;
    overflow: hidden !important;
  }

  .od-menu-popup__panel {
    position: absolute !important;
    inset: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100% !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
  }

  .od-menu-popup__scroll {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 18px 28px 112px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    border-left: 0 !important;
    border-right: 0 !important;
  }

  .od-menu-card {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 18px !important;
  }

  .od-menu-row {
    min-height: 62px !important;
    padding-left: 38px !important;
    padding-right: 34px !important;
    gap: 22px !important;
  }

  .od-menu-row__icon {
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
  }

  .od-menu-row__icon svg {
    width: 30px !important;
    height: 30px !important;
  }

  .od-menu-row__label {
    font-size: 24px !important;
    line-height: 1 !important;
  }

  .od-menu-row__chev {
    width: 44px !important;
    height: 44px !important;
    flex-basis: 44px !important;
    border-radius: 14px !important;
  }


  /* Desktop bottom nav alignment */
  .od-bottom-nav {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 86px !important;
    min-height: 86px !important;
    padding: 8px 24px 10px !important;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    align-items: center !important;
    justify-items: center !important;
    gap: 0 !important;
    border-radius: 22px 22px 0 0 !important;
    z-index: 9800 !important;
    overflow: visible !important;
  }

  .od-bottom-nav__item {
    width: 100% !important;
    height: 66px !important;
    min-height: 66px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    text-align: center !important;
    line-height: 1 !important;
    transform: none !important;
    position: relative !important;
  }

  .od-bottom-nav__icon {
    width: 33px !important;
    height: 33px !important;
    min-width: 33px !important;
    min-height: 33px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .od-bottom-nav__icon svg {
    width: 33px !important;
    height: 33px !important;
    display: block !important;
    stroke: currentColor !important;
    stroke-width: 2.45 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }

  .od-bottom-nav__label {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-align: center !important;
    white-space: nowrap !important;
    position: static !important;
    transform: none !important;
  }

  .od-bottom-nav__item--center {
    height: 76px !important;
    min-height: 76px !important;
    justify-content: flex-start !important;
    gap: 4px !important;
    margin-top: -34px !important;
  }

  .od-bottom-nav__center-ring {
    width: 76px !important;
    height: 76px !important;
    min-width: 76px !important;
    min-height: 76px !important;
    margin: 0 auto !important;
    border-radius: 999px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .od-bottom-nav__center-ring img {
    width: 48px !important;
    height: 48px !important;
    object-fit: contain !important;
    display: block !important;
  }

  .od-bottom-nav__label--center {
    margin-top: 3px !important;
    font-size: 12px !important;
    line-height: 1 !important;
  }
}
/* =========================================================
   MOBILE ONLY: make bottom nav very small
   Paste at bottom of assets/css/layout.css
========================================================= */

@media (max-width: 767px) {

  .od-bottom-nav {
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;

    padding: 4px 6px calc(4px + env(safe-area-inset-bottom)) !important;

    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    align-items: center !important;
    justify-items: center !important;

    border-radius: 16px 16px 0 0 !important;
    overflow: visible !important;
    z-index: 9800 !important;
  }

  .od-bottom-nav__item {
    width: 100% !important;
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;

    padding: 0 !important;
    margin: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 2px !important;
    line-height: 1 !important;
    text-align: center !important;

    transform: none !important;
    position: relative !important;
  }

  .od-bottom-nav__icon {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .od-bottom-nav__icon svg {
    width: 20px !important;
    height: 20px !important;

    display: block !important;
    stroke-width: 2.35 !important;
  }

  .od-bottom-nav__label {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    font-size: 9px !important;
    line-height: 1 !important;
    font-weight: 900 !important;

    text-align: center !important;
    white-space: nowrap !important;

    position: static !important;
    transform: none !important;
  }

  /* Center home button very small */
  .od-bottom-nav__item--center {
    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;

    margin-top: -18px !important;
    justify-content: flex-start !important;
    gap: 1px !important;
  }

  .od-bottom-nav__center-ring {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;

    margin: 0 auto !important;

    border-radius: 999px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .od-bottom-nav__center-ring img {
    width: 31px !important;
    height: 31px !important;
    max-width: 31px !important;
    max-height: 31px !important;

    object-fit: contain !important;
    display: block !important;
  }

  .od-bottom-nav__label--center {
    margin-top: 1px !important;
    font-size: 8px !important;
    line-height: 1 !important;
  }

  /* reduce page bottom space because nav is now small */
  body {
    padding-bottom: calc(62px + env(safe-area-inset-bottom)) !important;
  }

  #page-content,
  .od-index-page #page-content {
    padding-bottom: calc(62px + env(safe-area-inset-bottom)) !important;
  }
}
/* Header avatar: same dark/glass style as dashboard, not green */
.od-header .od-avatar-btn {
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 34%),
        linear-gradient(145deg, rgba(18, 28, 26, 0.96), rgba(7, 14, 13, 0.98)) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 10px 24px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(35, 232, 132, 0.08) !important;
    color: #d9fff0 !important;
    overflow: hidden !important;
}

/* Remove green background from fallback icon */
.od-header .od-avatar-btn .od-avatar-fallback-icon {
    background: transparent !important;
    color: #d9fff0 !important;
    display: grid !important;
    place-items: center !important;
}

/* Make uploaded/default avatar fill the button cleanly */
.od-header .od-avatar-btn .od-avatar-img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: inherit !important;
    background: transparent !important;
}

/* Stop any old green pseudo layer if it exists */
.od-header .od-avatar-btn::before,
.od-header .od-avatar-btn::after {
    background: transparent !important;
}/* =========================================================
   OddeminBet Index Page CSS
   Moved out of index.php
   Add to bottom of /assets/css/layout.css
========================================================= */

:root{
  --od-index-bg:#202726;
  --od-index-bg-deep:#151c1b;
  --od-index-panel:#2c3433;
  --od-index-panel-soft:#353e3d;
  --od-index-border:rgba(255,255,255,.08);
  --od-index-text:#f4fbf8;
  --od-index-muted:#a9b8b3;
  --od-index-green:#23ec89;
  --od-index-green-dark:#10985a;
  --od-index-gold:#ffd76b;
  --od-bottom-nav-height:calc(78px + env(safe-area-inset-bottom));
}

*{box-sizing:border-box;}

html{
  min-height:100%;
  background:var(--od-index-bg-deep);
}

body{
  margin:0;
  min-height:100vh;
  color:var(--od-index-text);
  background:
    radial-gradient(circle at 18% 0%, rgba(35,236,137,.13), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(255,215,107,.07), transparent 26%),
    linear-gradient(180deg, var(--od-index-bg), var(--od-index-bg-deep));
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.28;
  background-image:
    linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size:34px 34px;
  mask-image:linear-gradient(180deg, #000, transparent 72%);
  z-index:-1;
}

#page-content{
  width:100%;
  max-width:760px;
  margin:0 auto;
  padding:10px 12px calc(126px + env(safe-area-inset-bottom));
}

#page-content > section,
#page-content > div{
  animation:odIndexRise .35s ease both;
}

#page-content > section:nth-child(2),
#page-content > div:nth-child(2){animation-delay:.04s;}
#page-content > section:nth-child(3),
#page-content > div:nth-child(3){animation-delay:.08s;}
#page-content > section:nth-child(4),
#page-content > div:nth-child(4){animation-delay:.12s;}
#page-content > section:nth-child(5),
#page-content > div:nth-child(5){animation-delay:.16s;}

@keyframes odIndexRise{
  from{opacity:0;transform:translateY(14px);}
  to{opacity:1;transform:translateY(0);}
}

/* Homepage dark-theme polish for included sections */
.zb-home-showcase,
.quick-actions,
.top-bets-wrap,
.index-live-section,
.index-upcoming-section,
.live-matches,
.upcoming-matches,
.idx-upcoming-section{
  color:var(--od-index-text);
}

#page-content .section-title,
#page-content h1,
#page-content h2,
#page-content h3{
  color:var(--od-index-text);
}

#page-content .match-card,
#page-content .index-live-card,
#page-content .index-upcoming-card,
#page-content .top-bet-card,
#page-content .action,
#page-content .league-card{
  background:
    linear-gradient(135deg, rgba(255,255,255,.065), rgba(255,255,255,.022)),
    var(--od-index-panel) !important;
  border-color:rgba(255,255,255,.08) !important;
  box-shadow:
    0 14px 34px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.05) !important;
}

#page-content .odd,
#page-content .odd-btn,
#page-content .market-odd,
#page-content button[data-odd]{
  border-color:rgba(35,236,137,.18) !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04) !important;
}

.od-index-include-fallback{
  width:100%;
  margin:10px 0;
  padding:14px;
  border-radius:18px;
  color:#f4fbf8;
  background:
    radial-gradient(circle at top left, rgba(35,236,137,.12), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  border:1px dashed rgba(35,236,137,.22);
  box-shadow:0 14px 34px rgba(0,0,0,.20);
}

.od-index-include-fallback strong{
  display:block;
  font-size:14px;
  font-weight:1000;
  margin-bottom:4px;
}

.od-index-include-fallback span{
  display:block;
  color:#a9b8b3;
  font-size:12px;
  font-weight:850;
}

/* Compact notification: right-to-left, small, dark premium */
.od-index-notice{
  position:fixed;
  top:calc(138px + env(safe-area-inset-top));
  right:10px;
  z-index:3500;
  width:min(292px, calc(100vw - 20px));
  min-height:52px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 10px 8px 8px;
  border-radius:18px;
  color:#f5fff9;
  text-decoration:none;
  background:
    radial-gradient(circle at top left, rgba(35,236,137,.16), transparent 42%),
    linear-gradient(135deg, rgba(47,56,55,.96), rgba(24,31,30,.96));
  border:1px solid rgba(35,236,137,.20);
  box-shadow:
    0 18px 44px rgba(0,0,0,.36),
    inset 0 1px 0 rgba(255,255,255,.06);
  transform:translateX(125%);
  opacity:0;
  pointer-events:none;
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}

.od-index-notice.show{
  pointer-events:auto;
  animation:odNoticeRightLeft 7.2s cubic-bezier(.16,1,.3,1) both;
}

.od-index-notice__icon{
  width:37px;
  height:37px;
  flex:0 0 37px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#09140f;
  background:linear-gradient(135deg, #35f398, #12bb68);
  box-shadow:0 10px 22px rgba(35,236,137,.20);
  position:relative;
}

.od-index-notice__icon svg{
  width:21px;
  height:21px;
}

.od-index-notice__count{
  position:absolute;
  right:-5px;
  top:-6px;
  min-width:19px;
  height:19px;
  padding:0 5px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#161107;
  background:linear-gradient(135deg, #fff1aa, #ffd76b);
  border:1px solid rgba(255,255,255,.45);
  font-size:10px;
  font-weight:1000;
  line-height:1;
}

.od-index-notice__body{
  min-width:0;
  flex:1;
}

.od-index-notice__kicker{
  display:block;
  color:var(--od-index-green);
  font-size:9px;
  line-height:1;
  font-weight:1000;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:4px;
}

.od-index-notice__title{
  display:block;
  color:#ffffff;
  font-size:12px;
  line-height:1.15;
  font-weight:1000;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.od-index-notice__text{
  display:block;
  margin-top:3px;
  color:#aebdb7;
  font-size:10px;
  line-height:1.2;
  font-weight:800;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.od-index-notice__go{
  width:26px;
  height:26px;
  flex:0 0 26px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#07140f;
  background:var(--od-index-gold);
}

.od-index-notice__go svg{
  width:16px;
  height:16px;
}

.od-index-notice__close{
  position:absolute;
  right:-6px;
  top:-8px;
  width:24px;
  height:24px;
  border:0;
  border-radius:999px;
  background:#303837;
  color:#dce8e4;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
  cursor:pointer;
}

.od-index-notice__close svg{
  width:14px;
  height:14px;
}

@keyframes odNoticeRightLeft{
  0%{opacity:0;transform:translateX(125%) scale(.98);}
  12%{opacity:1;transform:translateX(0) scale(1);}
  80%{opacity:1;transform:translateX(0) scale(1);}
  100%{opacity:0;transform:translateX(-125%) scale(.98);}
}

@media(max-width:520px){
  #page-content{
    padding-left:10px;
    padding-right:10px;
  }

  .od-index-notice{
    top:calc(132px + env(safe-area-inset-top));
    width:min(284px, calc(100vw - 18px));
  }
}

@media(prefers-reduced-motion:reduce){
  #page-content > section,
  #page-content > div,
  .od-index-notice.show{
    animation:none !important;
  }

  .od-index-notice.show{
    opacity:1;
    transform:translateX(0);
  }
}

/* =========================================================
   Support Popup CSS
   File: /layout/support-popup.php
========================================================= */

/* =========================================================
   Support Popup
   Add this to the bottom of /assets/css/layout.css
   File: /layout/support-popup.php
========================================================= */

.od-support-popup,
.od-support-popup * {
  box-sizing: border-box;
}

.od-support-fab {
  position: fixed;
  right: 14px;
  bottom: calc(94px + env(safe-area-inset-bottom));
  z-index: 3550;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 20px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #07140f;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.30), transparent 42%),
    linear-gradient(135deg, #35f398, #0fa35d);
  box-shadow:
    0 18px 40px rgba(35,236,137,.26),
    0 10px 26px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.26);
}

.od-support-fab svg {
  width: 27px;
  height: 27px;
  position: relative;
  z-index: 2;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-support-fab__pulse {
  position: absolute;
  inset: -5px;
  border-radius: 24px;
  border: 1px solid rgba(35,236,137,.42);
  animation: odSupportPulse 1.45s ease-in-out infinite;
}

.od-support-backdrop {
  position: fixed;
  inset: 0;
  z-index: 3540;
  background: rgba(0,0,0,.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.od-support-panel {
  position: fixed;
  right: 12px;
  bottom: calc(158px + env(safe-area-inset-bottom));
  z-index: 3560;
  width: min(340px, calc(100vw - 24px));
  border-radius: 24px;
  padding: 14px;
  color: #f5fff9;
  background:
    radial-gradient(circle at top left, rgba(35,236,137,.16), transparent 42%),
    linear-gradient(145deg, rgba(48,57,55,.98), rgba(22,29,28,.98));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow:
    0 24px 70px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.06);
  transform: translateY(18px) scale(.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.od-support-popup.is-open .od-support-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.od-support-popup.is-open .od-support-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.od-support-panel__top {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}

.od-support-panel__icon {
  width: 42px;
  height: 42px;
  border-radius: 17px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  color: #07140f;
  background: linear-gradient(135deg, #35f398, #12bb68);
  box-shadow: 0 12px 24px rgba(35,236,137,.20);
}

.od-support-panel__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-support-panel__title {
  min-width: 0;
  flex: 1;
}

.od-support-panel__title span {
  display: block;
  color: #23ec89;
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.od-support-panel__title strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  font-weight: 1000;
}

.od-support-close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #dce8e4;
  background: rgba(255,255,255,.075);
  cursor: pointer;
  flex: 0 0 32px;
}

.od-support-close svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.od-support-panel__text {
  margin: 0 0 12px;
  color: #afbeb8;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 850;
}

.od-support-actions {
  display: grid;
  gap: 9px;
}

.od-support-action {
  min-height: 58px;
  border-radius: 18px;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #f5fff9;
  text-decoration: none;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.od-support-action--primary {
  color: #07140f;
  background: linear-gradient(135deg, #35f398, #12bb68);
  border-color: rgba(255,255,255,.18);
}

.od-support-action span {
  min-width: 0;
}

.od-support-action strong,
.od-support-action small {
  display: block;
}

.od-support-action strong {
  font-size: 13px;
  line-height: 1.1;
  font-weight: 1000;
}

.od-support-action small {
  margin-top: 4px;
  color: inherit;
  opacity: .72;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 850;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.od-support-action svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes odSupportPulse {
  0% {
    opacity: .7;
    transform: scale(.92);
  }
  70% {
    opacity: 0;
    transform: scale(1.15);
  }
  100% {
    opacity: 0;
    transform: scale(1.15);
  }
}

@media (max-width: 520px) {
  .od-support-fab {
    right: 12px;
    bottom: calc(92px + env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
    border-radius: 18px;
  }

  .od-support-fab svg {
    width: 25px;
    height: 25px;
  }

  .od-support-panel {
    right: 10px;
    bottom: calc(150px + env(safe-area-inset-bottom));
    width: min(330px, calc(100vw - 20px));
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .od-support-fab__pulse {
    animation: none !important;
  }

  .od-support-backdrop,
  .od-support-panel {
    transition: none !important;
  }
}
/* =========================================================
   HARD FORCE: Top Bets full width on index
   File affected: /user/partials/index/top-bets.php
========================================================= */

body.od-index-page #page-content {
  overflow: visible !important;
}

/* Break Top Bets out of the centered index container */
body.od-index-page .od-top-matches,
body #page-content .od-top-matches {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  border-radius: 0 !important;
}

/* Make header full width */
body.od-index-page .od-top-matches .od-top-matches__head {
  width: 100% !important;
  max-width: 100% !important;
}

/* Make the card scroll/list full width */
body.od-index-page .od-top-matches .od-top-matches__scroll {
  width: 100% !important;
  max-width: 100% !important;
}

/* Force cards to use available width */
body.od-index-page .od-top-matches .od-match-card {
  width: 100% !important;
  max-width: 100% !important;
}

/* If your top bets scroll is horizontal, keep it clean */
body.od-index-page .od-top-matches .od-top-matches__scroll {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scrollbar-width: none !important;
}

body.od-index-page .od-top-matches .od-top-matches__scroll::-webkit-scrollbar {
  display: none !important;
}

/* If browser treats it as grid/flex, make it stretch */
body.od-index-page .od-top-matches .od-top-matches__scroll {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
}

/* Prevent page horizontal overflow */
html,
body {
  overflow-x: hidden !important;
}

@media (min-width: 760px) {
  body.od-index-page .od-top-matches .od-top-matches__scroll {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1120px) {
  body.od-index-page .od-top-matches .od-top-matches__scroll {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
/* =========================================================
   HARD COMPACT: Make Top Bets small on index
   File affected: /user/partials/index/top-bets.php
========================================================= */

body.od-index-page .od-top-matches {
  padding-top: 6px !important;
  padding-bottom: 8px !important;
}

/* smaller header */
body.od-index-page .od-top-matches__head {
  min-height: 38px !important;
  padding: 6px 8px !important;
  margin-bottom: 7px !important;
  border-radius: 13px !important;
}

body.od-index-page .od-top-matches__icon {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
}

body.od-index-page .od-top-matches__icon svg {
  width: 15px !important;
  height: 15px !important;
}

body.od-index-page .od-top-matches__title {
  gap: 7px !important;
}

body.od-index-page .od-top-matches__title span {
  font-size: 8px !important;
  line-height: 1 !important;
}

body.od-index-page .od-top-matches__title h2 {
  font-size: 15px !important;
  line-height: 1 !important;
  margin: 1px 0 0 !important;
}

body.od-index-page .od-top-matches__view {
  min-height: 25px !important;
  padding: 5px 8px !important;
  border-radius: 999px !important;
  font-size: 8px !important;
}

body.od-index-page .od-top-matches__view svg {
  width: 12px !important;
  height: 12px !important;
}

/* smaller list gap */
body.od-index-page .od-top-matches__scroll {
  gap: 7px !important;
}

/* smaller card */
body.od-index-page .od-match-card {
  min-height: unset !important;
  padding: 8px !important;
  border-radius: 13px !important;
  box-shadow:
    0 10px 24px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.06) !important;
}

/* smaller top row inside card */
body.od-index-page .od-match-card__top {
  margin-bottom: 6px !important;
  gap: 7px !important;
}

body.od-index-page .od-match-card__league {
  font-size: 8px !important;
  gap: 4px !important;
  min-height: 20px !important;
}

body.od-index-page .od-match-card__league svg {
  width: 12px !important;
  height: 12px !important;
}

body.od-index-page .od-match-card__time {
  min-height: 20px !important;
  padding: 3px 6px !important;
  border-radius: 999px !important;
  font-size: 8px !important;
}

/* smaller team area */
body.od-index-page .od-match-card__teams {
  padding: 6px 4px !important;
  gap: 6px !important;
  min-height: unset !important;
}

body.od-index-page .od-team {
  gap: 5px !important;
}

body.od-index-page .od-team strong {
  font-size: 10px !important;
  line-height: 1.1 !important;
  max-width: 92px !important;
}

body.od-index-page .od-team-badge {
  width: 25px !important;
  height: 25px !important;
  min-width: 25px !important;
  border-radius: 9px !important;
  font-size: 8px !important;
}

body.od-index-page .od-team-badge img {
  width: 20px !important;
  height: 20px !important;
}

body.od-index-page .od-match-card__versus {
  width: 27px !important;
  height: 20px !important;
  min-width: 27px !important;
  border-radius: 999px !important;
  font-size: 8px !important;
}

/* smaller market label */
body.od-index-page .od-match-card__market {
  margin: 5px 0 5px !important;
  font-size: 8px !important;
  line-height: 1 !important;
}

/* smaller odds */
body.od-index-page .od-match-card__odds {
  gap: 5px !important;
  margin-top: 5px !important;
}

body.od-index-page .od-match-odd {
  min-height: 34px !important;
  padding: 5px 4px !important;
  border-radius: 9px !important;
}

body.od-index-page .od-match-odd span {
  font-size: 8px !important;
  line-height: 1.05 !important;
  max-width: 100% !important;
}

body.od-index-page .od-match-odd strong {
  font-size: 11px !important;
  line-height: 1 !important;
  margin-top: 2px !important;
}

/* reduce decorative glow size */
body.od-index-page .od-match-card__glow {
  width: 62px !important;
  height: 62px !important;
  opacity: .55 !important;
}

body.od-index-page .od-match-card__pattern {
  opacity: .12 !important;
}

/* mobile: very compact */
@media (max-width: 520px) {
  body.od-index-page .od-top-matches {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  body.od-index-page .od-match-card {
    padding: 7px !important;
    border-radius: 12px !important;
  }

  body.od-index-page .od-top-matches__scroll {
    gap: 6px !important;
  }

  body.od-index-page .od-team strong {
    font-size: 9.5px !important;
    max-width: 82px !important;
  }

  body.od-index-page .od-team-badge {
    width: 23px !important;
    height: 23px !important;
    min-width: 23px !important;
  }

  body.od-index-page .od-team-badge img {
    width: 18px !important;
    height: 18px !important;
  }

  body.od-index-page .od-match-odd {
    min-height: 32px !important;
  }
}
/* =========================================================
   HARD OVERRIDE: Top Bets selected market lime green
   File affected: /user/partials/index/top-bets.php
========================================================= */

/* selected / in betslip state */
body.od-index-page .od-top-matches .od-match-odd.is-selected,
body.od-index-page .od-top-matches .od-match-odd.selected,
body.od-index-page .od-top-matches .od-match-odd.active,
body.od-index-page .od-top-matches .od-match-odd.in-slip,
body.od-index-page .od-top-matches .od-match-odd[aria-pressed="true"] {
  background: linear-gradient(135deg, #c8ff00, #74ff35) !important;
  color: #061107 !important;
  border-color: rgba(200, 255, 0, 0.85) !important;
  box-shadow:
    0 12px 26px rgba(116, 255, 53, 0.28),
    0 0 0 4px rgba(200, 255, 0, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.42) !important;
  animation: none !important;
}

/* selected text */
body.od-index-page .od-top-matches .od-match-odd.is-selected span,
body.od-index-page .od-top-matches .od-match-odd.is-selected strong,
body.od-index-page .od-top-matches .od-match-odd.selected span,
body.od-index-page .od-top-matches .od-match-odd.selected strong,
body.od-index-page .od-top-matches .od-match-odd.active span,
body.od-index-page .od-top-matches .od-match-odd.active strong,
body.od-index-page .od-top-matches .od-match-odd.in-slip span,
body.od-index-page .od-top-matches .od-match-odd.in-slip strong,
body.od-index-page .od-top-matches .od-match-odd[aria-pressed="true"] span,
body.od-index-page .od-top-matches .od-match-odd[aria-pressed="true"] strong {
  color: #061107 !important;
}

/* selected hover should remain lime */
body.od-index-page .od-top-matches .od-match-odd.is-selected:hover,
body.od-index-page .od-top-matches .od-match-odd.selected:hover,
body.od-index-page .od-top-matches .od-match-odd.active:hover,
body.od-index-page .od-top-matches .od-match-odd.in-slip:hover,
body.od-index-page .od-top-matches .od-match-odd[aria-pressed="true"]:hover {
  background: linear-gradient(135deg, #d7ff25, #7dff3b) !important;
  color: #061107 !important;
  border-color: rgba(200, 255, 0, 0.95) !important;
  transform: translateY(-1px) !important;
}

/* normal unselected state */
body.od-index-page .od-top-matches .od-match-odd:not(.is-selected):not(.selected):not(.active):not(.in-slip):not([aria-pressed="true"]) {
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.035)) !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,.10) !important;
  box-shadow:
    0 9px 20px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.06) !important;
}

/* normal unselected text */
body.od-index-page .od-top-matches .od-match-odd:not(.is-selected):not(.selected):not(.active):not(.in-slip):not([aria-pressed="true"]) span {
  color: #94a3b8 !important;
}

body.od-index-page .od-top-matches .od-match-odd:not(.is-selected):not(.selected):not(.active):not(.in-slip):not([aria-pressed="true"]) strong {
  color: #ffccd3 !important;
}
/* =========================================================
   OddeminBet Popup Menu HARD OVERRIDE
   Paste at the VERY BOTTOM of: /assets/css/layout.css

   Purpose:
   - Keep your existing dark green / glass theme colors
   - Keep SVG icons unchanged
   - Make menu popup visible and stable
   - Add dashboard-style single dark/light toggle
   - Sync with dashboard theme attributes:
     html[data-theme], html[data-od-theme], body[data-theme], body[data-od-theme]
========================================================= */

:root {
  --od-menu-top-space: 132px;
  --od-menu-bottom-space: 90px;

  --od-menu-bg: #202726;
  --od-menu-bg-deep: #161d1c;
  --od-menu-surface: #2d3433;
  --od-menu-surface-2: #343c3b;
  --od-menu-surface-3: #1c2322;
  --od-menu-text: #f4fbf8;
  --od-menu-muted: #a9b7b2;
  --od-menu-muted-2: #72817c;
  --od-menu-icon: #c3cfcb;
  --od-menu-green: #23ec89;
  --od-menu-green-soft: rgba(35,236,137,0.16);
  --od-menu-green-border: rgba(35,236,137,0.30);
  --od-menu-gold: #ffd76b;
  --od-menu-border: rgba(255,255,255,0.09);
  --od-menu-border-strong: rgba(255,255,255,0.16);
  --od-menu-shadow: 0 18px 50px rgba(0,0,0,0.34);
}

html[data-theme="dark"],
html[data-od-theme="dark"],
body[data-theme="dark"],
body[data-od-theme="dark"],
body.od-dark-mode {
  --od-menu-bg: #202726;
  --od-menu-bg-deep: #161d1c;
  --od-menu-surface: #2d3433;
  --od-menu-surface-2: #343c3b;
  --od-menu-surface-3: #1c2322;
  --od-menu-text: #f4fbf8;
  --od-menu-muted: #a9b7b2;
  --od-menu-muted-2: #72817c;
  --od-menu-icon: #c3cfcb;
  --od-menu-border: rgba(255,255,255,0.09);
  --od-menu-border-strong: rgba(255,255,255,0.16);
  --od-menu-shadow: 0 18px 50px rgba(0,0,0,0.34);
}

html[data-theme="light"],
html[data-od-theme="light"],
body[data-theme="light"],
body[data-od-theme="light"],
body.od-light-mode {
  --od-menu-bg: #f5f6f7;
  --od-menu-bg-deep: #eef0f2;
  --od-menu-surface: #ffffff;
  --od-menu-surface-2: #eef1f2;
  --od-menu-surface-3: #f7f8f8;
  --od-menu-text: #101415;
  --od-menu-muted: #626b70;
  --od-menu-muted-2: #879096;
  --od-menu-icon: #5d666c;
  --od-menu-border: rgba(15,23,42,0.08);
  --od-menu-border-strong: rgba(15,23,42,0.14);
  --od-menu-shadow: 0 18px 48px rgba(15,23,42,0.10);
}

.od-menu-popup,
.od-menu-popup * {
  box-sizing: border-box !important;
}

body.od-menu-open {
  overflow: hidden !important;
  touch-action: none !important;
}

.od-menu-popup {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  top: var(--od-menu-top-space) !important;
  bottom: 0 !important;
  z-index: 9700 !important;
  width: 100vw !important;
  height: auto !important;
  max-width: 100vw !important;
  display: block !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  color: var(--od-menu-text) !important;
  overflow: hidden !important;
  transform: translateZ(0) !important;
  transition:
    opacity .22s ease,
    visibility .22s ease !important;
}

.od-menu-popup.is-open {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.od-menu-popup__shade {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(35,236,137,0.10), transparent 34%),
    rgba(10,15,14,0.56) !important;
  backdrop-filter: blur(9px) !important;
  -webkit-backdrop-filter: blur(9px) !important;
  opacity: 0 !important;
  transition: opacity .22s ease !important;
}

.od-menu-popup.is-open .od-menu-popup__shade {
  opacity: 1 !important;
}

.od-menu-popup__panel {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: 100vw !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  color: var(--od-menu-text) !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(35,236,137,0.10), transparent 36%),
    linear-gradient(180deg, var(--od-menu-bg) 0%, var(--od-menu-bg-deep) 100%) !important;
  border-top: 1px solid var(--od-menu-border) !important;
  box-shadow: var(--od-menu-shadow) !important;
  transform: translateY(18px) !important;
  transition: transform .26s ease !important;
  overflow: hidden !important;
}

.od-menu-popup.is-open .od-menu-popup__panel {
  transform: translateY(0) !important;
}

.od-menu-popup__handle {
  width: 48px !important;
  height: 5px !important;
  flex: 0 0 auto !important;
  margin: 10px auto 8px !important;
  border-radius: 999px !important;
  background: rgba(169,183,178,0.38) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10) !important;
}

.od-menu-popup__scroll {
  width: 100% !important;
  max-width: 760px !important;
  height: 100% !important;
  margin: 0 auto !important;
  padding: 10px 16px calc(var(--od-menu-bottom-space) + env(safe-area-inset-bottom)) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
}

.od-menu-popup__scroll::-webkit-scrollbar {
  display: none !important;
}

.od-menu-card {
  width: 100% !important;
  margin: 0 0 12px !important;
  padding: 5px !important;
  border-radius: 19px !important;
  color: var(--od-menu-text) !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.065), rgba(255,255,255,0.022)),
    var(--od-menu-surface) !important;
  border: 1px solid var(--od-menu-border) !important;
  box-shadow:
    0 14px 34px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.05) !important;
  overflow: hidden !important;
}

html[data-theme="light"] .od-menu-card,
html[data-od-theme="light"] .od-menu-card,
body[data-theme="light"] .od-menu-card,
body[data-od-theme="light"] .od-menu-card,
body.od-light-mode .od-menu-card {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.72)),
    var(--od-menu-surface) !important;
  box-shadow:
    0 14px 34px rgba(15,23,42,0.08),
    inset 0 1px 0 rgba(255,255,255,0.85) !important;
}

.od-menu-row {
  min-height: 56px !important;
  width: 100% !important;
  padding: 0 16px 0 18px !important;
  border-radius: 15px !important;
  display: flex !important;
  align-items: center !important;
  gap: 13px !important;
  color: var(--od-menu-text) !important;
  text-decoration: none !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  -webkit-tap-highlight-color: transparent !important;
  transition:
    background .18s ease,
    border-color .18s ease,
    color .18s ease,
    transform .18s ease !important;
}

.od-menu-row:hover,
.od-menu-row.is-active {
  color: #ffffff !important;
  background:
    linear-gradient(135deg, rgba(35,236,137,0.12), rgba(255,255,255,0.026)),
    var(--od-menu-surface-3) !important;
  border-color: var(--od-menu-green-border) !important;
}

html[data-theme="light"] .od-menu-row:hover,
html[data-theme="light"] .od-menu-row.is-active,
html[data-od-theme="light"] .od-menu-row:hover,
html[data-od-theme="light"] .od-menu-row.is-active,
body[data-theme="light"] .od-menu-row:hover,
body[data-theme="light"] .od-menu-row.is-active,
body[data-od-theme="light"] .od-menu-row:hover,
body[data-od-theme="light"] .od-menu-row.is-active,
body.od-light-mode .od-menu-row:hover,
body.od-light-mode .od-menu-row.is-active {
  color: #101415 !important;
  background:
    linear-gradient(135deg, rgba(35,236,137,0.13), rgba(255,255,255,0.84)),
    #ffffff !important;
}

.od-menu-row:active {
  transform: scale(.985) !important;
}

.od-menu-row__icon {
  width: 28px !important;
  height: 28px !important;
  flex: 0 0 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--od-menu-icon) !important;
}

.od-menu-row:hover .od-menu-row__icon,
.od-menu-row.is-active .od-menu-row__icon {
  color: var(--od-menu-green) !important;
}

.od-menu-row__icon svg,
.od-menu-row__chev svg,
.od-menu-theme-label__icon svg,
.od-menu-theme-option svg {
  display: block !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.3 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.od-menu-row__icon svg {
  width: 25px !important;
  height: 25px !important;
}

.od-menu-row__label {
  min-width: 0 !important;
  flex: 1 1 auto !important;
  color: inherit !important;
  font-size: 18px !important;
  line-height: 1 !important;
  font-weight: 1000 !important;
  letter-spacing: -.04em !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.od-menu-row__badge {
  min-width: 22px !important;
  height: 22px !important;
  padding: 0 7px !important;
  border-radius: 999px !important;
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #07140f !important;
  background: var(--od-menu-green) !important;
  box-shadow: 0 8px 18px rgba(35,236,137,0.22) !important;
  font-size: 11px !important;
  font-weight: 1000 !important;
  font-style: normal !important;
  line-height: 1 !important;
}

.od-menu-row__chev {
  width: 34px !important;
  height: 34px !important;
  border-radius: 11px !important;
  flex: 0 0 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--od-menu-muted) !important;
  background: var(--od-menu-surface-2) !important;
  border: 1px solid rgba(255,255,255,0.045) !important;
}

html[data-theme="light"] .od-menu-row__chev,
html[data-od-theme="light"] .od-menu-row__chev,
body[data-theme="light"] .od-menu-row__chev,
body[data-od-theme="light"] .od-menu-row__chev,
body.od-light-mode .od-menu-row__chev {
  border-color: rgba(15,23,42,0.055) !important;
}

.od-menu-row__chev svg {
  width: 18px !important;
  height: 18px !important;
  stroke-width: 2.7 !important;
}

/* Dashboard-style theme row */
.od-menu-theme-card {
  padding: 5px !important;
}

.od-menu-theme-row {
  min-height: 56px !important;
  width: 100% !important;
  padding: 0 14px 0 18px !important;
  border-radius: 15px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  color: var(--od-menu-text) !important;
  background: transparent !important;
}

.od-menu-theme-label {
  min-width: 0 !important;
  flex: 1 1 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 13px !important;
  color: var(--od-menu-text) !important;
}

.od-menu-theme-label__icon {
  width: 28px !important;
  height: 28px !important;
  flex: 0 0 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--od-menu-icon) !important;
}

.od-menu-theme-label__icon svg {
  width: 25px !important;
  height: 25px !important;
}

.od-menu-theme-label strong {
  min-width: 0 !important;
  color: inherit !important;
  font-size: 18px !important;
  line-height: 1 !important;
  font-weight: 1000 !important;
  letter-spacing: -.04em !important;
}

/* Single pill toggle like dashboard */
.od-menu-theme-toggle {
  width: 78px !important;
  height: 38px !important;
  flex: 0 0 78px !important;
  position: relative !important;
  padding: 3px !important;
  border: 1px solid var(--od-menu-border-strong) !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0 !important;
  color: var(--od-menu-muted) !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
    var(--od-menu-surface-2) !important;
  box-shadow:
    0 10px 22px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.055) !important;
  cursor: pointer !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
  transition:
    border-color .18s ease,
    background .18s ease,
    transform .18s ease !important;
}

.od-menu-theme-toggle::before {
  content: "" !important;
  position: absolute !important;
  z-index: 1 !important;
  left: 3px !important;
  top: 3px !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #33f296, #17d276) !important;
  border: 1px solid rgba(35,236,137,0.62) !important;
  box-shadow:
    0 9px 18px rgba(35,236,137,0.24),
    inset 0 1px 0 rgba(255,255,255,0.28) !important;
  transform: translateX(0) !important;
  transition: transform .24s ease !important;
}

.od-menu-theme-toggle[data-active-theme="light"]::before,
html[data-theme="light"] .od-menu-theme-toggle::before,
html[data-od-theme="light"] .od-menu-theme-toggle::before,
body[data-theme="light"] .od-menu-theme-toggle::before,
body[data-od-theme="light"] .od-menu-theme-toggle::before,
body.od-light-mode .od-menu-theme-toggle::before {
  transform: translateX(40px) !important;
}

.od-menu-theme-toggle:hover {
  border-color: var(--od-menu-green-border) !important;
}

.od-menu-theme-toggle:active {
  transform: scale(.96) !important;
}

.od-menu-theme-toggle:focus-visible {
  outline: 3px solid rgba(35,236,137,0.40) !important;
  outline-offset: 3px !important;
}

.od-menu-theme-option {
  position: relative !important;
  z-index: 2 !important;
  width: 32px !important;
  height: 32px !important;
  flex: 0 0 32px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--od-menu-muted) !important;
  pointer-events: none !important;
  transition: color .18s ease !important;
}

.od-menu-theme-option svg {
  width: 18px !important;
  height: 18px !important;
  stroke-width: 2.35 !important;
}

.od-menu-theme-toggle[data-active-theme="dark"] .od-menu-theme-moon,
html[data-theme="dark"] .od-menu-theme-toggle .od-menu-theme-moon,
html[data-od-theme="dark"] .od-menu-theme-toggle .od-menu-theme-moon,
body[data-theme="dark"] .od-menu-theme-toggle .od-menu-theme-moon,
body[data-od-theme="dark"] .od-menu-theme-toggle .od-menu-theme-moon,
body.od-dark-mode .od-menu-theme-toggle .od-menu-theme-moon {
  color: #07140f !important;
}

.od-menu-theme-toggle[data-active-theme="light"] .od-menu-theme-sun,
html[data-theme="light"] .od-menu-theme-toggle .od-menu-theme-sun,
html[data-od-theme="light"] .od-menu-theme-toggle .od-menu-theme-sun,
body[data-theme="light"] .od-menu-theme-toggle .od-menu-theme-sun,
body[data-od-theme="light"] .od-menu-theme-toggle .od-menu-theme-sun,
body.od-light-mode .od-menu-theme-toggle .od-menu-theme-sun {
  color: #07140f !important;
}

/* Safety support for old two-button theme markup if browser cache still serves it */
.od-menu-theme-switch {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 5px !important;
  border-radius: 15px !important;
  background: var(--od-menu-surface-2) !important;
  padding: 4px !important;
}

.od-menu-theme-switch .od-theme-option {
  min-height: 48px !important;
  border: 0 !important;
  border-radius: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  color: var(--od-menu-muted) !important;
  background: transparent !important;
  cursor: pointer !important;
  font-size: 16px !important;
  line-height: 1 !important;
  font-weight: 1000 !important;
  letter-spacing: -.04em !important;
  -webkit-tap-highlight-color: transparent !important;
}

.od-menu-theme-switch .od-theme-option svg {
  width: 20px !important;
  height: 20px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.3 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.od-menu-theme-switch .od-theme-option.is-active {
  color: #07140f !important;
  background: linear-gradient(135deg, #33f296, #17d276) !important;
  box-shadow:
    0 9px 18px rgba(35,236,137,0.22),
    inset 0 1px 0 rgba(255,255,255,0.28) !important;
}

/* Keep site header above menu popup, but popup under header */
.od-header,
.site-header,
.main-header,
header {
  z-index: 9900 !important;
}

@media (min-width: 768px) {
  .od-menu-popup__scroll {
    max-width: 760px !important;
    border-left: 1px solid var(--od-menu-border) !important;
    border-right: 1px solid var(--od-menu-border) !important;
  }
}

@media (max-width: 700px) {
  :root {
    --od-menu-top-space: 118px;
    --od-menu-bottom-space: 86px;
  }
}

@media (max-width: 430px) {
  :root {
    --od-menu-top-space: 112px;
    --od-menu-bottom-space: 84px;
  }

  .od-menu-popup__scroll {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .od-menu-row,
  .od-menu-theme-row {
    min-height: 52px !important;
    padding-left: 18px !important;
    padding-right: 14px !important;
    gap: 12px !important;
  }

  .od-menu-row__icon,
  .od-menu-theme-label__icon {
    width: 25px !important;
    height: 25px !important;
    flex-basis: 25px !important;
  }

  .od-menu-row__icon svg,
  .od-menu-theme-label__icon svg {
    width: 23px !important;
    height: 23px !important;
  }

  .od-menu-row__label,
  .od-menu-theme-label strong {
    font-size: 17px !important;
  }

  .od-menu-row__chev {
    width: 32px !important;
    height: 32px !important;
    flex-basis: 32px !important;
  }

  .od-menu-theme-toggle {
    width: 74px !important;
    height: 36px !important;
    flex-basis: 74px !important;
  }

  .od-menu-theme-toggle::before {
    width: 30px !important;
    height: 30px !important;
  }

  .od-menu-theme-toggle[data-active-theme="light"]::before,
  html[data-theme="light"] .od-menu-theme-toggle::before,
  html[data-od-theme="light"] .od-menu-theme-toggle::before,
  body[data-theme="light"] .od-menu-theme-toggle::before,
  body[data-od-theme="light"] .od-menu-theme-toggle::before,
  body.od-light-mode .od-menu-theme-toggle::before {
    transform: translateX(38px) !important;
  }

  .od-menu-theme-option {
    width: 30px !important;
    height: 30px !important;
    flex-basis: 30px !important;
  }
}

@media (max-width: 360px) {
  .od-menu-popup__scroll {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .od-menu-row,
  .od-menu-theme-row {
    min-height: 49px !important;
    padding-left: 16px !important;
    padding-right: 12px !important;
    gap: 10px !important;
  }

  .od-menu-row__label,
  .od-menu-theme-label strong {
    font-size: 16px !important;
  }

  .od-menu-theme-toggle {
    width: 70px !important;
    height: 34px !important;
    flex-basis: 70px !important;
  }

  .od-menu-theme-toggle::before {
    width: 28px !important;
    height: 28px !important;
  }

  .od-menu-theme-toggle[data-active-theme="light"]::before,
  html[data-theme="light"] .od-menu-theme-toggle::before,
  html[data-od-theme="light"] .od-menu-theme-toggle::before,
  body[data-theme="light"] .od-menu-theme-toggle::before,
  body[data-od-theme="light"] .od-menu-theme-toggle::before,
  body.od-light-mode .od-menu-theme-toggle::before {
    transform: translateX(36px) !important;
  }

  .od-menu-theme-option {
    width: 28px !important;
    height: 28px !important;
    flex-basis: 28px !important;
  }

  .od-menu-theme-option svg {
    width: 17px !important;
    height: 17px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .od-menu-popup,
  .od-menu-popup__shade,
  .od-menu-popup__panel,
  .od-menu-row,
  .od-menu-theme-toggle,
  .od-menu-theme-toggle::before,
  .od-menu-theme-option {
    animation: none !important;
    transition: none !important;
  }
}
.od-promo-track {
  display: flex;
  overflow: visible;
}

.od-promo-card {
  flex: 0 0 100%;
  min-width: 100%;
  display: block;
}
/* =========================================================
   ODDEMINBET WIN POPUP CLONE - SMALL VERSION
   Paste at bottom of /assets/css/layout.css
   Trophy image path: /assets/img/win-trophy.png
   ========================================================= */

body.od-win-open {
  overflow: hidden !important;
}

#odWinOverlay.od-win-overlay--clone {
  position: fixed !important;
  inset: 0 !important;
  z-index: 14000 !important;

  display: block !important;
  opacity: 0 !important;
  pointer-events: none !important;

  background: rgba(0, 0, 0, .68) !important;
  backdrop-filter: blur(2.5px) !important;
  -webkit-backdrop-filter: blur(2.5px) !important;

  transition: opacity .18s ease !important;
}

#odWinOverlay.od-win-overlay--clone.show {
  opacity: 1 !important;
  pointer-events: auto !important;
}

#odWinModal.od-win-modal--clone {
  position: fixed !important;
  left: 50% !important;
  top: 50% !important;
  z-index: 14020 !important;

  width: min(330px, calc(100vw - 28px)) !important;
  max-width: 330px !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;

  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;

  color: #ffffff !important;
  text-align: center !important;

  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate(-50%, -50%) scale(.94) !important;
  transition: opacity .2s ease, transform .24s cubic-bezier(.2, .82, .2, 1) !important;
}

#odWinModal.od-win-modal--clone.open {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translate(-50%, -50%) scale(1) !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__content {
  position: relative !important;
  display: grid !important;
  justify-items: center !important;
  width: 100% !important;
  padding: 6px 12px 0 !important;
  background: transparent !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__close {
  position: absolute !important;
  top: -10px !important;
  right: 2px !important;
  z-index: 4 !important;

  display: grid !important;
  place-items: center !important;

  width: 28px !important;
  height: 28px !important;
  padding: 0 !important;

  border: 1px solid rgba(255, 255, 255, .16) !important;
  border-radius: 999px !important;
  background: rgba(0, 0, 0, .24) !important;
  color: rgba(255, 255, 255, .86) !important;
  cursor: pointer !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__close svg {
  width: 15px !important;
  height: 15px !important;
  stroke: currentColor !important;
  stroke-width: 2.5 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__rank {
  margin: 0 !important;
  color: rgba(255, 255, 255, .94) !important;
  font-size: 13px !important;
  line-height: 1.22 !important;
  font-weight: 800 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .7) !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__rank strong {
  color: #ffffff !important;
  font-weight: 1000 !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__label {
  margin-top: 12px !important;
  color: rgba(255, 255, 255, .96) !important;
  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 1000 !important;
  letter-spacing: .4px !important;
  text-transform: uppercase !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .7) !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__amount {
  margin-top: 9px !important;
  color: #ffffff !important;
  font-size: 26px !important;
  line-height: 1 !important;
  font-weight: 1000 !important;
  letter-spacing: -.5px !important;
  text-shadow:
    0 3px 12px rgba(0, 0, 0, .85),
    0 0 18px rgba(255, 255, 255, .16) !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__trophy-stage {
  position: relative !important;
  display: grid !important;
  place-items: center !important;

  width: 230px !important;
  height: 230px !important;
  margin-top: 12px !important;
  isolation: isolate !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__glow {
  position: absolute !important;
  left: 50% !important;
  top: 46% !important;
  z-index: 0 !important;

  width: 176px !important;
  height: 176px !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle, rgba(255, 255, 210, .96) 0%, rgba(255, 221, 86, .62) 28%, rgba(255, 174, 40, .20) 52%, transparent 72%) !important;
  filter: blur(4px) !important;
  transform: translate(-50%, -50%) !important;
  animation: odWinCloneGlow 2.8s ease-in-out infinite !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__beam {
  position: absolute !important;
  left: 50% !important;
  top: 46% !important;
  z-index: 0 !important;

  width: 200px !important;
  height: 16px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, transparent, rgba(255, 246, 180, .72), transparent) !important;
  transform-origin: center !important;
  filter: blur(1px) !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__beam--one {
  transform: translate(-50%, -50%) rotate(0deg) !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__beam--two {
  transform: translate(-50%, -50%) rotate(26deg) !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__beam--three {
  transform: translate(-50%, -50%) rotate(-26deg) !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__trophy {
  position: relative !important;
  z-index: 2 !important;

  display: block !important;
  width: 205px !important;
  height: 205px !important;
  object-fit: contain !important;

  filter:
    drop-shadow(0 18px 18px rgba(0, 0, 0, .42))
    drop-shadow(0 0 22px rgba(255, 224, 99, .38)) !important;
  animation: odWinCloneTrophy 3.2s ease-in-out infinite !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__from {
  margin-top: 6px !important;
  color: rgba(255, 255, 255, .94) !important;
  font-size: 10.5px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .7) !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__meta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;

  margin-top: 7px !important;
  color: rgba(255, 255, 255, .78) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__meta span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 21px !important;
  padding: 0 8px !important;
  border-radius: 999px !important;
  background: rgba(0, 0, 0, .20) !important;
  border: 1px solid rgba(255, 255, 255, .08) !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__details {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: min(260px, 100%) !important;
  min-height: 42px !important;
  margin-top: 16px !important;
  padding: 0 16px !important;

  border: 0 !important;
  border-radius: 2px !important;
  background: #10a93d !important;
  color: #ffffff !important;

  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-decoration: none !important;

  box-shadow:
    0 14px 28px rgba(0, 0, 0, .38),
    0 0 0 1px rgba(255, 255, 255, .06) inset !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__details:active {
  transform: scale(.98) !important;
}

/* Hide old win popup pieces if old markup/classes still appear */
#odWinModal.od-win-modal--clone .od-win-modal__top,
#odWinModal.od-win-modal--clone .od-win-modal__trophy-wrap,
#odWinModal.od-win-modal--clone .od-win-modal__title,
#odWinModal.od-win-modal--clone .od-win-modal__subtitle,
#odWinModal.od-win-modal--clone .od-win-modal__amount,
#odWinModal.od-win-modal--clone .od-win-modal__meta,
#odWinModal.od-win-modal--clone .od-win-modal__cards,
#odWinModal.od-win-modal--clone .od-win-modal__actions {
  display: none !important;
}

@keyframes odWinCloneGlow {
  0%, 100% {
    opacity: .78;
    transform: translate(-50%, -50%) scale(.96);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes odWinCloneTrophy {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.015);
  }
}

@media (max-width: 380px) {
  #odWinModal.od-win-modal--clone {
    width: calc(100vw - 22px) !important;
  }

  #odWinModal.od-win-modal--clone .od-win-clone__amount {
    font-size: 23px !important;
  }

  #odWinModal.od-win-modal--clone .od-win-clone__trophy-stage {
    width: 205px !important;
    height: 205px !important;
  }

  #odWinModal.od-win-modal--clone .od-win-clone__trophy {
    width: 184px !important;
    height: 184px !important;
  }

  #odWinModal.od-win-modal--clone .od-win-clone__glow {
    width: 154px !important;
    height: 154px !important;
  }

  #odWinModal.od-win-modal--clone .od-win-clone__beam {
    width: 178px !important;
  }

  #odWinModal.od-win-modal--clone .od-win-clone__details {
    width: min(245px, 100%) !important;
    min-height: 40px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #odWinModal.od-win-modal--clone .od-win-clone__glow,
  #odWinModal.od-win-modal--clone .od-win-clone__trophy {
    animation: none !important;
  }
}
/* Bigger win trophy */
#odWinModal.od-win-modal--clone .od-win-clone__trophy-stage {
  width: 300px !important;
  height: 300px !important;
  margin-top: 10px !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__trophy {
  width: 280px !important;
  height: 280px !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__glow {
  width: 235px !important;
  height: 235px !important;
}

#odWinModal.od-win-modal--clone .od-win-clone__beam {
  width: 265px !important;
}

/* Keep it safe on very small phones */
@media (max-width: 400px) {
  #odWinModal.od-win-modal--clone .od-win-clone__trophy-stage {
    width: 255px !important;
    height: 255px !important;
  }

  #odWinModal.od-win-modal--clone .od-win-clone__trophy {
    width: 240px !important;
    height: 240px !important;
  }

  #odWinModal.od-win-modal--clone .od-win-clone__glow {
    width: 200px !important;
    height: 200px !important;
  }

  #odWinModal.od-win-modal--clone .od-win-clone__beam {
    width: 235px !important;
  }
}
/* =========================================================
   ODD HEADER TOP ROW FINAL FIX
   Fixes right-side space/overflow on first header row
   Affects: site icon + wallet + gift + bell + avatar
========================================================= */

html,
body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

.od-header {
  width: 100vw !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

@media (max-width: 700px) {
  .od-header__top {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 56px !important;
    margin: 0 !important;
    padding: 9px 7px 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 5px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .od-brand {
    width: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
    height: 34px !important;
    flex: 0 0 34px !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .od-brand__logo {
    display: none !important;
  }

  .od-brand__icon {
    width: 34px !important;
    height: 34px !important;
    display: block !important;
    object-fit: contain !important;
  }

  .od-user-actions {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
    margin-left: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 5px !important;
    overflow: hidden !important;
  }

  .od-wallet-combo {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: 1 1 auto !important;
    height: 34px !important;
    padding: 3px !important;
    border-radius: 13px !important;
    overflow: hidden !important;
  }

  .od-wallet-combo__balance {
    min-width: 0 !important;
    flex: 1 1 auto !important;
    justify-content: flex-start !important;
    gap: 5px !important;
    padding: 0 4px 0 2px !important;
    overflow: hidden !important;
  }

  .od-wallet-combo__coin {
    width: 26px !important;
    height: 26px !important;
    flex: 0 0 26px !important;
    font-size: 8.5px !important;
  }

  .od-wallet-combo__amount {
    min-width: 0 !important;
    max-width: 100% !important;
    font-size: 11.5px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .od-wallet-combo__chev {
    width: 13px !important;
    height: 13px !important;
    flex: 0 0 13px !important;
  }

  .od-wallet-combo__plus {
    width: 30px !important;
    min-width: 30px !important;
    max-width: 30px !important;
    height: 28px !important;
    flex: 0 0 30px !important;
    border-radius: 10px !important;
  }

  .od-wallet-combo__plus svg {
    width: 18px !important;
    height: 18px !important;
  }

  .od-square-btn,
  .od-avatar-btn {
    width: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
    height: 34px !important;
    flex: 0 0 34px !important;
    margin: 0 !important;
    border-radius: 11px !important;
  }

  .od-square-btn svg {
    width: 18px !important;
    height: 18px !important;
  }
}

@media (max-width: 380px) {
  .od-header__top {
    padding-left: 6px !important;
    padding-right: 6px !important;
    gap: 4px !important;
  }

  .od-brand {
    width: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    height: 32px !important;
    flex-basis: 32px !important;
  }

  .od-brand__icon {
    width: 32px !important;
    height: 32px !important;
  }

  .od-wallet-combo {
    height: 32px !important;
  }

  .od-wallet-combo__coin {
    width: 24px !important;
    height: 24px !important;
    flex-basis: 24px !important;
    font-size: 7.8px !important;
  }

  .od-wallet-combo__amount {
    font-size: 10.5px !important;
  }

  .od-wallet-combo__chev {
    display: none !important;
  }

  .od-wallet-combo__plus {
    width: 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    height: 26px !important;
    flex-basis: 28px !important;
  }

  .od-square-btn,
  .od-avatar-btn {
    width: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    height: 32px !important;
    flex-basis: 32px !important;
  }

  .od-square-btn svg {
    width: 17px !important;
    height: 17px !important;
  }
}

@media (max-width: 340px) {
  .od-header__top {
    padding-left: 5px !important;
    padding-right: 5px !important;
    gap: 3px !important;
  }

  .od-brand {
    width: 30px !important;
    min-width: 30px !important;
    max-width: 30px !important;
    height: 30px !important;
    flex-basis: 30px !important;
  }

  .od-brand__icon {
    width: 30px !important;
    height: 30px !important;
  }

  .od-wallet-combo {
    height: 30px !important;
  }

  .od-wallet-combo__coin {
    width: 23px !important;
    height: 23px !important;
    flex-basis: 23px !important;
    font-size: 7.3px !important;
  }

  .od-wallet-combo__amount {
    font-size: 9.6px !important;
  }

  .od-wallet-combo__plus {
    width: 26px !important;
    min-width: 26px !important;
    max-width: 26px !important;
    height: 24px !important;
    flex-basis: 26px !important;
  }

  .od-square-btn,
  .od-avatar-btn {
    width: 30px !important;
    min-width: 30px !important;
    max-width: 30px !important;
    height: 30px !important;
    flex-basis: 30px !important;
  }

  .od-square-btn svg {
    width: 16px !important;
    height: 16px !important;
  }
}
/* =========================================================
   TOP BETS ONLY - ONE CARD RIGHT TO LEFT ANIMATION
   No color/theme changes here
========================================================= */

.od-top-matches__scroll {
  --od-top-visible: 1 !important;
  --od-top-visible-count: 1 !important;
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

/* All cards stay in same one-card stage */
.od-top-matches__scroll .od-match-card {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  position: absolute !important;
  inset: 0 auto auto 0 !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(44px) scale(.985);
  will-change: transform, opacity;
}

/* Current visible card keeps wrapper height */
.od-top-matches__scroll .od-match-card.od-top-card-visible {
  position: relative !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  z-index: 2;
}

/* New card enters from right */
.od-top-matches__scroll .od-match-card.od-top-card-enter {
  animation: odTopBetCardEnterRight .7s cubic-bezier(.2,.9,.2,1) both;
}

/* Old card exits to left */
.od-top-matches__scroll .od-match-card.od-top-card-leave {
  position: absolute !important;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transform: translateX(0) scale(1);
  z-index: 1;
  animation: odTopBetCardLeaveLeft .7s cubic-bezier(.2,.9,.2,1) both;
}

/* Old class from previous JS must not show extra cards */
.od-top-matches__scroll .od-match-card.is-visible:not(.od-top-card-visible) {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Text cleanup only */
.od-top-matches__scroll .od-match-card__teams {
  min-width: 0 !important;
}

.od-top-matches__scroll .od-team strong {
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

@keyframes odTopBetCardEnterRight {
  0% {
    opacity: 0;
    transform: translateX(44px) scale(.985);
  }

  72% {
    opacity: 1;
    transform: translateX(-4px) scale(1);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes odTopBetCardLeaveLeft {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-44px) scale(.985);
  }
}

@media (prefers-reduced-motion: reduce) {
  .od-top-matches__scroll .od-match-card.od-top-card-visible,
  .od-top-matches__scroll .od-match-card.od-top-card-enter,
  .od-top-matches__scroll .od-match-card.od-top-card-leave {
    animation: none !important;
    transform: none !important;
  }
}