/* Modern Esports Dashboard Theme */
:root {
  /* Theme Tokens */
  --background-dark: #050505;
  --background-matte: #0A0F0A;
  --background-panel: #080D08;
  --neon-green: #39FF14;
  --neon-glow-1: #00FF7F;
  --neon-glow-2: #00FFBF;
  --primary-text: #D0D0D0;
  --secondary-text: #A0A0A0;
  --muted-text: #707070;
  --card-radius: 20px;
  --transition-speed: 0.3s;
  --glow-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
  --glow-shadow-strong: 0 0 25px rgba(57, 255, 20, 0.6);
}

/* Prevent font scaling in landscape */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* Ensure proper sizing on mobile */
body {
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}

/* Disable problematic animations on mobile to prevent zooming issues */
@media (max-width: 768px) {
  .hero-section::before,
  .stat-card::before,
  .navbar {
    animation: none !important;
    will-change: auto !important;
  }
  
  .stat-card,
  .community-card,
  .card {
    transition: none !important;
    transform: none !important;
  }
  
  .stat-card:hover,
  .community-card:hover,
  .card:hover {
    transform: none !important;
  }
  
  /* Ensure consistent sizing across devices */
  .stat-card .display-4 {
    font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
  }
  
  .hero-section h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Disable problematic animations on mobile to prevent zooming issues */
@media (max-width: 768px) {
  .hero-section::before,
  .stat-card::before,
  .navbar {
    animation: none !important;
    will-change: auto !important;
  }
  
  .stat-card,
  .community-card,
  .card {
    transition: none !important;
    transform: none !important;
  }
  
  .stat-card:hover,
  .community-card:hover,
  .card:hover {
    transform: none !important;
  }
}

/* Body and Global Styles */
body.dashboard-page {
  background-color: var(--background-dark);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(57, 255, 20, 0.03) 0%, transparent 15%),
    radial-gradient(circle at 90% 80%, rgba(57, 255, 20, 0.02) 0%, transparent 15%);
  color: var(--primary-text);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  position: relative;
  will-change: auto;
}

/* Animated Background Particles */
.dashboard-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, var(--neon-glow-1), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.1), transparent),
    radial-gradient(1px 1px at 90px 40px, var(--neon-green), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.1), transparent),
    radial-gradient(2px 2px at 160px 30px, var(--neon-glow-2), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: particleAnimation 20s linear infinite;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
  will-change: auto;
}

@keyframes particleAnimation {
  0% { transform: translateY(0) rotate(0deg); will-change: auto; }
  100% { transform: translateY(-100px) rotate(360deg); will-change: auto; }
}

/* Navigation */
.navbar {
  background: rgba(8, 13, 8, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(57, 255, 20, 0.2);
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: navbarGlow 3s ease-in-out infinite alternate;
  will-change: auto;
}

@keyframes navbarGlow {
  0% { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5); will-change: auto; }
  100% { box-shadow: 0 5px 30px rgba(57, 255, 20, 0.3); will-change: auto; }
}

.navbar-brand img {
  filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.7));
  transition: filter var(--transition-speed);
  height: 45px;
}

.navbar-brand img:hover {
  filter: drop-shadow(0 0 15px rgba(57, 255, 20, 1));
}

.brand-text {
  font-weight: 700;
  font-size: 1.4rem;
  background: linear-gradient(90deg, var(--neon-glow-1) 0%, var(--neon-green) 60%, var(--neon-glow-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  text-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
}

/* Mobile-specific adjustments for brand text */
@media (max-width: 768px) {
  .brand-text {
    font-size: 1.2rem !important;
    letter-spacing: 0.5px !important;
  }
}

@media (max-width: 576px) {
  .brand-text {
    font-size: 1.1rem !important;
    letter-spacing: 0.3px !important;
  }
}

.nav-link {
  color: var(--secondary-text) !important;
  position: relative;
  transition: all var(--transition-speed);
  font-weight: 600;
  margin: 0 5px;
  padding: 10px 15px;
  border-radius: 8px;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.1), transparent);
  transition: 0.3s;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover, .nav-link.active {
  color: var(--neon-green) !important;
  background: rgba(57, 255, 20, 0.1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--neon-green);
  transition: width var(--transition-speed);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 60%;
}

/* Wallet Info */
.wallet-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(57, 255, 20, 0.1);
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-speed);
  color: var(--neon-green);
  border: 1px solid rgba(57, 255, 20, 0.3);
  box-shadow: var(--glow-shadow);
  position: relative;
  overflow: hidden;
}

.wallet-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.2), transparent);
  transition: 0.5s;
}

.wallet-info:hover::before {
  left: 100%;
}

.wallet-info:hover {
  background: rgba(57, 255, 20, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--glow-shadow-strong);
}

.wallet-info i {
  font-size: 1.3rem;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.wallet-info span {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

/* User Menu */
.dropdown-toggle {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: var(--primary-text) !important;
  border-radius: 25px;
  padding: 8px 15px !important;
  transition: all var(--transition-speed);
  position: relative;
  overflow: hidden;
}

.dropdown-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.2), transparent);
  transition: 0.5s;
}

.dropdown-toggle:hover::before {
  left: 100%;
}

.dropdown-toggle:hover {
  background: rgba(57, 255, 20, 0.1) !important;
  border-color: var(--neon-green) !important;
  color: var(--neon-green) !important;
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

.dropdown-menu {
  background: rgba(10, 15, 10, 0.95);
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: var(--card-radius);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-out;
}

.dropdown-item {
  color: var(--secondary-text);
  transition: all var(--transition-speed);
  border-radius: 5px;
  margin: 2px 10px;
  position: relative;
  overflow: hidden;
}

.dropdown-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.1), transparent);
  transition: 0.3s;
}

.dropdown-item:hover::before {
  left: 100%;
}

.dropdown-item:hover {
  background: rgba(57, 255, 20, 0.1);
  color: var(--neon-green);
}

.dropdown-item i {
  color: var(--neon-green);
  width: 20px;
  text-align: center;
}

/* Hero Section */
.hero-section {
  padding: 120px 0;
  background: linear-gradient(rgba(8, 13, 8, 0.9), rgba(8, 13, 8, 0.95)),
              url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
  color: var(--primary-text);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(57, 255, 20, 0.15);
  animation: fadeIn 1s ease-out;
  will-change: auto;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.08) 0%, transparent 70%);
  animation: rotate 25s linear infinite;
  z-index: 0;
  will-change: auto;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-weight: 800;
  font-size: 3.5rem;
  text-shadow: 0 0 25px rgba(57, 255, 20, 0.8);
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--neon-glow-1) 0%, var(--neon-green) 60%, var(--neon-glow-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1.5px;
  animation: textGlow 3s ease-in-out infinite alternate;
  will-change: auto;
}

.hero-section .lead {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--secondary-text);
  max-width: 700px;
  margin: 0 auto 2rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out 0.3s both;
  will-change: auto;
}

/* Game Badges */
.hero-features {
  animation: fadeInUp 1s ease-out 0.5s both;
}

.game-badge {
  font-size: 1.1rem;
  padding: 12px 24px;
  border-radius: 30px;
  transition: all var(--transition-speed);
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.4);
  color: var(--neon-green);
  margin: 8px;
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
  position: relative;
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
}

.game-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.3), transparent);
  transition: 0.5s;
}

.game-badge:hover::before {
  left: 100%;
}

.game-badge:hover {
  background: rgba(57, 255, 20, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(57, 255, 20, 0.5);
  color: var(--neon-green);
  text-decoration: none;
}

/* CTA Buttons */
.cta-buttons {
  animation: fadeInUp 1s ease-out 0.7s both;
}

.cta-buttons .btn {
  min-width: 200px;
  padding: 15px 30px;
  border-radius: 35px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all var(--transition-speed);
  margin: 15px;
  position: relative;
  overflow: hidden;
  border: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.cta-buttons .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.cta-buttons .btn:hover::before {
  left: 100%;
}

.cta-buttons .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.5);
}

.cta-buttons .btn:active {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(90deg, var(--neon-glow-1) 0%, var(--neon-green) 60%, var(--neon-glow-2) 100%) !important;
  color: #000 !important;
  animation: pulseGlow 3s infinite;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4) !important;
  color: var(--primary-text) !important;
  position: relative;
  overflow: hidden;
}

.btn-outline-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.2), transparent);
  transition: 0.5s;
}

.btn-outline-light:hover::before {
  left: 100%;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--neon-green) !important;
  color: var(--neon-green) !important;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

/* Admin Panel Section */
.admin-panel-section {
  background: linear-gradient(90deg, rgba(57, 255, 20, 0.15), rgba(0, 255, 127, 0.08)) !important;
  border-left: 3px solid var(--neon-green);
  animation: adminPanelGlow 3s ease-in-out infinite alternate;
  border-radius: 0 0 10px 0;
}

@keyframes adminPanelGlow {
  0% { box-shadow: 0 0 15px rgba(57, 255, 20, 0.3); }
  100% { box-shadow: 0 0 25px rgba(57, 255, 20, 0.5); }
}

.admin-panel-title {
  color: var(--neon-green) !important;
  text-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
  font-weight: 700;
}

.admin-panel-text {
  color: var(--primary-text) !important;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
  font-weight: 500;
}

.admin-panel-btn {
  border-radius: 25px;
  margin: 5px;
  font-weight: 600;
  transition: all var(--transition-speed);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  border: none;
}

.admin-panel-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

#adminPanelSection .btn {
  border-radius: 25px;
  margin: 5px;
  font-weight: 600;
  transition: all var(--transition-speed);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

#adminPanelSection .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Stats Section */
#stats-section {
  background: var(--background-matte);
  padding: 80px 0;
  position: relative;
  border-top: 1px solid rgba(57, 255, 20, 0.1);
  overflow: hidden;
}

#stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.05), transparent);
  transition: 0.5s;
}

#stats-section:hover::before {
  left: 100%;
}

.stat-card {
  background: rgba(8, 13, 8, 0.7);
  padding: 2rem;
  border-radius: var(--card-radius);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3),
              inset 0 0 20px rgba(57, 255, 20, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: 1px solid rgba(57, 255, 20, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  animation: fadeInUp 0.8s ease-out both;
  will-change: auto;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(8, 13, 8, 0.9);
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.3),
              inset 0 0 30px rgba(57, 255, 20, 0.2);
  border-color: rgba(57, 255, 20, 0.4);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.1) 0%, transparent 50%);
  animation: rotate 15s linear infinite;
  will-change: auto;
}

.stat-card i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--neon-green);
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.7);
  animation: iconPulse 2s infinite;
  will-change: auto;
}

.stat-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-text);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.stat-card .display-4 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(90deg, var(--neon-glow-1) 0%, var(--neon-green) 60%, var(--neon-glow-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
  will-change: auto;
}

/* Footer */
footer {
  background: rgba(5, 5, 5, 0.95);
  border-top: 1px solid rgba(57, 255, 20, 0.15);
  color: var(--secondary-text);
  padding: 40px 0 20px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.05), transparent);
  transition: 0.5s;
}

footer:hover::before {
  left: 100%;
}

.footer-brand {
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-tagline {
  color: var(--secondary-text);
  margin-bottom: 20px;
  font-size: 1rem;
}

.footer-social-icon {
  font-size: 1.4rem;
  color: var(--secondary-text);
  margin: 0 10px;
  transition: all var(--transition-speed);
  text-shadow: 0 0 5px transparent;
  position: relative;
  overflow: hidden;
}

.footer-social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.2), transparent);
  transition: 0.3s;
}

.footer-social-icon:hover::before {
  left: 100%;
}

.footer-social-icon:hover {
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.6);
  transform: translateY(-3px);
}

.footer-divider {
  background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
  height: 1px;
  border: none;
  margin: 25px 0;
  opacity: 0.3;
}

.footer-link {
  color: var(--secondary-text);
  margin: 0 15px;
  transition: all var(--transition-speed);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.footer-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.1), transparent);
  transition: 0.3s;
}

.footer-link:hover::before {
  left: 100%;
}

.footer-link:hover {
  color: var(--neon-green);
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--neon-green);
  transition: width var(--transition-speed);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-copyright {
  color: var(--muted-text);
  font-size: 0.9rem;
  margin: 0;
}

/* Animations */
@keyframes rotate {
  from {
    transform: rotate(0deg);
    will-change: auto;
  }
  to {
    transform: rotate(360deg);
    will-change: auto;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
    will-change: auto;
  }
  50% {
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.7);
    will-change: auto;
  }
  100% {
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
    will-change: auto;
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
    will-change: auto;
  }
  50% {
    box-shadow: 0 0 35px rgba(57, 255, 20, 0.8);
    will-change: auto;
  }
  100% {
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
    will-change: auto;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    will-change: auto;
  }
  to {
    opacity: 1;
    will-change: auto;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
    will-change: auto;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
  }
}

@keyframes textGlow {
  0% {
    filter: brightness(1) drop-shadow(0 0 10px rgba(57, 255, 20, 0.5));
    will-change: auto;
  }
  100% {
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(57, 255, 20, 0.8));
    will-change: auto;
  }
}

@keyframes iconPulse {
  0% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
    will-change: auto;
  }
  50% {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.8);
    will-change: auto;
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
    will-change: auto;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .stat-card {
    padding: 1.5rem;
  }
  
  .stat-card .display-4 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section .lead {
    font-size: 1.2rem;
  }
  
  .stat-card .display-4 {
    font-size: 2.2rem;
  }
  
  .game-badge {
    font-size: 1rem;
    padding: 10px 20px;
    margin: 5px;
  }
  
  .cta-buttons .btn {
    min-width: 160px;
    padding: 12px 25px;
    font-size: 1rem;
    margin: 10px 5px;
  }
  
  .wallet-info {
    padding: 8px 15px;
  }
  
  .wallet-info span {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .stat-card {
    padding: 1.2rem;
  }
  
  .stat-card .display-4 {
    font-size: 1.8rem;
  }
  
  .game-badge {
    font-size: 0.9rem;
    padding: 8px 15px;
    margin: 3px;
  }
  
  .cta-buttons .btn {
    width: 100%;
    margin: 10px 0;
  }
  
  .footer-link {
    display: block;
    margin: 10px 0;
  }
}