/* ===========================
   SKYPRO GAMING — style.css
   COMPLETE + MOBILE RESPONSIVE
=========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #050816;
  color: white;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
}

/* ===========================
   CURSOR GLOW
=========================== */
.cursor-glow {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,140,255,0.12) 0%, transparent 70%);
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.05s linear;
  mix-blend-mode: screen;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #008cff;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 14px rgba(0,140,255,0.9), 0 0 28px rgba(0,140,255,0.4);
  transition: transform 0.08s ease;
}

/* ===========================
   ANIMATED BACKGROUND
=========================== */
.bg-animation {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

#bgCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.bg-gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(157, 77, 255, 0.22) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 80%, rgba(0, 140, 255, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(5, 8, 22, 0.3) 0%, transparent 70%),
    radial-gradient(ellipse at 40% 70%, rgba(0, 200, 150, 0.08) 0%, transparent 40%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 140, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 140, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(157, 77, 255, 0.25), transparent 70%);
  top: -100px; left: -100px;
  animation-duration: 14s; animation-delay: 0s;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 140, 255, 0.2), transparent 70%);
  bottom: 10%; right: -80px;
  animation-duration: 10s; animation-delay: -4s;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0, 200, 150, 0.12), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 18s; animation-delay: -8s;
}

@keyframes orbFloat {
  0% { transform: translate(0px, 0px) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(20px, 20px) scale(1.02); }
  100% { transform: translate(0px, 0px) scale(1); }
}

.bubbles-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -120px;
  border-radius: 50%;
  animation: bubbleRise linear infinite;
  opacity: 0;
}

@keyframes bubbleRise {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  80% { opacity: 0.6; }
  100% { transform: translateY(-110vh) translateX(var(--drift)) scale(0.7); opacity: 0; }
}

/* ===========================
   NAVBAR
=========================== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(5, 8, 22, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 140, 255, 0.1);
}

.navbar {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.logo img {
  width: 90px;
  filter: drop-shadow(0 0 15px rgba(0, 140, 255, 0.5));
  transition: 0.4s;
}

.logo img:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 25px rgba(0, 140, 255, 0.9));
}

.logo-text-fallback {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #008cff;
  text-shadow: 0 0 20px rgba(0, 140, 255, 0.6);
  align-items: center;
  gap: 6px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 26px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 2px;
  background: #008cff;
  border-radius: 2px;
  transition: 0.3s;
}

.nav-links a:hover { color: #008cff; }
.nav-links a:hover::after { width: 100%; }

.nav-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.login-btn, .signup-btn, .music-btn {
  padding: 9px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
}

.music-btn {
  background: transparent;
  border: 1px solid rgba(0, 140, 255, 0.25);
  color: #008cff;
  padding: 9px 12px;
  font-size: 16px;
}

.music-btn:hover {
  background: rgba(0,140,255,0.1);
  border-color: #008cff;
  transform: translateY(-2px);
}

.login-btn {
  background: transparent;
  border: 1px solid rgba(0, 140, 255, 0.3);
  color: white;
}

.login-btn:hover {
  border-color: #008cff;
  background: rgba(0, 140, 255, 0.08);
  transform: translateY(-3px);
}

.signup-btn {
  background: linear-gradient(135deg, #008cff, #0055cc);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 140, 255, 0.35);
}

.signup-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 140, 255, 0.5);
}

.menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
  transition: 0.3s;
  user-select: none;
  line-height: 1;
}

.menu-btn:hover { color: #008cff; }

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 140px 10% 90px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  filter: blur(2px) saturate(1.5);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,8,22,0.9) 40%, rgba(5,8,22,0.7));
}

.hero-content {
  flex: 1;
  animation: fadeUp 1s ease forwards;
  position: relative;
  z-index: 2;
}

.small-text {
  color: #008cff;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 11px;
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(0, 140, 255, 0.25);
  border-radius: 50px;
  background: rgba(0, 140, 255, 0.06);
  margin-bottom: 10px;
  animation: fadeUp 1s ease 0.1s both;
}

.hero-content h1 {
  font-size: 80px;
  line-height: 1;
  margin: 16px 0;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  animation: fadeUp 1s ease 0.2s both;
}

.hero-content h1 span {
  color: #008cff;
  text-shadow: 0 0 40px rgba(0, 140, 255, 0.5);
}

.hero-content p {
  color: rgba(207, 207, 207, 0.85);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 24px;
  font-size: 15px;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  animation: fadeUp 1s ease 0.35s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hstat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #008cff;
  text-shadow: 0 0 20px rgba(0,140,255,0.5);
}

.hstat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(0,140,255,0.2);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  animation: fadeUp 1s ease 0.4s both;
}

.primary-btn, .secondary-btn {
  padding: 13px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.primary-btn {
  background: linear-gradient(135deg, #008cff, #0055cc);
  color: white;
  box-shadow: 0 6px 28px rgba(0, 140, 255, 0.4);
}

.primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 140, 255, 0.55);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(8px);
}

.secondary-btn:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 140, 255, 0.5);
  background: rgba(0, 140, 255, 0.08);
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 1s ease 0.2s both;
  z-index: 2;
}

.hero-img-border {
  position: absolute;
  inset: -3px;
  border-radius: 33px;
  background: linear-gradient(135deg, rgba(0, 140, 255, 0.5), rgba(157, 77, 255, 0.3), transparent 60%);
  z-index: 1;
}

.hero-image img {
  width: 100%;
  border-radius: 30px;
  animation: floatImage 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
  display: block;
}

.hero-glow {
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, #008cff, transparent 70%);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(1.1); }
}

/* ===========================
   SECTION BASE
=========================== */
section { padding: 90px 10%; }

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title > span {
  color: #008cff;
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 600;
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(0, 140, 255, 0.25);
  border-radius: 50px;
  background: rgba(0, 140, 255, 0.06);
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 38px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
}

.section-title h2 span {
  color: #008cff;
  text-shadow: 0 0 30px rgba(0, 140, 255, 0.4);
}

/* ===========================
   GAMES GRID
=========================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.game-card {
  background: #0b1020;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  position: relative;
  border: 1px solid rgba(0, 140, 255, 0.07);
  cursor: pointer;
}

.game-card:hover {
  box-shadow: 0 0 35px rgba(0, 140, 255, 0.2), 0 0 60px rgba(157, 77, 255, 0.1);
  border-color: rgba(0, 140, 255, 0.2);
}

.game-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

.game-card:hover img { transform: scale(1.06); }

.game-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(11, 16, 32, 0.97), transparent);
  pointer-events: none;
}

.game-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  z-index: 2;
}

.game-info h3 {
  font-size: 18px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

.game-info p {
  color: #008cff;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===========================
   POPULAR CATEGORIES
=========================== */
.categories-section { background: transparent; }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.category-card {
  background: linear-gradient(145deg, #0d1428, #0b1020);
  border: 1px solid rgba(0, 140, 255, 0.1);
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cat-glow {
  position: absolute;
  top: -50px; left: 50%;
  transform: translateX(-50%);
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(0, 140, 255, 0.12), transparent 70%);
  pointer-events: none;
  transition: 0.4s;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 140, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 140, 255, 0.12);
}

.cat-icon {
  font-size: 40px;
  margin-bottom: 14px;
  display: block;
  color: #008cff;
  line-height: 1;
}

.cat-icon .ti { font-size: 40px; }

.category-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.category-card p {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

/* ===========================
   LIVE STREAMING
=========================== */
.live-section { padding: 90px 10%; }

.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.live-card {
  background: #0b1020;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
}

.live-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,60,60,0.3);
  box-shadow: 0 12px 40px rgba(255,60,60,0.15);
}

.live-thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.live-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.live-card:hover .live-thumb img { transform: scale(1.08); }

.live-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,16,32,0.9) 0%, transparent 60%);
}

.live-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: #ff3c3c;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,60,60,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(255,60,60,0); }
}

.live-dot {
  width: 7px; height: 7px;
  background: white;
  border-radius: 50%;
  animation: dotBlink 1s ease-in-out infinite;
}

.online-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: #00e676;
  border-radius: 50%;
  margin-right: 4px;
  animation: dotBlink 1s ease-in-out infinite;
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.viewer-count {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(6px);
}

.live-info {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.streamer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #008cff;
  flex-shrink: 0;
}

.streamer-avatar img { width: 100%; height: 100%; object-fit: cover; }

.live-meta { flex: 1; }
.live-meta h4 { font-size: 14px; font-weight: 600; }
.live-meta p { font-size: 11px; color: rgba(255,255,255,0.5); }

.watch-btn {
  background: #008cff;
  color: white;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: 0.3s;
}

.watch-btn:hover {
  background: white;
  color: #008cff;
  transform: scale(1.04);
}

/* ===========================
   TOURNAMENT SECTION
=========================== */
.tournament-section {
  padding: 90px 8%;
  position: relative;
}

.tournament-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 50px;
}

.tournament-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(14, 20, 40, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s ease;
  backdrop-filter: blur(12px);
}

.tournament-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 35px rgba(0, 140, 255, 0.35);
}

.tournament-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.tournament-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.tournament-card:hover img { transform: scale(1.08); }

.tournament-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: #008cff;
  color: white;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
}

.tournament-content { padding: 20px; }

.tournament-content h3 {
  color: white;
  font-size: 16px;
  margin-bottom: 10px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

.tournament-content p {
  color: #c5d1e8;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.countdown-timer {
  background: rgba(0, 140, 255, 0.06);
  border: 1px solid rgba(0, 140, 255, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
}

.ct-label {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ct-boxes {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ct-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ct-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #008cff;
  line-height: 1;
}

.ct-unit {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}

.ct-sep {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  color: #008cff;
  opacity: 0.5;
  padding-bottom: 12px;
}

.tournament-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.prize-box {
  background: rgba(0, 140, 255, 0.15);
  color: #008cff;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.prize-box .ti { font-size: 15px; }

.tournament-bottom button {
  background: #008cff;
  color: white;
  border: none;
  padding: 9px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tournament-bottom button:hover {
  background: white;
  color: #008cff;
}

/* ===========================
   LEADERBOARD
=========================== */
.leaderboard-section { padding: 90px 8%; }

.leaderboard-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.lb-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.lb-tab {
  background: rgba(0,140,255,0.06);
  border: 1px solid rgba(0,140,255,0.15);
  color: rgba(255,255,255,0.6);
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

.lb-tab.active, .lb-tab:hover {
  background: #008cff;
  border-color: #008cff;
  color: white;
}

.lb-table {
  background: rgba(11,16,32,0.9);
  border: 1px solid rgba(0,140,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.lb-header {
  display: grid;
  grid-template-columns: 80px 1fr 120px 80px 110px;
  padding: 14px 20px;
  background: rgba(0,140,255,0.07);
  border-bottom: 1px solid rgba(0,140,255,0.1);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.lb-row {
  display: grid;
  grid-template-columns: 80px 1fr 120px 80px 110px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: center;
  transition: 0.3s;
}

.lb-row:last-child { border-bottom: none; }

.lb-row:hover {
  background: rgba(0,140,255,0.05);
}

.lb-gold { background: rgba(255, 200, 0, 0.04); }
.lb-silver { background: rgba(180, 180, 200, 0.04); }
.lb-bronze { background: rgba(200, 120, 60, 0.04); }

.rank-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 20px;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.rank-badge.gold {
  background: rgba(255,200,0,0.15);
  color: #ffc800;
  border: 1px solid rgba(255,200,0,0.3);
}

.rank-badge.silver {
  background: rgba(180,180,200,0.15);
  color: #c0c0d0;
  border: 1px solid rgba(180,180,200,0.3);
}

.rank-badge.bronze {
  background: rgba(200,120,60,0.15);
  color: #c87840;
  border: 1px solid rgba(200,120,60,0.3);
}

.rank-badge.normal {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
}

.lb-player {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lb-player img {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(0,140,255,0.3);
}

.lb-player strong { font-size: 14px; font-weight: 600; display: block; }
.lb-player small { font-size: 11px; color: rgba(255,255,255,0.45); }

.lb-game {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.val-tag { background: rgba(255,70,70,0.15); color: #ff4646; border: 1px solid rgba(255,70,70,0.2); }
.fort-tag { background: rgba(100,200,255,0.15); color: #64c8ff; border: 1px solid rgba(100,200,255,0.2); }
.pubg-tag { background: rgba(255,160,0,0.15); color: #ffa000; border: 1px solid rgba(255,160,0,0.2); }
.cod-tag { background: rgba(0,200,100,0.15); color: #00c864; border: 1px solid rgba(0,200,100,0.2); }

.lb-wins {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: white;
}

.lb-earn {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #00c864;
}

/* ===========================
   EARN SECTION
=========================== */
.earn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.earn-card {
  background: linear-gradient(145deg, #0d1428, #0b1020);
  border: 1px solid rgba(0, 140, 255, 0.1);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.earn-card-glow {
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0, 140, 255, 0.12), transparent 70%);
  pointer-events: none;
  transition: 0.4s;
}

.earn-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 140, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 140, 255, 0.15);
}

.earn-card:hover .earn-card-glow {
  background: radial-gradient(circle, rgba(0, 140, 255, 0.25), transparent 70%);
}

.icon {
  font-size: 44px;
  margin-bottom: 20px;
  display: block;
  color: #008cff;
  filter: drop-shadow(0 0 15px rgba(0, 140, 255, 0.4));
  line-height: 1;
}

.icon .ti { font-size: 44px; color: #008cff; }
.earn-card h3 { margin-bottom: 12px; font-size: 18px; font-family: 'Orbitron', sans-serif; font-weight: 700; }
.earn-card p { color: rgba(207, 207, 207, 0.8); line-height: 1.7; font-size: 14px; }

/* ===========================
   GAMING NEWS
=========================== */
.news-section {
  padding: 90px 8%;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.news-small-grid {
  display: contents;
}

.news-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: 0.4s;
  height: 340px;
}

.news-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,140,255,0.3);
  box-shadow: 0 12px 40px rgba(0,140,255,0.15);
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.news-card:hover img {
  transform: scale(1.08);
}

.news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(5,8,22,0.95) 20%,
    rgba(5,8,22,0.3) 60%,
    transparent 100%);
}

.news-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.news-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 14px;
  background: #ff3c3c;
  color: white;
}

.news-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.news-content p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 14px;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.read-more {
  color: #008cff;
  text-decoration: none;
  font-weight: 600;
}

/* ===========================
   STATS
=========================== */
.stats-section-wrapper { padding: 50px 10%; }

.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  background: linear-gradient(135deg, rgba(0, 140, 255, 0.06), rgba(157, 77, 255, 0.04));
  border: 1px solid rgba(0, 140, 255, 0.12);
  border-radius: 24px;
  padding: 44px 36px;
}

.stat-box {
  text-align: center;
  transition: 0.3s;
  position: relative;
}

.stat-box:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%; width: 1px;
  background: rgba(0, 140, 255, 0.15);
}

.stat-box h2 {
  font-size: 44px;
  font-family: 'Orbitron', sans-serif;
  color: #008cff;
  font-weight: 900;
  text-shadow: 0 0 30px rgba(0, 140, 255, 0.5);
  margin-bottom: 6px;
}

.stat-box p {
  color: rgba(207, 207, 207, 0.75);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.stat-box:hover h2 { text-shadow: 0 0 50px rgba(0, 140, 255, 0.8); }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section { padding: 90px 8%; }

.testimonials-slider-wrap {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 22px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  background: linear-gradient(145deg, #0d1428, #0b1020);
  border: 1px solid rgba(0,140,255,0.1);
  border-radius: 20px;
  padding: 30px;
  min-width: calc(33.33% - 15px);
  flex-shrink: 0;
  transition: 0.4s;
}

.testimonial-card:hover {
  border-color: rgba(0,140,255,0.25);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,140,255,0.12);
}

.testi-stars {
  color: #ffc800;
  font-size: 18px;
  margin-bottom: 14px;
}

.testimonial-card p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(0,140,255,0.3);
}

.testi-author strong { font-size: 14px; display: block; }
.testi-author small { font-size: 11px; color: rgba(255,255,255,0.45); }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: 0.3s;
}

.testi-dot.active {
  background: #008cff;
  width: 24px;
  border-radius: 4px;
}

/* ===========================
   SPONSORS
=========================== */
.sponsors-section { padding: 70px 8%; }

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
}

.sponsor-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  cursor: pointer;
  filter: grayscale(1) brightness(0.6);
}

.sponsor-card:hover {
  filter: grayscale(0) brightness(1);
  border-color: rgba(0,140,255,0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,140,255,0.1);
}

.sponsor-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
}

/* ===========================
   DOWNLOAD APP
=========================== */
.app-section {
  padding: 90px 8%;
  display: flex;
  align-items: center;
  gap: 60px;
}

.app-content { flex: 1; }

.app-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin: 14px 0 18px;
}

.app-content h2 span {
  color: #008cff;
  text-shadow: 0 0 30px rgba(0,140,255,0.4);
}

.app-content p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 30px;
  font-size: 15px;
}

.app-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.app-btn:hover {
  background: rgba(0,140,255,0.1);
  border-color: rgba(0,140,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,140,255,0.15);
}

.app-btn .ti { font-size: 28px; color: #008cff; }
.app-btn small { font-size: 10px; color: rgba(255,255,255,0.5); display: block; }
.app-btn strong { font-size: 15px; font-weight: 700; }

.app-mockup {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-frame {
  width: 240px;
  height: 480px;
  background: linear-gradient(145deg, #0d1428, #060c1c);
  border: 2px solid rgba(0,140,255,0.25);
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 60px rgba(0,140,255,0.2), inset 0 0 30px rgba(0,0,0,0.5);
  animation: floatImage 5s ease-in-out infinite;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #050816;
  padding: 20px 14px;
  overflow: hidden;
}

.phone-screen-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ps-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ps-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #008cff;
}

.ps-notif {
  width: 28px; height: 28px;
  background: rgba(0,140,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #008cff;
}

.ps-banner {
  background: linear-gradient(135deg, rgba(0,140,255,0.15), rgba(157,77,255,0.1));
  border: 1px solid rgba(0,140,255,0.15);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
}

.ps-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ff3c3c;
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 4px;
}

.ps-banner p { font-size: 11px; color: rgba(255,255,255,0.6); }

.ps-stats-row {
  display: flex;
  gap: 8px;
}

.ps-stat {
  flex: 1;
  background: rgba(0,140,255,0.07);
  border: 1px solid rgba(0,140,255,0.1);
  border-radius: 10px;
  padding: 8px;
  text-align: center;
}

.ps-stat strong { font-family: 'Orbitron', sans-serif; font-size: 12px; display: block; color: #008cff; }
.ps-stat small { font-size: 9px; color: rgba(255,255,255,0.4); }

.ps-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 10px 12px;
}

.ps-card-tag {
  display: inline-block;
  background: #008cff;
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 700;
  margin-bottom: 4px;
}

.ps-card p { font-size: 11px; font-weight: 600; }
.ps-card span { font-size: 10px; color: #00c864; font-weight: 700; }

.phone-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,140,255,0.25), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite;
}

/* ===========================
   FOOTER
=========================== */
.gaming-footer {
  position: relative;
  padding: 80px 8% 36px;
  background: #090024;
  overflow: hidden;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
}

.footer-logo { width: 120px; margin-bottom: 24px; }
.footer-box p { color: #d8d8d8; line-height: 1.8; font-size: 14px; }
.footer-box h2 { color: white; font-size: 20px; margin-bottom: 28px; font-family: 'Orbitron', sans-serif; }
.footer-contact h4 { color: #b040ff; margin-bottom: 8px; font-size: 14px; display: flex; align-items: center; gap: 6px; }
.footer-contact p { margin-bottom: 24px; font-size: 14px; }

.social-icons { display: flex; gap: 14px; margin-top: 28px; }

.social-icons a {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 20px;
  transition: 0.3s ease;
}

.social-icons a:nth-child(1) { background: #3b5998; }
.social-icons a:nth-child(2) { background: #ea4c89; }
.social-icons a:nth-child(3) { background: #ff0000; }
.social-icons a:nth-child(4) { background: #1da1f2; }
.social-icons a:hover { transform: translateY(-5px); }

.winner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.winner-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  padding: 8px;
  transition: 0.3s ease;
}

.winner-card:hover { transform: scale(1.06); border-color: #008cff; }
.winner-card img { width: 100%; border-radius: 12px; display: block; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 16px; }

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: #008cff; padding-left: 6px; }
.footer-links a .ti { font-size: 14px; color: #008cff; }

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: #bcbcbc;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-policy { display: flex; align-items: center; gap: 14px; }

.footer-policy a {
  text-decoration: none;
  color: #bcbcbc;
  font-size: 12px;
  transition: 0.3s;
  letter-spacing: 0.5px;
}

.footer-policy a:hover { color: #008cff; }

/* ===========================
   CHATBOT WIDGET
=========================== */
.chatbot-widget {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9000;
}

.chatbot-bubble {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #008cff, #0055cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,140,255,0.5);
  transition: 0.3s;
  position: relative;
}

.chatbot-bubble:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(0,140,255,0.7); }

.chat-pulse {
  position: absolute;
  top: -3px; right: -3px;
  width: 16px; height: 16px;
  background: #ff3c3c;
  border-radius: 50%;
  animation: chatPulse 1.5s ease-in-out infinite;
}

@keyframes chatPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,60,60,0.5); }
  50% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(255,60,60,0); }
}

.chatbot-box {
  position: absolute;
  bottom: 72px; right: 0;
  width: 320px;
  background: #0b1020;
  border: 1px solid rgba(0,140,255,0.15);
  border-radius: 20px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: chatSlideUp 0.3s ease;
}

.chatbot-box.open { display: flex; }

@keyframes chatSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(0,140,255,0.15), rgba(0,80,200,0.1));
  border-bottom: 1px solid rgba(0,140,255,0.1);
}

.chat-header-info { display: flex; align-items: center; gap: 10px; }

.chat-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #008cff, #0055cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.chat-header-info strong { font-size: 14px; display: block; }
.chat-header-info small { font-size: 11px; color: rgba(255,255,255,0.5); display: flex; align-items: center; }

.chat-close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 18px;
  transition: 0.2s;
  padding: 4px;
}

.chat-close:hover { color: white; transform: rotate(90deg); }

.chat-messages {
  padding: 16px;
  flex: 1;
  max-height: 240px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(0,140,255,0.3); border-radius: 2px; }

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
}

.bot-msg {
  background: rgba(0,140,255,0.1);
  border: 1px solid rgba(0,140,255,0.15);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.user-msg {
  background: linear-gradient(135deg, #008cff, #0055cc);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-quick-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cq-btn {
  background: rgba(0,140,255,0.08);
  border: 1px solid rgba(0,140,255,0.2);
  color: #008cff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  font-family: 'Poppins', sans-serif;
}

.cq-btn:hover {
  background: #008cff;
  color: white;
}

.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.chat-input-row input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 14px;
  color: white;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: 0.2s;
}

.chat-input-row input:focus { border-color: rgba(0,140,255,0.4); background: rgba(0,140,255,0.06); }
.chat-input-row input::placeholder { color: rgba(255,255,255,0.3); }

#chatSend {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #008cff, #0055cc);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  flex-shrink: 0;
}

#chatSend:hover { transform: scale(1.08); box-shadow: 0 4px 16px rgba(0,140,255,0.4); }

/* ===========================
   ANIMATIONS
=========================== */
@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0px); }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(35px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px rgba(0,140,255,0.3); }
  50% { box-shadow: 0 0 25px rgba(0,140,255,0.7); }
  100% { box-shadow: 0 0 10px rgba(0,140,255,0.3); }
}

@keyframes glowText {
  from { text-shadow: 0 0 10px rgba(0,140,255,0.2); }
  to { text-shadow: 0 0 25px rgba(0,140,255,0.8); }
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-page {
  min-height: 100vh;
  padding: 150px 10% 80px;
  display: flex;
  align-items: center;
  position: relative;
}

.contact-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: center;
}

.contact-info h1 {
  font-size: 70px;
  line-height: 1;
  margin: 20px 0;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
}

.contact-info h1 span {
  color: #008cff;
  text-shadow: 0 0 30px rgba(0,140,255,0.4);
}

.contact-info p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  font-size: 15px;
  max-width: 500px;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 18px;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}

.contact-box:hover {
  transform: translateY(-5px);
  border-color: rgba(0,140,255,0.4);
  box-shadow: 0 0 30px rgba(0,140,255,0.15);
}

.contact-box i {
  font-size: 30px;
  color: #008cff;
  flex-shrink: 0;
}

.contact-box h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-box p { margin: 0; font-size: 14px; }

.contact-form-box {
  background: rgba(11,16,32,0.9);
  border: 1px solid rgba(0,140,255,0.1);
  padding: 40px;
  border-radius: 24px;
  backdrop-filter: blur(14px);
}

.input-group { margin-bottom: 22px; }

.input-group input,
.input-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  outline: none;
  padding: 16px 18px;
  border-radius: 14px;
  color: white;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
}

.input-group textarea {
  height: 150px;
  resize: none;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #008cff;
  box-shadow: 0 0 20px rgba(0,140,255,0.2);
}

.contact-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #008cff, #0055cc);
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.contact-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,140,255,0.35);
}

/* ===========================
   ABOUT PAGE
=========================== */
.about-page {
  min-height: 100vh;
  padding: 150px 10% 80px;
  display: flex;
  align-items: center;
  position: relative;
}

.about-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 70px;
  align-items: center;
}

.about-image { position: relative; }

.about-image img {
  width: 100%;
  border-radius: 28px;
  position: relative;
  z-index: 2;
}

.about-glow {
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, #008cff, transparent 70%);
  filter: blur(100px);
  opacity: 0.25;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.about-content h1 {
  font-size: 68px;
  line-height: 1;
  margin: 20px 0;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
}

.about-content h1 span {
  color: #008cff;
  text-shadow: 0 0 30px rgba(0,140,255,0.4);
}

.about-content p {
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 35px;
}

.about-box {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px;
  border-radius: 18px;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}

.about-box:hover {
  transform: translateY(-5px);
  border-color: rgba(0,140,255,0.4);
  box-shadow: 0 0 30px rgba(0,140,255,0.15);
}

.about-box i { font-size: 30px; color: #008cff; flex-shrink: 0; }
.about-box h3 { font-size: 18px; margin-bottom: 4px; }
.about-box p { margin: 0; font-size: 14px; }

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
  padding: 15px 28px;
  border-radius: 14px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  background: linear-gradient(135deg, #008cff, #0055cc);
  transition: 0.3s;
}

.about-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,140,255,0.35);
}

/* ===========================
   FEATURED GAMES PAGE
=========================== */
.featured-games-section { padding: 100px 8%; }

.featured-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.featured-game-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(11,16,32,0.92);
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.4s ease;
  animation: fadeUp 1s ease;
}

.featured-game-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(0,140,255,0.4);
  box-shadow: 0 0 40px rgba(0,140,255,0.18);
}

.featured-game-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s;
  display: block;
}

.featured-game-card:hover img { transform: scale(1.08); }

.featured-game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,8,22,0.96) 15%, rgba(5,8,22,0.3) 60%, transparent 100%);
}

.featured-game-info {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 24px;
  z-index: 5;
}

.featured-game-info h3 {
  font-size: 24px;
  margin-bottom: 14px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

.game-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

.players-online {
  color: #00bfff;
  font-size: 13px;
  margin-bottom: 20px;
}

.featured-game-info button {
  width: 100%;
  border: none;
  padding: 13px;
  border-radius: 14px;
  background: linear-gradient(135deg, #008cff, #0055cc);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;
}

.featured-game-info button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,140,255,0.35);
}

.game-rank {
  position: absolute;
  top: 18px; left: 18px;
  width: 50px; height: 50px;
  background: #008cff;
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 10;
  font-family: 'Orbitron', sans-serif;
  animation: pulseGlow 2s infinite;
}

/* ===========================
   AUTH PAGES
=========================== */
.auth-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 16px 40px;
  position: relative;
}

.auth-box {
  width: 100%;
  max-width: 420px;
  background: rgba(10,15,30,0.92);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  padding: 28px 28px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0,140,255,0.12);
  margin: auto 0;
}

.auth-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,140,255,0.08), transparent, rgba(0,140,255,0.04));
  pointer-events: none;
}

.auth-logo {
  text-align: center;
  margin-bottom: 14px;
}

.auth-logo img { width: 90px; }

.auth-box .small-text {
  display: block;
  text-align: center;
  color: #008cff;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.auth-box h1 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 22px;
  font-family: 'Orbitron', sans-serif;
  line-height: 1.2;
}

.auth-box h1 span { color: #008cff; }

.auth-input {
  position: relative;
  margin-bottom: 14px;
}

.auth-input i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #008cff;
  font-size: 18px;
}

.auth-input input {
  width: 100%;
  height: 48px;
  padding: 0 16px 0 50px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: white;
  outline: none;
  font-size: 14px;
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;
}

.auth-input input:focus {
  border-color: #008cff;
  box-shadow: 0 0 20px rgba(0,140,255,0.2);
}

.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  flex-wrap: wrap;
  gap: 8px;
}

.auth-options label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.auth-options a { color: #008cff; text-decoration: none; }

.auth-btn {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #008cff, #0055cc);
  color: white;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;
}

.auth-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,140,255,0.35);
}

.auth-divider {
  text-align: center;
  margin: 18px 0;
  position: relative;
}

.auth-divider::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 100%; height: 1px;
  background: rgba(255,255,255,0.08);
}

.auth-divider span {
  position: relative;
  background: rgba(10,15,30,1);
  padding: 0 14px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

.social-login { display: flex; gap: 12px; }

.social-login button {
  flex: 1;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: white;
  cursor: pointer;
  transition: 0.3s;
  font-size: 13px;
}

.social-login button:hover {
  border-color: #008cff;
  transform: translateY(-4px);
}

.auth-switch {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.auth-switch a {
  color: #008cff;
  text-decoration: none;
  font-weight: 600;
}

.nav-buttons a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   PHONE INPUT
=========================== */
.phone-box { width: 100%; }
.iti { width: 100%; }

.iti input {
  width: 100% !important;
  height: 48px !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 14px !important;
  color: white !important;
  padding-left: 90px !important;
  font-size: 14px;
  outline: none;
}

.iti input::placeholder { color: rgba(255,255,255,0.5); }
.iti__selected-flag { padding-left: 18px !important; }

.iti__country-list {
  background: #09101f !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  color: white !important;
  border-radius: 14px !important;
  margin-top: 10px;
  max-height: 220px;
}

.iti__country { padding: 12px 14px !important; }
.iti__country:hover { background: rgba(0,140,255,0.15) !important; }
.iti__dial-code { color: #00bfff !important; }
.iti__selected-dial-code { color: white !important; }
.iti__country-name { color: white !important; }
.iti__search-input {
  background: #111827 !important;
  color: white !important;
  border: none !important;
  outline: none !important;
}

.iti {
  width: 100%;
  position: relative;
}

.iti__country-list {
  top: 100% !important;
  bottom: auto !important;
  margin-top: 10px !important;
}

/* ===================================================
   RESPONSIVE — TABLET (max-width: 1024px)
=================================================== */
@media (max-width: 1024px) {

  .hero-content h1 { font-size: 64px; }

  .news-grid { grid-template-columns: 1fr; }
  .news-small-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .testimonial-card { min-width: calc(50% - 11px); }

  .app-section { flex-direction: column; text-align: center; }
  .app-content p { max-width: 100%; }
  .app-buttons { justify-content: center; }
  .app-mockup { margin-top: 20px; }
  .phone-frame { width: 200px; height: 400px; }

  .lb-header, .lb-row {
    grid-template-columns: 70px 1fr 100px 70px 90px;
  }

  .contact-info h1 { font-size: 56px; }
  .about-content h1 { font-size: 56px; }

  .featured-games-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

}

/* ===================================================
   RESPONSIVE — SMALL TABLET / LARGE MOBILE (max-width: 900px)
=================================================== */
@media (max-width: 900px) {

  /* NAVBAR */
  .nav-links {
    position: absolute;
    top: 70px;
    right: -100%;
    width: 220px;
    background: rgba(11, 16, 32, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 140, 255, 0.15);
    flex-direction: column;
    padding: 20px;
    border-radius: 16px;
    transition: 0.4s;
    gap: 16px;
    z-index: 999;
  }

  .nav-links.active { right: 16px; }
  .nav-buttons { gap: 6px; }
  .nav-buttons .login-btn { display: none; }
  .menu-btn { display: block; }

  /* HERO */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 6% 70px;
    gap: 36px;
  }

  .hero-content h1 { font-size: 52px; }
  .hero-content p { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { width: 100%; max-width: 480px; }

  /* SECTIONS */
  section { padding: 70px 6%; }
  .section-title h2 { font-size: 28px; }
  .tournament-section { padding: 70px 6%; }
  .leaderboard-section { padding: 70px 6%; }
  .news-section { padding: 70px 6%; }
  .testimonials-section { padding: 70px 6%; }
  .sponsors-section { padding: 50px 6%; }
  .app-section { padding: 70px 6%; }
  .stats-section-wrapper { padding: 40px 6%; }
  .featured-games-section { padding: 80px 6%; }

  /* STATS */
  .stat-box:not(:last-child)::after { display: none; }
  .stats-section { padding: 32px 20px; }
  .stat-box h2 { font-size: 36px; }

  /* LEADERBOARD */
  .lb-header, .lb-row {
    grid-template-columns: 60px 1fr 90px 60px 90px;
    font-size: 11px;
    padding: 12px 14px;
  }

  /* TESTIMONIALS */
  .testimonial-card { min-width: calc(80% - 11px); }

  /* TOURNAMENT */
  .tournament-bottom { flex-direction: column; align-items: flex-start; }
  .tournament-bottom button { width: 100%; justify-content: center; }

  /* FOOTER */
  .footer-box h2 { font-size: 18px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-policy { justify-content: center; }
  .gaming-footer { padding: 60px 6% 30px; }
  .footer-container { gap: 36px; }
  .social-icons { flex-wrap: wrap; }

  /* NEWS */
  .news-small-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .news-card { height: 300px; }
  .news-content h3 { font-size: 16px; }

  /* CONTACT */
  .contact-page { padding: 120px 6% 60px; }
  .contact-info h1 { font-size: 48px; }
  .contact-form-box { padding: 28px; }

  /* ABOUT */
  .about-page { padding: 120px 6% 60px; }
  .about-content h1 { font-size: 48px; }
  .about-container { gap: 40px; }

  /* APP */
  .app-buttons { flex-direction: column; align-items: center; }
  .app-btn { width: 100%; max-width: 280px; justify-content: center; }

}

/* ===================================================
   RESPONSIVE — MOBILE (max-width: 640px)
=================================================== */
@media (max-width: 640px) {

  /* LEADERBOARD — hide earnings col */
  .lb-header, .lb-row {
    grid-template-columns: 55px 1fr 80px 55px;
  }
  .lb-earn { display: none; }

  /* TESTIMONIALS */
  .testimonial-card { min-width: 100%; }

  /* CATEGORIES */
  .categories-grid { grid-template-columns: repeat(3, 1fr); }

  /* HERO */
  .hero-content h1 { font-size: 44px; }
  .hstat-num { font-size: 18px; }

  /* GAMES GRID */
  .games-grid { grid-template-columns: 1fr; }
  .game-card img { height: 220px; }

  /* LIVE GRID */
  .live-grid { grid-template-columns: 1fr; }

  /* TOURNAMENT */
  .tournament-grid { grid-template-columns: 1fr; }

  /* NEWS */
  .news-grid { grid-template-columns: 1fr; }
  .news-card { height: 280px; }

  /* FEATURED GAMES */
  .featured-games-grid { grid-template-columns: 1fr; }
  .featured-game-card img { height: 220px; }

  /* CHATBOT */
  .chatbot-box { width: 280px; right: -8px; }
  .chatbot-widget { bottom: 16px; right: 16px; }

  /* SPONSORS */
  .sponsors-grid { grid-template-columns: repeat(3, 1fr); }

}

/* ===================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
=================================================== */
@media (max-width: 480px) {

  /* HERO */
  .hero { padding: 110px 5% 60px; }
  .hero-content h1 { font-size: 36px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .primary-btn, .secondary-btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .hstat-num { font-size: 16px; }
  .hstat-label { font-size: 10px; }

  /* SECTION TITLES */
  .section-title h2 { font-size: 22px; }
  .section-title > span { font-size: 10px; }

  /* STATS */
  .stat-box h2 { font-size: 30px; }
  .stats-section { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* CATEGORIES */
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card { padding: 22px 14px; }
  .cat-icon { font-size: 32px; }
  .category-card h3 { font-size: 12px; }

  /* LEADERBOARD */
  .lb-header, .lb-row {
    grid-template-columns: 46px 1fr 70px 46px;
    padding: 10px 10px;
    font-size: 10px;
  }
  .lb-player img { width: 30px; height: 30px; }
  .lb-player strong { font-size: 12px; }
  .lb-player small { display: none; }
  .lb-tabs { gap: 6px; }
  .lb-tab { padding: 8px 14px; font-size: 12px; }

  /* FOOTER */
  .footer-container { grid-template-columns: 1fr; gap: 28px; }
  .gaming-footer { padding: 50px 5% 28px; }
  .winner-grid { grid-template-columns: repeat(3, 1fr); }
  .social-icons a { width: 40px; height: 40px; font-size: 18px; }

  /* NAVBAR */
  .navbar { width: 94%; }
  .logo img { width: 70px; }

  /* CONTACT */
  .contact-page { padding: 100px 5% 50px; }
  .contact-info h1 { font-size: 38px; }
  .contact-form-box { padding: 20px 16px; }
  .contact-box { padding: 14px; gap: 12px; }
  .contact-box i { font-size: 24px; }
  .contact-box h3 { font-size: 15px; }
  .contact-box p { font-size: 13px; }
  .contact-container { gap: 36px; }

  /* ABOUT */
  .about-page { padding: 100px 5% 50px; }
  .about-content h1 { font-size: 34px; }
  .about-container { gap: 30px; }
  .about-box { padding: 14px; gap: 12px; }
  .about-box i { font-size: 24px; }
  .about-box h3 { font-size: 15px; }

  /* AUTH PAGES */
  .auth-page { padding: 90px 12px 30px; }
  .auth-box {
    padding: 22px 16px;
    border-radius: 22px;
    max-width: 100%;
  }
  .auth-logo img { width: 80px; }
  .auth-box h1 { font-size: 22px; margin-bottom: 18px; }
  .auth-input input { height: 44px; font-size: 13px; padding: 0 14px 0 46px; }
  .auth-input i { font-size: 16px; }
  .auth-btn { height: 44px; font-size: 13px; }
  .social-login { flex-direction: column; gap: 10px; }
  .social-login button { height: 44px; }
  .auth-options { font-size: 12px; }
  .auth-switch { font-size: 12px; }

  /* PHONE INPUT */
  .iti input { height: 44px !important; font-size: 13px !important; }

  /* FEATURED GAMES */
  .featured-games-section { padding: 80px 5%; }
  .featured-game-info h3 { font-size: 18px; }
  .game-rank { width: 40px; height: 40px; font-size: 13px; border-radius: 10px; }

  /* CHATBOT */
  .chatbot-widget { bottom: 14px; right: 14px; }
  .chatbot-bubble { width: 52px; height: 52px; font-size: 22px; }
  .chatbot-box { width: 260px; }

  /* EARN CARDS */
  .earn-card { padding: 28px 20px; }
  .icon { font-size: 36px; }
  .earn-card h3 { font-size: 16px; }

  /* TOURNAMENT */
  .ct-num { font-size: 16px; }
  .tournament-content h3 { font-size: 14px; }

  /* LIVE SECTION */
  .live-info { flex-wrap: wrap; gap: 8px; }
  .watch-btn { width: 100%; justify-content: center; }

  /* APP SECTION */
  .app-content h2 { font-size: 26px; }
  .app-btn { padding: 12px 18px; }

  /* SPONSORS */
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsor-logo { font-size: 12px; }

}

/* ===================================================
   RESPONSIVE — VERY SMALL (max-width: 360px)
=================================================== */
@media (max-width: 360px) {

  .hero-content h1 { font-size: 30px; }
  .section-title h2 { font-size: 20px; }
  .auth-box h1 { font-size: 20px; }
  .contact-info h1 { font-size: 32px; }
  .about-content h1 { font-size: 30px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-section { grid-template-columns: 1fr 1fr; }
  .stat-box h2 { font-size: 26px; }
  .lb-header, .lb-row { grid-template-columns: 40px 1fr 65px; }
  .lb-wins { display: none; }
  .chatbot-box { width: 240px; right: -10px; }
  .news-card { height: 250px; }
  .news-content h3 { font-size: 14px; }

}