: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;
  }
}