/* CSS Reset and Core Tokens */
:root {
  --bg-dark: #050b14;
  --bg-cabinet: #0d1527;
  --bg-inner: #080c16;
  --neon-cyan: #00f2fe;
  --neon-cyan-glow: 0 0 10px rgba(0, 242, 254, 0.6), 0 0 20px rgba(0, 242, 254, 0.3);
  --neon-blue: #0984e3;
  --neon-blue-glow: 0 0 10px rgba(9, 132, 227, 0.6), 0 0 20px rgba(9, 132, 227, 0.3);
  --neon-green: #39ff14;
  --neon-green-glow: 0 0 12px rgba(57, 255, 20, 0.7), 0 0 25px rgba(57, 255, 20, 0.4);
  --neon-yellow: #ffd000;
  --neon-yellow-glow: 0 0 15px rgba(255, 208, 0, 0.8), 0 0 30px rgba(255, 208, 0, 0.4), 0 0 50px rgba(255, 208, 0, 0.2);
  --metallic-border: linear-gradient(135deg, #a0a5ab 0%, #252830 50%, #a0a5ab 100%);
  --chrome-vertical: linear-gradient(to right, #4c4c4c 0%, #b8b8b8 15%, #ffffff 30%, #8c8c8c 55%, #111111 75%, #cccccc 90%, #1c1c1c 100%);
  --chrome-horizontal: linear-gradient(to bottom, #4c4c4c 0%, #b8b8b8 15%, #ffffff 30%, #8c8c8c 55%, #111111 75%, #cccccc 90%, #1c1c1c 100%);
}

html {
  overflow-x: hidden;
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  position: relative;
}

/* Background Ambient Glows */
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -2;
  opacity: 0.35;
  pointer-events: none;
}

.bg-glow-left {
  background: var(--neon-blue);
  top: -100px;
  left: -200px;
}

.bg-glow-right {
  background: var(--neon-cyan);
  bottom: -150px;
  right: -200px;
}

.particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(rgba(0, 242, 254, 0.08) 1px, transparent 0),
    radial-gradient(rgba(9, 132, 227, 0.08) 1.5px, transparent 0);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  z-index: -1;
}

/* Sound Toggle Button */
.sound-btn {
  position: fixed;
  top: 16px;
  right: 16px;
  background: rgba(13, 21, 39, 0.82);
  border: 1.5px solid var(--neon-cyan);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  min-width: 44px; /* touch target minimum */
  min-height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--neon-cyan);
  cursor: pointer;
  box-shadow: var(--neon-cyan-glow);
  transition: all 0.3s ease;
  z-index: 200;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  touch-action: manipulation; /* remove 300ms tap delay on mobile */
}

.sound-btn:hover,
.sound-btn:focus-visible {
  transform: scale(1.1);
  background: var(--neon-cyan);
  color: var(--bg-dark);
  box-shadow: 0 0 20px var(--neon-cyan);
  outline: none;
}

.sound-btn:active {
  transform: scale(0.95);
}

.sound-icon {
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.admin-entry {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 210;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(0, 242, 254, 0.8);
  background: rgba(13, 21, 39, 0.82);
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--neon-cyan-glow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.admin-entry:hover,
.admin-entry:focus-visible {
  background: var(--neon-cyan);
  color: #051019;
  outline: none;
}

.hidden {
  display: none !important;
}

/* MAIN CONTAINER */
.slot-machine-container {
  width: 100%;
  max-width: 580px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
}

/* HEADER BOARD */
.header-board {
  width: 90%;
  background: #ffffff;
  border-radius: 22px;
  /* Fully rounded capsule matching reference image */
  border: 8px solid #000000;
  position: relative;
  padding: 8px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 6px 0 #111111,
    0 15px 30px rgba(0, 242, 254, 0.4);
  z-index: 10;
  margin-bottom: 0px;
  /* Pegs will slot below it */
}

.header-inner {
  width: 100%;
  border-radius: 12px;
  background: #ffffff;
  border: none; /* removed gray box border */
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
}

.header-logo-image {
  width: 320px;
  height: 80px;
  object-fit: contain;
}

.header-neon-frame {
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: 30px;
  /* Matched curve for outer neon glow ring */
  border: 4px solid var(--neon-cyan);
  pointer-events: none;
  box-shadow: var(--neon-cyan-glow);
  opacity: 0.9;
}

/* DUAL MOUNTING PEGS UNDER SIGN BOARD */
.header-pegs-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  /* Separator gap matching reference image peg mounting positions */
  width: 100%;
  height: 20px;
  margin-top: -6px;
  /* Tuck under header box border */
  margin-bottom: -6px;
  /* Tuck under cabinet body border */
  position: relative;
  z-index: 5;
}

.header-peg {
  width: 14px;
  height: 100%;
  background: var(--chrome-vertical);
  border: 3.5px solid #000000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
  border-radius: 3px;
}


/* CABINET BODY */
.cabinet-body {
  width: 100%;
  background: linear-gradient(180deg, var(--bg-cabinet) 0%, var(--bg-inner) 100%);
  border-image: var(--metallic-border) 10;
  border-radius: 40px;
  padding: 30px 20px 25px 20px;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.8),
    inset 0 0 40px rgba(0, 242, 254, 0.15);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Pillars on the sides to give a 3D physical feel */
.cabinet-pillar {
  position: absolute;
  top: 15px;
  width: 15px;
  height: 90%;
  background: var(--chrome-vertical);
  border-radius: 8px;
  opacity: 0.85;
}

.pillar-left {
  left: 6px;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.5);
}

.pillar-right {
  right: 6px;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.5);
}

.cabinet-glow-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  border: 2px solid var(--neon-cyan);
  pointer-events: none;
  box-shadow: inset var(--neon-cyan-glow), var(--neon-cyan-glow);
  opacity: 0.65;
}

/* REELS OUTER FRAME */
.reels-outer-frame {
  width: 100%;
  background: linear-gradient(180deg, #121824 0%, #05080e 100%);
  border: 8px solid #000000;
  border-radius: 24px;
  padding: 24px;
  /* More padding for LED bulbs and paylines */
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.8),
    0 0 0 3px rgba(0, 242, 254, 0.4),
    inset 0 10px 30px rgba(0, 0, 0, 0.95);
  position: relative;
  z-index: 6;
}

/* LED Strips styling */
.led-strip {
  position: absolute;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 15;
}

.led-strip-top {
  top: 7px;
  left: 24px;
  right: 24px;
  height: 10px;
}

.led-strip-bottom {
  bottom: 7px;
  left: 24px;
  right: 24px;
  height: 10px;
}

.led-strip-left {
  left: 7px;
  top: 24px;
  bottom: 24px;
  width: 10px;
  flex-direction: column;
}

.led-strip-right {
  right: 7px;
  top: 24px;
  bottom: 24px;
  width: 10px;
  flex-direction: column;
}

/* Individual LED light bulb */
.led-bulb {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #102a43;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5);
  transition: all 0.15s ease;
  animation: led-chase-cyan 1.6s infinite;
}

/* Nth-child delays to create running circular chase light ring */
.led-strip-top .led-bulb:nth-child(4n+1) {
  animation-delay: 0s;
}

.led-strip-top .led-bulb:nth-child(4n+2) {
  animation-delay: 0.4s;
}

.led-strip-top .led-bulb:nth-child(4n+3) {
  animation-delay: 0.8s;
}

.led-strip-top .led-bulb:nth-child(4n+4) {
  animation-delay: 1.2s;
}

.led-strip-right .led-bulb:nth-child(4n+1) {
  animation-delay: 0s;
}

.led-strip-right .led-bulb:nth-child(4n+2) {
  animation-delay: 0.4s;
}

.led-strip-right .led-bulb:nth-child(4n+3) {
  animation-delay: 0.8s;
}

.led-strip-right .led-bulb:nth-child(4n+4) {
  animation-delay: 1.2s;
}

.led-strip-bottom .led-bulb:nth-child(4n+1) {
  animation-delay: 0.8s;
}

.led-strip-bottom .led-bulb:nth-child(4n+2) {
  animation-delay: 1.2s;
}

.led-strip-bottom .led-bulb:nth-child(4n+3) {
  animation-delay: 0s;
}

.led-strip-bottom .led-bulb:nth-child(4n+4) {
  animation-delay: 0.4s;
}

.led-strip-left .led-bulb:nth-child(4n+1) {
  animation-delay: 1.2s;
}

.led-strip-left .led-bulb:nth-child(4n+2) {
  animation-delay: 0.8s;
}

.led-strip-left .led-bulb:nth-child(4n+3) {
  animation-delay: 0.4s;
}

.led-strip-left .led-bulb:nth-child(4n+4) {
  animation-delay: 0s;
}

/* Dynamic speedup when reels are spinning */
.reels-outer-frame.spinning-mode .led-bulb {
  animation-duration: 0.5s;
}

/* Flashing pattern during a win celebration */
.reels-outer-frame.winning-mode .led-bulb {
  animation: led-flash-gold 0.3s infinite alternate;
}

@keyframes led-chase-cyan {

  0%,
  100% {
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan), 0 0 15px var(--neon-cyan);
  }

  25%,
  99% {
    background: #0d1e2d;
    box-shadow: none;
  }
}

@keyframes led-flash-gold {
  0% {
    background: var(--neon-yellow);
    box-shadow: 0 0 8px var(--neon-yellow), 0 0 16px var(--neon-yellow);
  }

  100% {
    background: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green), 0 0 16px var(--neon-green);
  }
}

/* Payline tag indicators on outer rim */
.payline-tag {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: #ff3366;
  color: #ffffff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(255, 51, 102, 0.8);
  z-index: 20;
}

.payline-tag-left {
  left: 3px;
}

.payline-tag-left::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 4px;
  border-left: 5px solid #ff3366;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.payline-tag-right {
  right: 3px;
}

.payline-tag-right::after {
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border-right: 5px solid #ff3366;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* Payline glowing line overlay */
.payline-line {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: rgba(255, 51, 102, 0.35);
  box-shadow: 0 0 4px rgba(255, 51, 102, 0.3);
  z-index: 12;
  pointer-events: none;
  transition: all 0.3s ease;
}

.payline-line.active {
  background: #ff3366;
  box-shadow:
    0 0 12px #ff3366,
    0 0 24px #ff3366;
  height: 3px;
  animation: payline-flash 0.6s infinite alternate;
}

@keyframes payline-flash {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

/* Glass glare sheeting overlay */
.glass-glare-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 18;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.12) 20%,
      rgba(255, 255, 255, 0) 20.1%,
      rgba(255, 255, 255, 0) 42%,
      rgba(255, 255, 255, 0.05) 42.1%,
      rgba(255, 255, 255, 0.05) 48%,
      rgba(255, 255, 255, 0) 48.1%,
      rgba(255, 255, 255, 0) 100%);
  border-radius: 18px;
}

.reels-inner-container {
  display: flex;
  align-items: center;
  background: #000000;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 3px solid #111111;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.85);
}

/* Chrome separators between reel columns */
.reel-divider {
  width: 4px;
  height: 140px;
  background: var(--chrome-vertical);
  box-shadow:
    -1px 0 2px rgba(0, 0, 0, 0.8),
    1px 0 2px rgba(255, 255, 255, 0.4);
  z-index: 10;
  position: relative;
}

/* INDIVIDUAL REEL WINDOW */
.reel-window {
  flex: 1;
  height: 140px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* REEL STRIP */
.reel-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(0);
  will-change: transform;
}

.logo-item {
  height: 140px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  user-select: none;
  transition: filter 0.1s linear;
}

.logo-item svg,
.logo-image {
  width: 100%;
  height: 100%;
  max-width: 100px;
  max-height: 100px;
}

.logo-image {
  object-fit: contain;
}

.logo-item-fallback {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.2;
  color: #0d1b2a;
  text-align: center;
  padding: 12px;
}

/* 3D cylindrical shadow mask & glass reflection */
.reel-glass-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.2) 15%,
      rgba(255, 255, 255, 0.05) 45%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0.05) 55%,
      rgba(0, 0, 0, 0.2) 85%,
      rgba(0, 0, 0, 0.85) 100%);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.85);
  border-radius: 8px;
}

/* Reel spin blur class */
.reel-blur {
  filter: blur(4px) grayscale(0.2);
}

/* PROMOTION TEXT PANEL */
.promo-panel {
  width: 100%;
  margin-top: 22px;
  padding: 10px 10px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(0, 242, 254, 0.2);
  background: rgba(4, 9, 20, 0.6);
  position: relative;
  overflow: hidden;
}

.text-próximamente {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 5px;
  color: #ffffff;
  text-shadow: var(--neon-cyan-glow);
  margin-bottom: 2px;
  animation: neon-pulse-cyan 2.5s infinite alternate;
}

.text-sub-promo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2.5px;
  color: #e0e6ed;
  margin-bottom: 6px;
}

/* DISCOUNT BADGE */
.discount-badge-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.discount-value {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 4.8rem;
  color: var(--neon-yellow);
  text-shadow: var(--neon-yellow-glow);
  letter-spacing: -2px;
  animation: discount-pulse 1.5s infinite alternate;
}

.discount-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #ffffff;
  font-weight: 900;
  line-height: 1.1;
}

.text-de {
  font-size: 1.1rem;
  color: var(--neon-cyan);
  border-bottom: 2px solid var(--neon-cyan);
  padding-bottom: 2px;
  width: 100%;
}

.text-descuento {
  font-size: 1.55rem;
  letter-spacing: 0.5px;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* GREEN CAPSULE */
.capsule-btn-glow {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 30px;
  background: #000000;
  border: 2px solid var(--neon-green);
  box-shadow: var(--neon-green-glow);
  margin-bottom: 10px;
  position: relative;
}

.capsule-btn-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.8px;
  color: #ffffff;
}

.text-obligatoria {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: 6px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-top: 4px;
}

/* DIGITAL LCD DASHBOARD DISPLAY */
.lcd-dashboard {
  width: 95%;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: linear-gradient(180deg, #18202d 0%, #06090f 100%);
  border: 4px solid #000;
  border-radius: 12px;
  padding: 10px;
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.6),
    inset 0 0 10px rgba(0, 242, 254, 0.15);
  z-index: 10;
}

.lcd-screen {
  background: #060200;
  border: 2px solid #281d11;
  border-radius: 6px;
  padding: 6px 2px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.95);
}

.lcd-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  color: #ff9100;
  letter-spacing: 1.5px;
  margin-bottom: 2px;
  text-shadow: 0 0 3px rgba(255, 145, 0, 0.5);
  z-index: 3;
  position: relative;
}

.lcd-num {
  font-family: 'Courier New', Courier, monospace;
  font-weight: 900;
  font-size: 1.6rem;
  color: #ff3300;
  text-shadow:
    0 0 8px rgba(255, 51, 0, 0.9),
    0 0 16px rgba(255, 51, 0, 0.4);
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
  line-height: 1;
}

.lcd-bg-segments {
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 900;
  font-size: 1.6rem;
  color: rgba(255, 51, 0, 0.05);
  letter-spacing: 2px;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* SPIN BUTTON AREA */
.spin-btn-area {
  margin-top: 22px;
  position: relative;
  z-index: 10;
}

.system-status {
  min-height: 22px;
  margin-top: 12px;
  padding: 0 10px;
  text-align: center;
  color: #b8d8e8;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.system-status.visible {
  opacity: 1;
}

.player-session {
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 242, 254, 0.2);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: #d7edf7;
}

.player-session-name {
  font-weight: 700;
}

.player-session-spins {
  font-family: 'Rajdhani', sans-serif;
  color: var(--neon-cyan);
}

.registration-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 18, 0.86);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  padding: 18px;
}

.registration-card {
  width: min(520px, 100%);
  background: linear-gradient(180deg, #0e1a2d 0%, #08111d 100%);
  border: 2px solid rgba(0, 242, 254, 0.5);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.45);
}

.registration-card h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
}

.registration-card p {
  margin: 0 0 16px;
  color: #b7d5e6;
}

.registration-form {
  display: grid;
  gap: 12px;
}

.registration-field {
  display: grid;
  gap: 6px;
}

.registration-field label {
  font-size: 0.86rem;
  color: #c9e5f3;
}

.registration-field input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  padding: 10px 12px;
}

.registration-submit {
  margin-top: 6px;
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 800;
  color: #03121f;
  background: linear-gradient(135deg, #00f2fe 0%, #7effd4 100%);
  cursor: pointer;
}

.spin-btn-outer-ring {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0f0f0 0%, #303030 45%, #b0b0b0 55%, #151515 100%);
  padding: 8px;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.8),
    inset 0 -4px 6px rgba(0, 0, 0, 0.6),
    inset 0 4px 6px rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.spin-btn-core {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid var(--neon-cyan);
  background: radial-gradient(circle at 50% 30%, #009cb8 0%, #003a47 60%, #001217 100%);
  box-shadow:
    inset 0 6px 12px rgba(255, 255, 255, 0.45),
    inset 0 -6px 12px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(0, 242, 254, 0.6);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  outline: none;
  transition: all 0.15s ease;
  position: relative;
  overflow: hidden;
}

.spin-btn-core:disabled {
  cursor: not-allowed;
}

.spin-btn-outer-ring.is-disabled {
  opacity: 0.72;
  filter: grayscale(0.25);
}

/* Glass plastic dome reflection */
.spin-btn-core::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 15%;
  width: 70%;
  height: 30%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 50% / 100% 100% 0 0;
  pointer-events: none;
}

.spin-btn-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  line-height: 1.25;
  letter-spacing: 0.5px;
  text-shadow: 0 0 5px rgba(0, 242, 254, 0.8);
  position: relative;
  z-index: 5;
}

/* Button interactive effects */
.spin-btn-outer-ring:hover {
  transform: translateY(-2px);
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.85),
    0 0 25px rgba(0, 242, 254, 0.6);
}

.spin-btn-outer-ring:hover .spin-btn-core {
  background: radial-gradient(circle at 50% 30%, #00c3e6 0%, #004d5e 60%, #001b22 100%);
  box-shadow:
    inset 0 6px 12px rgba(255, 255, 255, 0.65),
    inset 0 -6px 12px rgba(0, 0, 0, 0.8),
    0 0 25px var(--neon-cyan);
}

.spin-btn-outer-ring:active {
  transform: translateY(2px);
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.8),
    0 0 10px rgba(0, 242, 254, 0.4);
}

.spin-btn-outer-ring:active .spin-btn-core {
  transform: scale(0.95);
  background: radial-gradient(circle at 50% 70%, #00222b 0%, #000c10 100%);
  box-shadow:
    inset 0 3px 8px rgba(0, 0, 0, 0.9),
    inset 0 -2px 3px rgba(255, 255, 255, 0.1),
    0 0 5px rgba(0, 242, 254, 0.3);
}

/* Pulse animation on wait state */
.spin-pulse {
  animation: button-pulse-glow 1.5s infinite;
}

/* ÉPIC MODE - Activado cuando está listo para jugar */
.spin-pulse.epic-mode {
  animation: epic-glow-pulse 1.2s infinite, color-shift 3s infinite !important;
}

/* Shake effect during spin */
.reels-outer-frame.spinning-mode {
  animation: epic-shake 0.5s ease-in-out infinite;
}

/* WINNING CELEBRATION - Botón punchea */
.spin-btn-outer-ring.winning-punch {
  animation: punch-impact 0.6s ease-out;
}

/* Winning reels container explosion */
.reels-outer-frame.winning-mode {
  animation: light-explosion 2s ease-out !important;
}

/* POPUP MODAL VOUCHER */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 7, 20, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.voucher-card {
  width: 90%;
  max-width: 440px;
  background: linear-gradient(135deg, #0f1c30 0%, #080f1b 100%);
  border: 3px solid var(--neon-cyan);
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  position: relative;
  box-shadow:
    0 20px 50px rgba(0, 242, 254, 0.3),
    inset 0 0 30px rgba(0, 242, 254, 0.05);
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.close-modal-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
}

.close-modal-btn:hover {
  color: #ffffff;
}

.voucher-header h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--neon-green);
  text-shadow: var(--neon-green-glow);
  margin-bottom: 5px;
}

.voucher-header p {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.voucher-logo {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
}

.voucher-logo-image {
  width: 200px;
  height: 50px;
  object-fit: contain;
}

.voucher-discount {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--neon-yellow);
  text-shadow: var(--neon-yellow-glow);
  margin-bottom: 5px;
}

.voucher-benefit {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: #f8fafc;
  max-width: 280px;
  margin: 0 auto 20px auto;
  line-height: 1.4;
}

.voucher-code-box {
  background: rgba(0, 0, 0, 0.5);
  border: 1px dashed var(--neon-cyan);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.code-label {
  font-size: 0.75rem;
  color: #94a3b8;
  letter-spacing: 1px;
}

.code-value {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--neon-cyan);
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
}

.voucher-terms {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 25px;
  line-height: 1.4;
}

.voucher-actions {
  display: flex;
  gap: 12px;
}

.action-btn {
  flex: 1;
  padding: 12px 10px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  outline: none;
}

.btn-print {
  background: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  color: #030712;
}

.btn-print:hover {
  background: #00cbd6;
  box-shadow: 0 0 15px var(--neon-cyan);
}

.btn-close {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.btn-close:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}

/* CONFETTI CANVAS */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  pointer-events: none;
  max-width: 100%;
}

/* ANIMATIONS */
@keyframes neon-pulse-cyan {
  0% {
    text-shadow: 0 0 5px rgba(0, 242, 254, 0.4), 0 0 10px rgba(0, 242, 254, 0.2);
  }

  100% {
    text-shadow: 0 0 12px rgba(0, 242, 254, 0.8), 0 0 22px rgba(0, 242, 254, 0.4), 0 0 35px rgba(0, 242, 254, 0.2);
  }
}

@keyframes discount-pulse {
  0% {
    transform: scale(0.98);
    text-shadow: 0 0 10px rgba(255, 208, 0, 0.6);
  }

  100% {
    transform: scale(1.02);
    text-shadow: 0 0 20px rgba(255, 208, 0, 0.9), 0 0 35px rgba(255, 208, 0, 0.4);
  }
}

@keyframes button-pulse-glow {
  0% {
    box-shadow: inset 0 0 12px rgba(0, 242, 254, 0.7), 0 0 10px rgba(0, 242, 254, 0.3);
  }

  50% {
    box-shadow: inset 0 0 16px rgba(0, 242, 254, 0.9), 0 0 20px rgba(0, 242, 254, 0.7);
  }

  100% {
    box-shadow: inset 0 0 12px rgba(0, 242, 254, 0.7), 0 0 10px rgba(0, 242, 254, 0.3);
  }
}

/* ===================================================
   ÉPIC ANIMATIONS - Enhanced Visual Effects
   =================================================== */

/* SHAKE / VIBRATION EFFECT — Ultra-smooth and subtle */
@keyframes epic-shake {
  0%   { transform: translateX(0) translateY(0); }
  12.5%  { transform: translateX(-1px) translateY(-0.5px); }
  25%  { transform: translateX(1px) translateY(0.5px); }
  37.5%  { transform: translateX(-1px) translateY(0.5px); }
  50%  { transform: translateX(1px) translateY(-0.5px); }
  62.5%  { transform: translateX(-0.5px) translateY(0); }
  75%   { transform: translateX(0.5px) translateY(0); }
  87.5%  { transform: translateX(0) translateY(0); }
  100% { transform: translateX(0) translateY(0); }
}

/* INTENSE LIGHT EXPLOSION */
@keyframes light-explosion {
  0% {
    box-shadow: 
      0 0 10px rgba(0, 242, 254, 0.3),
      0 0 20px rgba(0, 242, 254, 0.2);
  }
  25% {
    box-shadow: 
      0 0 20px rgba(0, 242, 254, 0.6),
      0 0 40px rgba(57, 255, 20, 0.5),
      0 0 60px rgba(255, 208, 0, 0.3),
      inset 0 0 20px rgba(0, 242, 254, 0.2);
  }
  50% {
    box-shadow: 
      0 0 40px rgba(0, 242, 254, 0.8),
      0 0 80px rgba(57, 255, 20, 0.7),
      0 0 120px rgba(255, 208, 0, 0.5),
      inset 0 0 40px rgba(0, 242, 254, 0.3);
  }
  100% {
    box-shadow: 
      0 0 10px rgba(0, 242, 254, 0.3),
      0 0 20px rgba(0, 242, 254, 0.2);
  }
}

/* PUNCH IMPACT - Compresión y expansión */
@keyframes punch-impact {
  0%   { transform: scale(1) scaleY(1); }
  25%  { transform: scale(0.97) scaleY(1.15); }
  50%  { transform: scale(1.02) scaleY(0.98); }
  100% { transform: scale(1) scaleY(1); }
}

/* SPIN ROTATION 3D DEL BOTÓN */
@keyframes spin-button-3d {
  0%   { transform: rotateX(0) rotateY(0) rotateZ(0) scale(1); perspective: 1000px; }
  25%  { transform: rotateX(10deg) rotateY(180deg) rotateZ(-10deg) scale(1.05); }
  50%  { transform: rotateX(-5deg) rotateY(360deg) rotateZ(5deg) scale(1.02); }
  75%  { transform: rotateX(8deg) rotateY(180deg) rotateZ(-8deg) scale(1.04); }
  100% { transform: rotateX(0) rotateY(360deg) rotateZ(0) scale(1); }
}

/* COLOR SHIFT DINÁMICO */
@keyframes color-shift {
  0%   { border-color: var(--neon-cyan); box-shadow: 0 0 20px rgba(0, 242, 254, 0.8), 0 0 40px rgba(0, 242, 254, 0.4); }
  33%  { border-color: var(--neon-green); box-shadow: 0 0 20px rgba(57, 255, 20, 0.8), 0 0 40px rgba(57, 255, 20, 0.4); }
  66%  { border-color: var(--neon-yellow); box-shadow: 0 0 20px rgba(255, 208, 0, 0.8), 0 0 40px rgba(255, 208, 0, 0.4); }
  100% { border-color: var(--neon-cyan); box-shadow: 0 0 20px rgba(0, 242, 254, 0.8), 0 0 40px rgba(0, 242, 254, 0.4); }
}

/* EPIC GLOW PULSE */
@keyframes epic-glow-pulse {
  0% {
    box-shadow: 
      0 0 10px rgba(0, 242, 254, 0.4),
      0 0 20px rgba(0, 242, 254, 0.2);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(0, 242, 254, 0.8),
      0 0 60px rgba(0, 242, 254, 0.4),
      0 0 90px rgba(57, 255, 20, 0.3);
  }
  100% {
    box-shadow: 
      0 0 10px rgba(0, 242, 254, 0.4),
      0 0 20px rgba(0, 242, 254, 0.2);
  }
}

/* WINNING LOGO SPIN */
@keyframes winning-logo-spin {
  0% { transform: rotateZ(0deg) scale(1); }
  25% { transform: rotateZ(90deg) scale(1.15); }
  50% { transform: rotateZ(180deg) scale(1.1); }
  75% { transform: rotateZ(270deg) scale(1.12); }
  100% { transform: rotateZ(360deg) scale(1); }
}

/* =============================================
   RESPONSIVE DESIGN - Full Device Coverage
   xs:  <360px  (tiny phones)
   sm:  360–480px (small phones)
   md:  481–768px (large phones / portrait tablets)
   lg:  769–1024px (landscape tablets)
   xl:  1025–1400px (small desktops)
   2xl: >1400px  (large desktops) — base styles
   ============================================= */

/* --- Large desktop (base default — already defined above) --- */

/* --- Small desktop / landscape tablet (≤1024px) --- */
@media (max-width: 1024px) {
  .slot-machine-container {
    max-width: 560px;
    padding: 20px 15px;
  }

  .sound-btn {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .admin-entry {
    top: 12px;
    left: 12px;
  }
}

/* --- Portrait tablet (≤768px) --- */
@media (max-width: 768px) {
  body {
    align-items: flex-start;
    padding: 20px 0 40px;
  }

  .slot-machine-container {
    max-width: 520px;
    padding: 15px 12px;
  }

  .header-board {
    width: 92%;
    padding: 6px 12px;
  }

  .header-logo-svg,
  .header-logo-image {
    width: 290px;
    height: 72px;
  }

  .header-pegs-container {
    gap: 70px;
    height: 18px;
  }

  .cabinet-body {
    padding: 26px 18px 22px 18px;
    border-radius: 36px;
  }

  .cabinet-pillar {
    width: 12px;
  }

  .reels-outer-frame {
    padding: 20px;
  }

  .reel-window {
    height: 130px;
  }

  .reel-divider {
    height: 130px;
  }

  .logo-item {
    height: 130px;
    padding: 8px;
  }

  .logo-item svg,
  .logo-image {
    max-width: 95px;
    max-height: 95px;
  }

  .lcd-dashboard {
    width: 97%;
    gap: 8px;
    padding: 8px;
  }

  .lcd-num {
    font-size: 1.4rem;
  }

  .text-próximamente {
    font-size: 2rem;
    letter-spacing: 4px;
  }

  .text-sub-promo {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .discount-value {
    font-size: 4.2rem;
    line-height: 4.2rem;
  }

  .text-descuento {
    font-size: 1.4rem;
  }

  .capsule-btn-text {
    font-size: 1rem;
  }

  .text-obligatoria {
    font-size: 1.3rem;
    letter-spacing: 5px;
  }

  .spin-btn-outer-ring {
    width: 108px;
    height: 108px;
  }
}

/* --- Large phone (≤600px) --- */
@media (max-width: 600px) {
  html {
    overflow-x: hidden;
  }

  body {
    width: 100%;
    overflow-x: hidden;
  }

  .sound-btn {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
  }

  .admin-entry {
    top: 10px;
    left: 10px;
    padding: 8px 12px;
    font-size: 0.72rem;
  }

  .sound-icon {
    width: 18px;
    height: 18px;
  }

  .slot-machine-container {
    max-width: 100%;
    padding: 12px 8px;
  }

  .header-board {
    width: 94%;
    border-width: 6px;
    padding: 6px 10px;
  }

  .header-logo-svg,
  .header-logo-image {
    width: 270px;
    height: 68px;
  }

  .header-pegs-container {
    gap: 60px;
    height: 16px;
  }

  .cabinet-body {
    padding: 22px 14px 18px 14px;
    border-radius: 30px;
  }

  .cabinet-pillar {
    width: 10px;
    top: 10px;
  }

  .reels-outer-frame {
    padding: 18px;
    border-width: 6px;
    border-radius: 20px;
  }

  .reel-window {
    height: 115px;
  }

  .reel-divider {
    width: 3px;
    height: 115px;
  }

  .logo-item {
    height: 115px;
    padding: 6px;
  }

  .logo-item svg,
  .logo-image {
    max-width: 84px;
    max-height: 84px;
  }

  .led-bulb {
    width: 6px;
    height: 6px;
  }

  .lcd-dashboard {
    width: 98%;
    margin-top: 12px;
    gap: 6px;
    padding: 7px;
  }

  .lcd-label {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }

  .lcd-num {
    font-size: 1.25rem;
    letter-spacing: 1px;
  }

  .promo-panel {
    margin-top: 16px;
    padding: 8px 8px;
  }

  .text-próximamente {
    font-size: 1.7rem;
    letter-spacing: 3px;
  }

  .text-sub-promo {
    font-size: 0.82rem;
    letter-spacing: 1.5px;
  }

  .discount-value {
    font-size: 3.8rem;
    line-height: 3.8rem;
  }

  .text-de {
    font-size: 1rem;
  }

  .text-descuento {
    font-size: 1.3rem;
  }

  .capsule-btn-text {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }

  .text-obligatoria {
    font-size: 1.2rem;
    letter-spacing: 4px;
  }

  .spin-btn-area {
    margin-top: 16px;
  }

  .spin-btn-outer-ring {
    width: 98px;
    height: 98px;
  }

  .spin-btn-text {
    font-size: 0.85rem;
  }
}

/* --- Small phone (≤480px) --- */
@media (max-width: 480px) {
  html {
    overflow-x: hidden;
  }

  body {
    width: 100%;
    overflow-x: hidden;
    padding: 12px 0 30px;
  }

  .sound-btn {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    z-index: 250;
  }

  .admin-entry {
    top: 8px;
    left: 8px;
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  .sound-icon {
    width: 16px;
    height: 16px;
  }

  .slot-machine-container {
    padding: 10px 6px;
  }

  .header-board {
    width: 95%;
    border-width: 5px;
    border-radius: 18px;
    padding: 5px 8px;
  }

  .header-logo-svg,
  .header-logo-image {
    width: 240px;
    height: 60px;
  }

  .header-neon-frame {
    top: -9px;
    left: -9px;
    right: -9px;
    bottom: -9px;
    border-width: 3px;
    border-radius: 24px;
  }

  .header-pegs-container {
    gap: 50px;
    height: 14px;
  }

  .header-peg {
    width: 10px;
    border-width: 2.5px;
  }

  .cabinet-body {
    padding: 18px 10px 16px 10px;
    border-radius: 26px;
  }

  .cabinet-pillar {
    width: 8px;
    top: 8px;
  }

  .reels-outer-frame {
    padding: 14px;
    border-width: 5px;
    border-radius: 16px;
  }

  .reel-window {
    height: 100px;
  }

  .reel-divider {
    width: 3px;
    height: 100px;
  }

  .logo-item {
    height: 100px;
    padding: 5px;
  }

  .logo-item svg,
  .logo-image {
    max-width: 72px;
    max-height: 72px;
  }

  .led-bulb {
    width: 5px;
    height: 5px;
  }

  .payline-tag {
    width: 14px;
    height: 14px;
    font-size: 9px;
  }

  .lcd-dashboard {
    margin-top: 10px;
    gap: 5px;
    padding: 6px;
  }

  .lcd-label {
    font-size: 0.55rem;
    letter-spacing: 0.8px;
  }

  .lcd-num {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }

  .lcd-bg-segments {
    font-size: 1.1rem;
  }

  .promo-panel {
    margin-top: 12px;
    padding: 7px 6px;
  }

  .text-próximamente {
    font-size: 1.45rem;
    letter-spacing: 2.5px;
  }

  .text-sub-promo {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .discount-value {
    font-size: 3.2rem;
    line-height: 3.2rem;
  }

  .text-de {
    font-size: 0.9rem;
  }

  .text-descuento {
    font-size: 1.15rem;
  }

  .capsule-btn-glow {
    padding: 5px 14px;
  }

  .capsule-btn-text {
    font-size: 0.78rem;
  }

  .text-obligatoria {
    font-size: 1rem;
    letter-spacing: 3px;
  }

  .spin-btn-area {
    margin-top: 14px;
  }

  .spin-btn-outer-ring {
    width: 88px;
    height: 88px;
    padding: 6px;
  }

  .spin-btn-text {
    font-size: 0.78rem;
  }
}

/* --- Tiny phone (≤360px) --- */
@media (max-width: 360px) {
  html {
    overflow-x: hidden;
  }

  body {
    width: 100%;
    overflow-x: hidden;
  }

  .sound-btn {
    top: 6px;
    right: 6px;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    z-index: 250;
  }

  .admin-entry {
    top: 6px;
    left: 6px;
    font-size: 0.64rem;
  }

  .sound-icon {
    width: 14px;
    height: 14px;
  }

  .header-logo-svg,
  .header-logo-image {
    width: 200px;
    height: 52px;
  }

  .header-pegs-container {
    gap: 40px;
  }

  .reels-outer-frame {
    padding: 12px;
  }

  .reel-window {
    height: 86px;
  }

  .reel-divider {
    width: 2px;
    height: 86px;
  }

  .logo-item {
    height: 86px;
    padding: 4px;
  }

  .logo-item svg,
  .logo-image {
    max-width: 60px;
    max-height: 60px;
  }

  .led-bulb {
    width: 4px;
    height: 4px;
  }

  .lcd-num {
    font-size: 0.95rem;
  }

  .discount-value {
    font-size: 2.6rem;
    line-height: 2.6rem;
  }

  .text-descuento {
    font-size: 0.95rem;
  }

  .text-próximamente {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }

  .text-obligatoria {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .capsule-btn-text {
    font-size: 0.7rem;
  }

  .spin-btn-outer-ring {
    width: 78px;
    height: 78px;
  }

  .spin-btn-text {
    font-size: 0.7rem;
  }
}

/* PRINT VOUCHER STYLES */
@media print {
  body * {
    visibility: hidden;
  }

  .modal-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ffffff !important;
    backdrop-filter: none;
    display: block;
  }

  .modal-overlay * {
    visibility: visible;
  }

  .voucher-card {
    border: 2px solid #000000 !important;
    background: #ffffff !important;
    color: #000000 !important;
    width: 100% !important;
    max-width: 500px !important;
    margin: 50px auto !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .close-modal-btn,
  .voucher-actions {
    display: none !important;
  }

  .voucher-header h3 {
    color: #000000 !important;
    text-shadow: none !important;
  }

  .voucher-header p {
    color: #555555 !important;
  }

  .voucher-logo svg text {
    fill: #000000 !important;
  }

  .voucher-logo-image {
    display: block !important;
    width: auto !important;
    max-width: 260px !important;
    max-height: 72px !important;
    height: auto !important;
    object-fit: contain !important;
    filter: none !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .voucher-logo {
    min-height: 72px !important;
    margin-bottom: 18px !important;
  }

  .voucher-logo svg {
    width: 220px !important;
    height: auto !important;
  }

  .voucher-logo svg g path {
    fill: #000000 !important;
  }

  .voucher-logo svg g circle {
    fill: #000000 !important;
  }

  .voucher-logo svg g circle[fill="#ffffff"] {
    fill: #ffffff !important;
  }

  .voucher-discount {
    color: #000000 !important;
    text-shadow: none !important;
  }

  .voucher-benefit {
    color: #000000 !important;
  }

  .voucher-code-box {
    background: #eeeeee !important;
    border: 1px dashed #000000 !important;
  }

  .code-value {
    color: #000000 !important;
    text-shadow: none !important;
  }

  .voucher-terms {
    color: #444444 !important;
  }
}

/* Accessibility and SEO helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}