.cash-alternative {
    color: #F6B118;
    height:30px;
    font-size:14px;
    font-weight:600;
}

.cash-alternative-empty {
    color: #F6B118;
    height:30px;
    font-size:14px;
    font-weight:600;
}

.automated_draw {
    color: #222222;
	background-color: #2EA2CC;
    font-size: 14px!important;
    font-weight:800!important;
    height:25px!important;
	text-align: center;
	display: flex;
    align-items: center;
    justify-content: center;
	box-shadow:
      -2px 0 4px rgba(0, 0, 0, 0.2),
       2px 0 4px rgba(0, 0, 0, 0.2),
       0 2px 4px rgba(0, 0, 0, 0.2);
}
    
.competition_type {
    width: 50%;
    margin: -50px auto 0 0; /* changed 'auto' from right to left */
    background-color: #D4AF37;
    color: #222222;
    font-weight: 600;
    font-size: 14px !important;
    height: 25px;
    line-height: 25px;
    border-top-right-radius: 8px; /* flipped these */
    border-bottom-right-radius: 8px;
    display: block;
    padding-left: 10px;
}

.custom_text {
    font-size: 12px !important;
    font-weight: 600;
    z-index: 175;
    height: 30px !important;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #2EA2CC;
	position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #222222 !important;
    padding: 0 12px;
	box-shadow: 
      0 2px 6px rgba(0, 0, 0, 0.5),   /* soft downward shadow */
      0 0 4px rgba(0, 0, 0, 0.3);     /* subtle glow around */
}


.gold-text {
    font-size: 20px;
    font-weight: bold;
    font-family: "Tilt Neon", Sans-serif;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.8), 
                 0 0 10px rgba(255, 140, 0, 0.6), 
                 0 0 15px rgba(255, 140, 0, 0.5);
}

.wcl-progress-meter {
    position: relative;
    margin-top: 2em;
    margin-bottom: 2em;
    width: 100%;
}

.progress-bar-wrapper {
    position: relative;
    width: 100%;
}

progress {
    width: 100%;
    height: 30px;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    border-radius: 6px;
    overflow: hidden;
    background-color: #eee;
}

progress::-webkit-progress-bar {
    background-color: #eee;
}

progress::-webkit-progress-value {
    background-color: #3c9;
}

.progress-icon {
    position: absolute;
    top: 45%;
    transform: translate(-50%, -50%);
    font-size: 2.5em; /* make it bigger */
    pointer-events: none;
    z-index: 2;
}

.progress-details {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5em;
    font-size: 14px;
    color: #333;
}

.ticket-info {
	flex: 1;
    text-align: left;
	color:#000;
	font-weight:600;
}

.tickets-sold {
    flex: 1;
    text-align: right;
	color:#000;
	font-weight:600;
}

.counter-value {
    font-size: 2em;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin: 0.5em 0;
}

.lottery-draw-info {
    background: #f9f9f9;
    padding: 1em;
    border-left: 4px solid #1a8f49;
    font-size: 16px;
    line-height: 1.6;
	color:#000;
}

.lottery-draw-info strong {
    color: #1a8f49;
}

.winner {
	color: #1a8f49;
}

.prize {
	color: #1a8f49;
}

.ticket {
	color: #1a8f49;
}

.mytoast3 {
  position: relative;
  background: #0a0a28;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 0 10px #aaccff, 0 0 30px #6688cc; /* Glow */
}

/* Flashing lightning effect overlay */
.mytoast3::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0;
  pointer-events: none;
  animation: lightningFlashes 6s infinite;
  z-index: 0;
  mix-blend-mode: screen;
}

/* Actual lightning animation flashes */
@keyframes lightningFlashes {
  0%, 4%, 100% {
    opacity: 0;
  }

  5% {
    opacity: 0.9;
  }

  5.2% {
    opacity: 0;
  }

  18% {
    opacity: 0.7;
  }

  18.3% {
    opacity: 0;
  }

  55% {
    opacity: 0.8;
  }

  55.1% {
    opacity: 0;
  }

  80% {
    opacity: 0.5;
  }

  80.2% {
    opacity: 0;
  }
}

.instant-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.instant-slider-track {
  display: inline-flex;
  white-space: nowrap;
  animation: iw-slide 30s linear infinite;
}

.instant-slider-container:hover .instant-slider-track {
  animation-play-state: paused;
}

.instant-slider-item {
  flex: 0 0 auto;
  padding: 0 2em;
  font-size: 1rem;
  line-height: 2rem;
  border-right: 1px solid #ddd;
}

@keyframes iw-slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
