/* =========================================================
   lotterybuzz.win — UI stylesheet
   Mobile first, desktop enhanced at 900px / 1200px
   ========================================================= */

:root {
  --bg: #05070f;
  --bg-2: #0a0f24;
  --panel: #0d1330;
  --panel-2: #121a3d;
  --line: rgba(255, 255, 255, 0.08);
  --txt: #ffffff;
  --txt-dim: #93a0c4;
  --txt-mute: #6d7ba3;

  --gold: #ffc328;
  --gold-2: #ff9d00;
  --violet: #a855f7;
  --violet-2: #6d28d9;
  --pink: #ec4899;

  --green: #22e05a;
  --green-2: #0f9d38;
  --amber: #ffa60a;
  --amber-2: #d97706;
  --blue: #3b9dff;
  --blue-2: #1d4ed8;

  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  --pad: 14px;
  --shell: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--txt);
  font-family:
    "Outfit",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ambient background wash */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      58% 40% at 50% -6%,
      rgba(124, 58, 237, 0.34),
      transparent 70%
    ),
    radial-gradient(
      45% 30% at 8% 22%,
      rgba(29, 78, 216, 0.24),
      transparent 70%
    ),
    radial-gradient(
      50% 34% at 96% 62%,
      rgba(168, 85, 247, 0.16),
      transparent 72%
    ),
    linear-gradient(180deg, #070b1c 0%, #05070f 55%, #04060d 100%);
}

/* shared diagonal light sweep, used sparingly on hero elements only */
@keyframes shineSweep {
  0% {
    transform: translateX(-160%) skewX(-16deg);
  }
  60% {
    transform: translateX(260%) skewX(-16deg);
  }
  100% {
    transform: translateX(260%) skewX(-16deg);
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid #7dd3fc;
  outline-offset: 3px;
  border-radius: 8px;
}

.app {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding: calc(10px + env(safe-area-inset-top)) var(--pad) 130px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* =========================================================
   HEADER
   ========================================================= */
.topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: linear-gradient(160deg, #151d42, #0b1027);
  border: 1px solid rgba(139, 127, 255, 0.34);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 8px 22px rgba(0, 0, 0, 0.45),
    0 0 10px rgba(139, 127, 255, 0.18);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease;
}

.icon-btn:active {
  transform: scale(0.94);
}

.menu-btn {
  flex-direction: column;
  gap: 5px;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2.6px;
  border-radius: 2px;
  background: #e7ecff;
  transition:
    transform 0.28s ease,
    opacity 0.2s ease;
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.6px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.6px) rotate(-45deg);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 100%;
  max-width: 210px;
  height: auto;
  animation: logoGlow 3.2s ease-in-out infinite;
}

@keyframes logoGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.12));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.45));
  }
}

.balance {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: var(--r-md);
  background: linear-gradient(150deg, #171f4a, #0c1128);
  border: 1.5px solid rgba(168, 85, 247, 0.7);
  box-shadow:
    0 0 16px rgba(168, 85, 247, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: balanceGlow 3s ease-in-out infinite;
}

@keyframes balanceGlow {
  0%,
  100% {
    box-shadow:
      0 0 16px rgba(168, 85, 247, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
  50% {
    box-shadow:
      0 0 28px rgba(168, 85, 247, 0.6),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
}

.balance__icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.balance__text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.balance__text small {
  font-size: 12px;
  font-weight: 600;
  color: #dfe5ff;
}

.balance__text strong {
  font-size: 19px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.2px;
  text-shadow: 0 0 6px rgba(255, 195, 40, 0.4);
}

.bell-btn {
  position: relative;
}

.bell-ico {
  width: 25px;
  height: 25px;
  color: #e7ecff;
}

.badge {
  position: absolute;
  top: -5px;
  right: -4px;
  min-width: 23px;
  height: 23px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(160deg, #ff4d5e, #c81e2c);
  border: 2px solid #0a0f24;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(255, 77, 94, 0.7);
  animation: badgeGlow 1.8s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(255, 77, 94, 0.55);
  }
  50% {
    box-shadow: 0 0 16px rgba(255, 77, 94, 0.95);
  }
}

.badge[hidden] {
  display: none;
}

/* =========================================================
   JACKPOT BANNER
   ========================================================= */
.promo-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1915/560;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 0 28px rgba(124, 58, 237, 0.34);
  animation: bannerGlow 3.2s ease-in-out infinite;
}

@keyframes bannerGlow {
  0%,
  100% {
    box-shadow: 0 0 28px rgba(124, 58, 237, 0.34);
  }
  50% {
    box-shadow: 0 0 48px rgba(124, 58, 237, 0.68);
  }
}

.promo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 22%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shineSweep 5s ease-in-out infinite;
  animation-delay: 1s;
  pointer-events: none;
}

.promo-slider__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.promo-slider__slide.is-active {
  opacity: 1;
}

/* =========================================================
   DRAW CARDS
   ========================================================= */
.draws {
  display: grid;
  gap: 16px;
}

.draw {
  --c: var(--green);
  --c2: var(--green-2);
  position: relative;
  display: grid;
  gap: 12px;
  padding: 14px 12px;
  border-radius: var(--r-xl);
  background:
    radial-gradient(
      120% 90% at 50% 0%,
      color-mix(in srgb, var(--c) 12%, transparent),
      transparent 62%
    ),
    linear-gradient(170deg, #0c1330, #070b1e);
  border: 1.5px solid color-mix(in srgb, var(--c) 70%, transparent);
  box-shadow:
    0 0 24px color-mix(in srgb, var(--c) 28%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: cardGlow 3.6s ease-in-out infinite;
}

@keyframes cardGlow {
  0%,
  100% {
    box-shadow:
      0 0 24px color-mix(in srgb, var(--c) 28%, transparent),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }
  50% {
    box-shadow:
      0 0 42px color-mix(in srgb, var(--c) 58%, transparent),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
}

.draw--morning {
  --c: var(--green);
  --c2: var(--green-2);
}

.draw--day {
  --c: var(--amber);
  --c2: var(--amber-2);
  animation-delay: 0.9s;
}

.draw--evening {
  --c: var(--blue);
  --c2: var(--blue-2);
  animation-delay: 1.8s;
}

.draw__head {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
  align-items: center;
  gap: 6px;
}

.prize-chip {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: var(--r-md);
  background: linear-gradient(
    150deg,
    color-mix(in srgb, var(--c) 34%, #0b1226),
    #0a1024
  );
  border: 1px solid color-mix(in srgb, var(--c) 55%, transparent);
  box-shadow: 0 0 10px color-mix(in srgb, var(--gold) 22%, transparent);
}

.prize-chip__crown {
  width: 26px;
  height: 26px;
  color: var(--gold);
  flex: none;
}

.prize-chip span {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
  min-width: 0;
}

.prize-chip strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 0 6px rgba(255, 195, 40, 0.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prize-chip small {
  font-size: 11px;
  font-weight: 700;
  color: #cfd7f5;
  letter-spacing: 0.6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.draw__title {
  margin: 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: clamp(16px, 4.9vw, 28px);
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--c);
  text-shadow: 0 0 16px color-mix(in srgb, var(--c) 65%, transparent);
}

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

.draw__icon {
  width: 26px;
  height: 26px;
  color: var(--c);
  flex: none;
}

.draw--morning .draw__icon,
.draw--day .draw__icon {
  color: #ffb703;
}

.draw--evening .draw__icon {
  color: #5fb3ff;
}

.timer {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--r-md);
  background: linear-gradient(150deg, #0e1533, #080c1e);
  border: 1px solid color-mix(in srgb, var(--c) 55%, transparent);
  box-shadow: 0 0 10px color-mix(in srgb, var(--c) 26%, transparent);
}

.timer__ico {
  width: 24px;
  height: 24px;
  color: var(--c);
  flex: none;
}

.timer span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.timer small {
  font-size: 11.5px;
  font-weight: 700;
  color: #dbe2ff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.timer__value {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 17px;
  font-weight: 800;
  color: var(--c);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 12px color-mix(in srgb, var(--c) 55%, transparent);
}

.timer--urgent .timer__value {
  animation: pulse 1s steps(2, start) infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}

.draw__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.meta {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 8px;
  border-radius: var(--r-md);
  background: linear-gradient(160deg, #111838, #0a0f26);
  border: 1px solid var(--line);
  min-width: 0;
}

.meta__ico {
  width: 22px;
  height: 22px;
  flex: none;
}

.meta__ico--blue {
  color: #5b8cff;
}

.meta__ico--sun {
  color: #ffb703;
}

.meta__ico--moon {
  color: #5fb3ff;
}

.meta span {
  display: flex;
  flex-direction: column;
  line-height: 1.14;
  min-width: 0;
}

.meta strong {
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.meta small {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--txt-mute);
  letter-spacing: 0.7px;
}

/* CTA */
.play {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 15px 18px;
  border-radius: var(--r-lg);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--c) 88%, #fff 12%) 0%,
    var(--c) 42%,
    var(--c2) 100%
  );
  border: 1px solid color-mix(in srgb, #fff 30%, var(--c));
  box-shadow:
    0 8px 26px color-mix(in srgb, var(--c) 45%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: clamp(15px, 4.3vw, 20px);
  font-weight: 800;
  letter-spacing: 0.6px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.16s ease,
    filter 0.16s ease;
  animation: ctaGlow 2.6s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%,
  100% {
    box-shadow:
      0 8px 26px color-mix(in srgb, var(--c) 45%, transparent),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }
  50% {
    box-shadow:
      0 8px 36px color-mix(in srgb, var(--c) 75%, transparent),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
}

.play::after {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 20%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  animation: shineSweep 3.6s ease-in-out infinite;
  animation-delay: 1.4s;
  pointer-events: none;
}

.play:hover {
  filter: brightness(1.08);
}

.play:active {
  transform: translateY(2px) scale(0.99);
}

.play__gift {
  width: 28px;
  height: 28px;
  color: #fff;
}

.play__arrow {
  width: 22px;
  height: 22px;
  color: #fff;
}

.play span {
  text-align: center;
}

.play .ripple {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  animation: ripple 0.6s ease-out forwards;
}

@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

/* =========================================================
   BOTTOM TAB BAR
   ========================================================= */
.tabbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  padding: 12px 8px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(
    180deg,
    rgba(10, 15, 36, 0.86),
    rgba(6, 9, 22, 0.98)
  );
  border-top: 1px solid rgba(146, 110, 255, 0.32);
  backdrop-filter: blur(16px);
  box-shadow: 0 -10px 32px rgba(0, 0, 0, 0.55);
}

.tab {
  display: grid;
  justify-items: center;
  gap: 5px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--txt-dim);
  transition: color 0.18s ease;
}

.tab svg {
  width: 24px;
  height: 24px;
}

.tab.is-active {
  color: #e879f9;
}

.tab.is-active svg {
  filter: drop-shadow(0 0 10px rgba(232, 121, 249, 0.75));
}

.tab:hover {
  color: #fff;
}

.tab--center {
  position: relative;
}

.fab {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-top: -40px;
  border-radius: 50%;
  background: linear-gradient(160deg, #c026d3, #7e22ce);
  border: 3px solid #0a0f24;
  box-shadow: 0 0 20px rgba(192, 38, 211, 0.55);
  animation: fabGlow 2.4s ease-in-out infinite;
}

@keyframes fabGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(192, 38, 211, 0.55);
  }
  50% {
    box-shadow: 0 0 32px rgba(192, 38, 211, 0.9);
  }
}

.fab svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.tab--center span:last-child {
  color: #dfe5ff;
}

/* =========================================================
   DRAWER
   ========================================================= */
.scrim {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(3, 5, 14, 0.72);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.26s ease;
}

.scrim.is-open {
  opacity: 1;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 70;
  width: min(84vw, 320px);
  padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
  background: linear-gradient(170deg, #131a40, #070b1c);
  border-right: 1px solid rgba(146, 110, 255, 0.4);
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.6);
  transform: translateX(-104%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.drawer.is-open {
  transform: none;
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 22px;
}

.drawer__head img {
  width: 170px;
}

.drawer__close {
  font-size: 32px;
  line-height: 1;
  color: #cbd5ff;
  padding: 0 6px;
}

.drawer__nav {
  display: grid;
  gap: 6px;
}

.drawer__nav a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 14px;
  border-radius: var(--r-md);
  font-size: 16px;
  font-weight: 700;
  color: #dbe2ff;
  border: 1px solid transparent;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.drawer__nav a svg {
  width: 22px;
  height: 22px;
  color: #a78bfa;
}

.drawer__nav a:hover {
  background: rgba(124, 58, 237, 0.18);
  border-color: rgba(146, 110, 255, 0.4);
  transform: translateX(3px);
}

/* =========================================================
   TOAST
   ========================================================= */
.toast {
  position: fixed;
  left: 50%;
  bottom: 112px;
  z-index: 90;
  transform: translate(-50%, 20px);
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(150deg, #1b2350, #0b1027);
  border: 1px solid rgba(146, 110, 255, 0.55);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.toast.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* =========================================================
   TABLET  ≥ 720px
   ========================================================= */
@media (min-width: 720px) {
  :root {
    --pad: 22px;
    --shell: 760px;
  }

  .brand img {
    max-width: 250px;
  }

  .meta strong {
    font-size: 15.5px;
  }

  .meta small {
    font-size: 11.5px;
  }
}

/* =========================================================
   DESKTOP  ≥ 1000px
   ========================================================= */
@media (min-width: 1000px) {
  :root {
    --pad: 32px;
    --shell: 1180px;
  }

  .app {
    padding-bottom: 150px;
    gap: 26px;
  }

  .topbar {
    gap: 18px;
    padding-block: 6px;
  }

  .brand img {
    max-width: 300px;
  }

  .balance {
    padding: 12px 20px;
  }

  .balance__text strong {
    font-size: 23px;
  }

  .promo-slider {
    border-radius: 34px;
  }

  /* three draws side by side */
  .draws {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
  }

  .draw {
    padding: 20px 18px;
    gap: 16px;
  }

  .draw__head {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 14px;
  }

  .draw__title {
    font-size: 35px;
    order: -1;
  }

  .draw__icon {
    width: 32px;
    height: 32px;
  }

  .prize-chip {
    width: 100%;
    justify-content: center;
  }

  .timer {
    width: 100%;
    justify-content: center;
  }

  .draw__meta {
    grid-template-columns: minmax(0, 1fr);
  }

  .meta {
    padding: 13px 14px;
  }

  .meta strong {
    font-size: 16px;
  }

  .play {
    padding: 18px 22px;
    font-size: 19px;
  }

  .draw {
    transition:
      transform 0.22s ease,
      box-shadow 0.22s ease;
  }

  .draw:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px color-mix(in srgb, var(--c) 34%, transparent);
  }

  /* floating pill nav */
  .tabbar {
    left: 50%;
    right: auto;
    bottom: 26px;
    transform: translateX(-50%);
    width: min(560px, 92vw);
    padding: 14px 26px;
    border: 1px solid rgba(146, 110, 255, 0.4);
    border-radius: 999px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  }

  .fab {
    width: 64px;
    height: 64px;
    margin-top: -42px;
  }

  .toast {
    bottom: 120px;
  }
}

@media (min-width: 1400px) {
  :root {
    --shell: 1320px;
  }
}

/* =========================================================
   NARROW PHONES  < 480px   (kept last so it wins on source order)
   ========================================================= */
@media (max-width: 479px) {
  :root {
    --pad: 11px;
  }

  .topbar {
    gap: 7px;
  }

  .icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .menu-btn span {
    width: 19px;
  }

  .bell-ico {
    width: 22px;
    height: 22px;
  }

  .balance {
    padding: 7px 10px;
    gap: 7px;
  }

  .balance__icon svg {
    width: 24px;
    height: 24px;
  }

  .balance__text small {
    font-size: 10.5px;
  }

  .balance__text strong {
    font-size: 16px;
  }

  .brand img {
    /* max-width: none; */
  }

  .meta {
    padding: 9px 5px;
    gap: 4px;
  }

  .meta__ico {
    width: 17px;
    height: 17px;
  }

  .meta strong {
    font-size: 11.5px;
    letter-spacing: -0.3px;
  }

  .meta small {
    font-size: 9.5px;
  }

  .draw__head {
    gap: 4px;
  }

  .prize-chip {
    padding: 6px 10px;
    gap: 4px;
  }

  .prize-chip__crown {
    width: 16px;
    height: 16px;
  }

  .prize-chip strong {
    font-size: 20px;
  }

  .prize-chip small {
    font-size: 8.5px;
    letter-spacing: 0;
  }

  .draw__title {
    font-size: 35px;
    gap: 4px;
  }

  .draw__icon {
    width: 16px;
    height: 16px;
  }

  .draw {
    padding: 12px 10px;
  }

  .play {
    padding: 14px 14px;
  }

  .play__gift {
    width: 24px;
    height: 24px;
  }

  .timer {
    padding: 6px 7px;
    gap: 4px;
  }

  .timer__ico {
    width: 16px;
    height: 16px;
  }

  .timer small {
    font-size: 8.5px;
  }

  .timer__value {
    font-size: 13px;
  }

  .timer small {
    font-size: 10px;
  }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
