


.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.5s;
}

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


.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}


.reveal-grid > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-grid.active > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-grid.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-grid.active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-grid.active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-grid.active > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-grid.active > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-grid.active > *:nth-child(6) { transition-delay: 0.6s; }


.slot-cabinet {
  border: 4px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  background: radial-gradient(circle at center, #1b2035 0%, #06070b 100%);
  box-shadow: var(--shadow-glow-gold);
  position: relative;
  overflow: hidden;
}

.slot-reels-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  background: #05060a;
  border-radius: var(--radius-sm);
  padding: 10px;
  border: 2px solid #000;
  overflow: hidden;
  position: relative;
  height: 240px; 
}


.slot-reels-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.03) 100%);
  pointer-events: none;
}


.slot-win-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-cyan);
  box-shadow: var(--shadow-glow-cyan);
  opacity: 0;
  z-index: 10;
  transform: translateY(-50%);
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.slot-win-line.active {
  animation: pulse-win-line 1.5s infinite alternate;
}

@keyframes pulse-win-line {
  0% { opacity: 0.2; }
  100% { opacity: 0.9; }
}

.reel {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.reel-strip {
  display: flex;
  flex-direction: column;
  transition: transform 0s ease-out;
}

.reel-symbol {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.02);
  user-select: none;
  font-size: 2.2rem;
  background: #0a0d16;
  position: relative;
}


.reel-symbol.win-highlight::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border: 2px solid var(--accent-gold);
  border-radius: 4px;
  box-shadow: 0 0 15px var(--accent-gold-glow);
  animation: pulse-win-symbol 0.8s infinite alternate;
  pointer-events: none;
}

@keyframes pulse-win-symbol {
  0% { border-color: rgba(201, 168, 76, 0.4); box-shadow: 0 0 5px rgba(201, 168, 76, 0.2); }
  100% { border-color: rgba(201, 168, 76, 1); box-shadow: 0 0 20px rgba(201, 168, 76, 0.8); }
}


.reel-spinning {
  animation: spin-reel 2.5s cubic-bezier(0.25, 0.1, 0.1, 1.0) forwards;
}

.reel-spinning-0 { animation-duration: 2.0s; }
.reel-spinning-1 { animation-duration: 2.3s; }
.reel-spinning-2 { animation-duration: 2.6s; }
.reel-spinning-3 { animation-duration: 2.9s; }
.reel-spinning-4 { animation-duration: 3.2s; }

@keyframes spin-reel {
  0% { transform: translateY(0); }
  30% { transform: translateY(-50px); } 
  100% { transform: translateY(-1600px); } 
}


.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
  margin: 2rem 0;
}

.ticker {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker-move 35s linear infinite;
  gap: 4rem;
  padding-left: 100%;
}

.ticker:hover {
  animation-play-state: paused;
}

.ticker-item {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}

.ticker-item::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  transform: rotate(45deg);
}

@keyframes ticker-move {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}


@keyframes glow-pulse {
  0% {
    border-color: var(--border-subtle);
    box-shadow: 0 0 5px rgba(0, 212, 255, 0.05);
  }
  100% {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow-cyan);
  }
}

.pulse-border {
  animation: glow-pulse 3s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}


.particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}


.diagonal-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: 
    linear-gradient(45deg, rgba(201, 168, 76, 0.02) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center;
  z-index: 2;
}


.glow-bullet-list {
  list-style: none;
}

.glow-bullet-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.glow-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow-cyan);
  border-radius: 50%;
}
