* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

@keyframes premium-glow {
  0%, 100% { 
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.4), 0 0 60px rgba(255, 184, 0, 0.2); 
  }
  50% { 
    box-shadow: 0 0 40px rgba(255, 184, 0, 0.6), 0 0 80px rgba(255, 184, 0, 0.3); 
  }
}

.animate-premium-glow { 
  animation: premium-glow 3s ease-in-out infinite; 
}

@keyframes urgent-flicker {
  0%, 100% { 
    color: #ff6b00; 
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.8); 
  }
  50% { 
    color: #ff3d00; 
    text-shadow: 0 0 15px rgba(255, 61, 0, 1); 
  }
}

.animate-urgent-flicker { 
  animation: urgent-flicker 1.5s ease-in-out infinite; 
}

@keyframes live-pulse {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1); 
  }
  50% { 
    opacity: 0.7; 
    transform: scale(1.1); 
  }
}

.animate-live-pulse { 
  animation: live-pulse 2s ease-in-out infinite; 
}

.hover-lift { 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}

.hover-lift:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 25px rgba(255, 184, 0, 0.5), 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: #FFB800 !important;
}

.leaderboard-row { 
  transition: all 0.2s ease; 
}

.leaderboard-row:hover {
  background: rgba(255, 184, 0, 0.1);
  box-shadow: 0 0 20px rgba(255, 184, 0, 0.3);
}

/* Desktop Featured Cards */
.featured-slider {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 24px;
}

.featured-slider::-webkit-scrollbar { 
  height: 8px; 
}

.featured-slider::-webkit-scrollbar-track { 
  background: #1a1a1a; 
  border-radius: 4px; 
}

.featured-slider::-webkit-scrollbar-thumb { 
  background: #FFB800; 
  border-radius: 4px; 
}

.featured-card {
  scroll-snap-align: center;
  flex-shrink: 0;
  min-width: 800px;
}

.featured-layout {
  display: flex;
  flex-direction: row;
}

.featured-image-container {
  flex: 0 0 300px;
  aspect-ratio: 1/1;
}

.featured-content-area {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .featured-card {
    min-width: 90vw;
  }
  
  .featured-layout {
    flex-direction: column;
    height: auto;
  }
  
  .featured-image-container {
    flex: none;
    width: 100%;
    height: 300px;
    aspect-ratio: auto;
  }
  
  .featured-image-container img {
    border-radius: 1rem 1rem 0 0 !important;
    object-fit: cover;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content { 
  animation: slideUp 0.3s ease-out; 
}

@keyframes slideUp {
  from { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

.glass-morphism {
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 184, 0, 0.3);
}

.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(16, 185, 129, 0.95);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 2000;
  animation: slideUp 0.3s ease-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.clickable-quote {
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 184, 0, 0.15);
  border: 1px solid rgba(255, 184, 0, 0.3);
  transition: all 0.2s;
  display: inline-block;
  margin: 0 2px;
}

.clickable-quote:hover {
  background: rgba(255, 184, 0, 0.25);
  border-color: rgba(255, 184, 0, 0.5);
  transform: scale(1.05);
}

.requirements-area { 
  min-height: 150px; 
}

.button-floor { 
  margin-top: auto; 
}