/* ═══════════════════════════════════════════════════════════
   🎨 GLEDEK88 RTP WEBSITE - STYLESHEET (REVISED)
   ═══════════════════════════════════════════════════════════
   
   REVISI:
   - Header TIDAK STICKY (scroll hilang)
   - Game card tampilkan RTP + Bar + Nama
   - Tambah lampu indikator (🟢🟡🔴)
   
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════
   1. RESET & BASE STYLES
   ═══════════════════════════════════════ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-primary: #1E40AF;
  --color-secondary: #F59E0B;
  --color-bg-dark: #0F172A;
  --color-bg-card: #1E293B;
  --color-text: #F1F5F9;
  --color-text-secondary: #CBD5E1;
  
  /* RTP Colors */
  --color-rtp-green: #10B981;
  --color-rtp-yellow: #F59E0B;
  --color-rtp-red: #EF4444;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.2);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.3);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.4);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--color-bg-dark);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Background Image Overlay */
.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* REVISI: Gradient 5 warna vertikal */
  background: linear-gradient(
    180deg,
    #090c25a8 0%,      /* Biru gelap (atas) */
    #0d123fb2 25%,     /* Biru abu-abu */
    #08115ef2 50%,     /* Abu-abu tengah */
    #0e1449f2 75%,     /* Biru abu-abu */
    #0f1b8af2 100%     /* Biru gelap (bawah) */
  );
  z-index: -1;
}


/* ═══════════════════════════════════════
   2. LAYOUT & CONTAINER
   ═══════════════════════════════════════ */

.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-md);
  padding-top: 0;
}

/* ═══════════════════════════════════════
   3. HEADER SECTION (TIDAK STICKY - REVISI!)
   ═══════════════════════════════════════ */

.header {
  background: linear-gradient(180deg, 
    #060713f2 0%, 
    #0c156bbd 100%
  );
  backdrop-filter: blur(10px);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  /* REVISI: HAPUS position: sticky */
  position: relative;
  z-index: 100;
}

/* Logo */
.logo-container {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.logo {
  max-width: 200px;
  height: auto;
  transition: transform var(--transition-normal);
}

.logo:hover {
  transform: scale(1.05);
}

/* Banner */
.banner-container {
  text-align: center;
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  border-radius: var(--radius-md);
}

.banner {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Login Buttons */
.login-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}

.btn-login {
  padding: 0.75rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-block;
}

.btn-login-1 {
  background: var(--color-primary);
  color: white;
}

.btn-login-1:hover {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-login-2 {
  background: var(--color-secondary);
  color: white;
}

.btn-login-2:hover {
  background: transparent;
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Live Time */
.live-time {
  text-align: center;
  padding: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.time-value {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
}

/* Back Button */
.back-button {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 999;
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-lg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.back-button:hover {
  background: var(--color-secondary);
  transform: translateX(-5px);
}

.back-button svg {
  width: 20px;
  height: 20px;
}

/* ═══════════════════════════════════════
   4. PROVIDER SLIDER
   ═══════════════════════════════════════ */

.provider-section {
  margin-bottom: var(--spacing-xl);
}

.provider-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  max-width: 1200px;
  margin: 0 auto;
}

.provider-slider {
  display: flex;
  gap: var(--spacing-md);
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: var(--spacing-sm) 0;
  flex: 1;
}

.provider-slider::-webkit-scrollbar {
  display: none;
}

.provider-item {
  flex: 0 0 auto;
  width: 120px;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
}

.provider-item img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  padding: var(--spacing-sm);
  border: 2px solid transparent;
  transition: all var(--transition-normal);
}

.provider-item:hover img {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.provider-item.active img {
  transform: scale(1.15);
  box-shadow: 0 0 20px var(--color-secondary);
  border-color: var(--color-secondary);
  background: rgba(245, 158, 11, 0.1);
}

/* Slider Buttons */
.slider-btn {
  background: var(--color-primary);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
  color: white;
  flex-shrink: 0;
}

.slider-btn:hover {
  background: var(--color-secondary);
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.slider-btn:active {
  transform: scale(0.95);
}

.slider-btn svg {
  width: 24px;
  height: 24px;
}

/* ═══════════════════════════════════════
   5. GAMES GRID (REVISI - TAMPILKAN RTP!)
   ═══════════════════════════════════════ */

.games-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.provider-games-section {
  animation: fadeIn var(--transition-normal);
}

.section-header {
  /* ⭐ REVISI: Pakai gradient dari config (5 warna) */
  background: var(--header-gradient, linear-gradient(90deg, 
    var(--color-primary) 0%, 
    var(--color-secondary) 100%
  ));
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacing-md);
}

/* REVISI: Game Card dengan RTP Display */
.game-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-card);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  z-index: 10;
}

.game-card-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.game-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-normal);
}

.game-card:hover .game-card-image {
  transform: scale(1.05);
}

/* REVISI: Game Info Section (Nama + RTP + Button) */
.game-card-info {
  padding: var(--spacing-sm);
  background: var(--color-bg-card);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.game-card-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  line-height: 1.3;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* REVISI: RTP Display di Card */
.game-card-rtp {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.game-card-rtp-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.rtp-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px currentColor;
}

.rtp-indicator.green {
  background: var(--color-rtp-green);
  color: var(--color-rtp-green);
}

.rtp-indicator.yellow {
  background: var(--color-rtp-yellow);
  color: var(--color-rtp-yellow);
}

.rtp-indicator.red {
  background: var(--color-rtp-red);
  color: var(--color-rtp-red);
}

.rtp-percentage {
  color: var(--color-text);
  font-weight: 700;
}

.rtp-status-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.rtp-status-text.green {
  color: var(--color-rtp-green);
}

.rtp-status-text.yellow {
  color: var(--color-rtp-yellow);
}

.rtp-status-text.red {
  color: var(--color-rtp-red);
}

/* REVISI: RTP Bar di Card */
.game-card-rtp-bar-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.game-card-rtp-bar {
  flex: 1;
  height: 8px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.game-card-rtp-fill {
  height: 100%;
  transition: all var(--transition-slow);
  border-radius: var(--radius-sm);
  position: relative;
}

.game-card-rtp-fill.green {
  background: var(--color-rtp-green);
}

.game-card-rtp-fill.yellow {
  background: var(--color-rtp-yellow);
}

.game-card-rtp-fill.red {
  background: var(--color-rtp-red);
}

.game-card-rtp-value {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text);
  min-width: 35px;
  text-align: right;
}

/* Button Pola Main */
.btn-pola {
  background: var(--color-secondary);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
  margin-top: 0.25rem;
}

.btn-pola:hover {
  background: var(--color-primary);
  transform: scale(1.05);
}

/* Loading Placeholder */
.game-card-loading {
  background: linear-gradient(135deg, 
    var(--color-primary) 0%, 
    var(--color-secondary) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  aspect-ratio: 1;
}

/* ═══════════════════════════════════════
   6. MODAL/POP-UP
   ═══════════════════════════════════════ */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  animation: fadeIn var(--transition-normal);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: slideUp var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1001;
}

.modal-close {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: white;
  z-index: 10;
}

.modal-close:hover {
  background: var(--color-rtp-red);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 24px;
  height: 24px;
}

.modal-body {
  padding: var(--spacing-lg);
}

.modal-game-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: var(--radius-md);
  margin: 0 auto var(--spacing-md);
  display: block;
  box-shadow: var(--shadow-md);
}

.modal-game-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

/* ═══════════════════════════════════════
   7. RTP BAR (Modal)
   ═══════════════════════════════════════ */

.rtp-container {
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rtp-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-sm);
  font-size: 0.875rem;
  font-weight: 600;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rtp-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary);
}

.rtp-status {
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rtp-status.gacor {
  background: var(--color-rtp-green);
  color: white;
}

.rtp-status.normal {
  background: var(--color-rtp-yellow);
  color: white;
}

.rtp-status.rungkad {
  background: var(--color-rtp-red);
  color: white;
}

.rtp-bar {
  width: 100%;
  height: 24px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.rtp-fill {
  height: 100%;
  transition: all var(--transition-slow);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.rtp-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255,255,255,0.3) 50%, 
    transparent 100%
  );
  animation: shimmer 2s infinite;
}

.rtp-fill.green {
  background: var(--color-rtp-green);
}

.rtp-fill.yellow {
  background: var(--color-rtp-yellow);
}

.rtp-fill.red {
  background: var(--color-rtp-red);
}

/* ═══════════════════════════════════════
   8. POLA SECTION
   ═══════════════════════════════════════ */

.pola-section,
.tips-section {
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pola-title,
.tips-title {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pola-divider,
.tips-divider {
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--color-secondary) 50%, 
    transparent 100%
  );
  margin: var(--spacing-sm) 0;
}

.pola-content {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text);
  white-space: pre-line;
}

.pola-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.pola-row:last-child {
  margin-bottom: 0;
}

.pola-spin {
  font-weight: 600;
  color: var(--color-secondary);
}

.pola-type {
  font-weight: 500;
  color: var(--color-text);
}

.pola-symbols {
  font-size: 1rem;
  letter-spacing: 0.25rem;
}

.tips-list {
  list-style: none;
  padding: var(--spacing-sm) 0;
}

.tips-list li {
  padding: 0.5rem 0;
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Play Button */
.btn-play {
  display: block;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(90deg, 
    var(--color-primary) 0%, 
    var(--color-secondary) 100%
  );
  color: white;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(90deg, 
    var(--color-secondary) 0%, 
    var(--color-primary) 100%
  );
}

/* ═══════════════════════════════════════
   9. FOOTER
   ═══════════════════════════════════════ */

.footer {
  text-align: center;
  padding: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  margin: 0;
}

/* ═══════════════════════════════════════
   10. LOADING OVERLAY
   ═══════════════════════════════════════ */

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--color-secondary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* ═══════════════════════════════════════
   11. RESPONSIVE DESIGN
   ═══════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .provider-item {
    width: 100px;
  }
  
  .provider-item img {
    height: 100px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
  }
  
  .header {
    padding: var(--spacing-sm);
  }
  
  .logo {
    max-width: 150px;
  }
  
  .banner {
    max-width: 100%;
  }
  
  .login-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .btn-login {
    width: 100%;
    padding: 0.75rem 1.5rem;
  }
  
  .time-label {
    font-size: 0.75rem;
  }
  
  .time-value {
    font-size: 0.875rem;
  }
  
  .back-button {
    top: 10px;
    left: 10px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  
  .provider-slider-container {
    gap: 0.5rem;
  }
  
  .provider-item {
    width: 80px;
  }
  
  .provider-item img {
    height: 80px;
  }
  
  .slider-btn {
    width: 32px;
    height: 32px;
  }
  
  .slider-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
  }
  
  .section-header h2 {
    font-size: 1.125rem;
  }
  
  .game-card-title {
    font-size: 0.75rem;
    min-height: 2.4em;
  }
  
  .game-card-rtp-text {
    font-size: 0.75rem;
  }
  
  .rtp-indicator {
    width: 8px;
    height: 8px;
  }
  
  .rtp-status-text {
    font-size: 0.65rem;
  }
  
  .game-card-rtp-bar {
    height: 6px;
  }
  
  .game-card-rtp-value {
    font-size: 0.65rem;
    min-width: 30px;
  }
  
  .btn-pola {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
  
  .modal-content {
    max-width: 95%;
    margin: var(--spacing-sm);
  }
  
  .modal-body {
    padding: var(--spacing-md);
  }
  
  .modal-game-image {
    max-width: 200px;
  }
  
  .modal-game-title {
    font-size: 1rem;
  }
  
  .rtp-value {
    font-size: 1rem;
  }
  
  .rtp-status {
    font-size: 0.75rem;
  }
  
  .pola-title,
  .tips-title {
    font-size: 1rem;
  }
  
  .pola-content {
    font-size: 0.75rem;
  }
  
  .btn-play {
    font-size: 1rem;
    padding: 0.875rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .provider-item {
    width: 70px;
  }
  
  .provider-item img {
    height: 70px;
  }
  
  .game-card-title {
    font-size: 0.7rem;
  }
  
  .game-card-rtp-text {
    font-size: 0.7rem;
  }
}

/* ═══════════════════════════════════════
   12. ANIMATIONS
   ═══════════════════════════════════════ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ═══════════════════════════════════════
   13. UTILITY CLASSES
   ═══════════════════════════════════════ */

.hidden {
  display: none !important;
}

.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

.slide-up {
  animation: slideUp 0.3s ease-in-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Selection */
::selection {
  background: var(--color-secondary);
  color: white;
}

::-moz-selection {
  background: var(--color-secondary);
  color: white;
}

/* Focus Styles */
*:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════
   END OF STYLESHEET
   ═══════════════════════════════════════ */