@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Rajdhani:wght@500;600;700;800&family=Orbitron:wght@700;900&display=swap');

/* ===== CSS VARIABLES — DARK GAMING THEME ===== */
:root {
  --font-main: 'Outfit', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
  --font-gaming: 'Orbitron', sans-serif;

  --bg-main: #07070f;
  --bg-card: rgba(16,14,35,0.75);
  --bg-card-solid: #0e0c1e;
  --bg-card-hover: rgba(26,22,55,0.9);
  --bg-section: rgba(10,9,22,0.6);

  --border-light: rgba(139,92,246,0.14);
  --border-glow: rgba(139,92,246,0.45);
  --border-gold: rgba(245,158,11,0.35);
  --border-cyan: rgba(6,182,212,0.3);

  --primary: #7c3aed;
  --primary-light: #a78bfa;
  --primary-dark: #5b21b6;
  --secondary: #f59e0b;
  --secondary-light: #fbbf24;
  --accent: #06b6d4;
  --accent-light: #22d3ee;
  --success: #10b981;
  --danger: #ef4444;
  --pink: #ec4899;

  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --text-bright: #f8fafc;

  --card-shadow: 0 8px 32px rgba(0,0,0,0.5);
  --card-shadow-hover: 0 24px 60px rgba(0,0,0,0.7);
  --purple-glow: 0 0 25px rgba(124,58,237,0.35), 0 0 60px rgba(124,58,237,0.12);
  --gold-glow: 0 0 25px rgba(245,158,11,0.45), 0 0 60px rgba(245,158,11,0.12);
  --cyan-glow: 0 0 20px rgba(6,182,212,0.35);
  --blue-shadow: 0 6px 20px rgba(124,58,237,0.3);
  --gold-shadow: 0 6px 20px rgba(245,158,11,0.35);
}

/* ===== BASE RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-main);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* Mesh background overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(124,58,237,0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(6,182,212,0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(245,158,11,0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(139,92,246,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; color: inherit; outline: none; }
img { display: block; max-width: 100%; }
section, header, footer, main, article { position: relative; z-index: 1; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #07070f; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }

/* ===== SCROLL PROGRESS BAR ===== */
#scrollProgressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(124,58,237,0.6);
}

/* ===== TICKER BAR ===== */
.ticker_bar {
  background: linear-gradient(90deg, rgba(124,58,237,0.15), rgba(6,182,212,0.1), rgba(245,158,11,0.1));
  border-bottom: 1px solid var(--border-light);
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.ticker_inner {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}

.ticker_label {
  font-family: var(--font-gaming);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--danger);
  padding: 4px 12px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 4px;
  flex-shrink: 0;
  margin-left: 16px;
  animation: pulse-red 2s infinite;
}

.ticker_track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}

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

.ticker_item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
  border-right: 1px solid var(--border-light);
}

.ticker_item:hover { color: var(--secondary); }
.ticker_item img { width: 20px; height: 20px; border-radius: 5px; object-fit: cover; }

.ticker_bonus {
  background: linear-gradient(135deg, var(--secondary), #fbbf24);
  color: #000;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7,7,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(7,7,15,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav_container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img { height: 40px; display: block; }

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav_menu {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav_link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--text-muted);
  transition: all 0.25s ease;
  position: relative;
}

.nav_link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav_link:hover::after, .nav_link.active::after { width: 60%; }

.nav_link:hover, .nav_link.active {
  color: var(--primary-light);
  background: rgba(124,58,237,0.08);
}

.nav_actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme_toggle_btn, .search_btn, .menu_btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(139,92,246,0.08);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 15px;
  transition: all 0.25s ease;
}

.theme_toggle_btn:hover, .search_btn:hover, .menu_btn:hover {
  background: rgba(124,58,237,0.2);
  border-color: var(--primary);
  color: var(--primary-light);
  box-shadow: var(--purple-glow);
}

.menu_btn { display: none; }

/* ===== MOBILE SIDEBAR ===== */
.mobile_sidebar {
  position: fixed;
  top: 0;
  left: -290px;
  width: 280px;
  height: 100vh;
  background: rgba(10,8,22,0.97);
  backdrop-filter: blur(20px);
  border-right: 1px solid var(--border-glow);
  z-index: 2000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: left 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 4px 0 40px rgba(124,58,237,0.15);
}

.mobile_sidebar.open { left: 0; }

.sidebar_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
}

.close_btn {
  font-size: 20px;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s;
}

.close_btn:hover {
  background: rgba(239,68,68,0.1);
  color: var(--danger);
}

.sidebar_links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar_link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.sidebar_link:hover {
  color: var(--primary-light);
  background: rgba(124,58,237,0.1);
  border-color: var(--border-light);
  transform: translateX(4px);
}

.sidebar_link i { width: 18px; text-align: center; }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.overlay.active { opacity: 1; pointer-events: auto; }

/* ===== HERO SECTION ===== */
.hero_section {
  max-width: 1300px;
  margin: 0 auto 40px auto;
  padding: 0 24px;
}

.hero_banner_container {
  position: relative;
  width: 100%;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: var(--purple-glow), var(--card-shadow);
}

.hero_banner_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.hero_banner_container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(124,58,237,0.6) 0%,
    rgba(6,182,212,0.3) 50%,
    rgba(245,158,11,0.3) 100%);
  z-index: 1;
}

.hero_overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(7,7,15,0.97) 0%, rgba(7,7,15,0.5) 50%, rgba(7,7,15,0.15) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 56px;
}

.hero_title {
  font-family: var(--font-gaming);
  font-size: 38px;
  font-weight: 900;
  color: var(--text-bright);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(124,58,237,0.5);
}

.hero_title span {
  background: linear-gradient(135deg, var(--primary-light), var(--accent), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero_subtitle {
  font-size: 15.5px;
  color: rgba(226,232,240,0.8);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 4px;
}

.hero_actions {
  margin-top: 28px;
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  z-index: 10;
  position: relative;
}

.hero_cta_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(16,185,129,0.4);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero_cta_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(16,185,129,0.5);
}

.hero_secondary_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero_secondary_btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent);
  color: var(--accent-light);
  transform: translateY(-3px);
}

/* ===== HERO ANIMATED (no image fallback) ===== */
.hero_no_img {
  background: linear-gradient(135deg, #1a0533 0%, #0c1a2e 40%, #001020 100%);
  min-height: 380px;
}

/* ===== STATS BAR ===== */
.stats_bar {
  max-width: 1300px;
  margin: 0 auto 40px auto;
  padding: 0 24px;
}

.stats_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(15px);
  box-shadow: var(--card-shadow);
}

.stat_item {
  text-align: center;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(139,92,246,0.08);
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.02);
}

.stat_item:hover {
  background: rgba(124,58,237,0.08);
  border-color: var(--border-glow);
  transform: translateY(-3px);
}

.stat_item p {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}

.stat_item h4 {
  font-family: var(--font-gaming);
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat_item:nth-child(1) h4 { background: linear-gradient(135deg, var(--accent), var(--primary-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat_item:nth-child(2) h4 { background: linear-gradient(135deg, var(--primary-light), #ec4899); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat_item:nth-child(3) h4 { background: linear-gradient(135deg, var(--secondary), #f97316); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== SECTION TITLES ===== */
.section_title_container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 28px;
  padding-left: 18px;
  border-left: 3px solid var(--primary);
  position: relative;
}

.section_title_container::before {
  content: '';
  position: absolute;
  left: -3px;
  top: -4px;
  width: 3px;
  height: 10px;
  background: var(--secondary);
  border-radius: 2px;
}

.section_title {
  font-family: var(--font-heading);
  font-size: 27px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-bright);
}

.section_title span { color: var(--primary-light); }

/* ===== PODIUM SECTION ===== */
.podium_section {
  max-width: 1300px;
  margin: 0 auto 50px auto;
  padding: 0 24px;
}

.podium_container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  padding: 40px 0 24px 0;
  flex-wrap: wrap;
}

.podium_card {
  width: 260px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 22px;
  padding: 30px 24px;
  text-align: center;
  position: relative;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.podium_card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.podium_card.rank_1 {
  order: 2;
  transform: translateY(-24px);
  border-color: rgba(245,158,11,0.35);
  box-shadow: var(--gold-glow), var(--card-shadow);
}

.podium_card.rank_1::before {
  background: radial-gradient(circle at 50% 0%, rgba(245,158,11,0.08), transparent 70%);
  opacity: 1;
}

.podium_card.rank_2 {
  order: 1;
  border-color: rgba(148,163,184,0.2);
}

.podium_card.rank_3 {
  order: 3;
  border-color: rgba(180,83,9,0.2);
}

.podium_icon_wrapper {
  position: relative;
  width: 96px;
  height: 96px;
  margin-bottom: 20px;
}

.podium_icon_border {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 3px;
  animation: border-rotate 6s linear infinite;
}

.podium_card.rank_1 .podium_icon_border { background: conic-gradient(from 0deg, #f59e0b, #fbbf24, transparent 60%, #f59e0b); }
.podium_card.rank_2 .podium_icon_border { background: conic-gradient(from 0deg, #94a3b8, transparent 60%, #94a3b8); }
.podium_card.rank_3 .podium_icon_border { background: conic-gradient(from 0deg, #b45309, transparent 60%, #b45309); }

.podium_icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #1a1a30;
  border: 3px solid rgba(255,255,255,0.05);
}

.podium_trophy {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,255,255,0.1);
}

.podium_card.rank_1 .podium_trophy { background: linear-gradient(135deg, #f59e0b, #d97706); color: #000; }
.podium_card.rank_2 .podium_trophy { background: linear-gradient(135deg, #94a3b8, #64748b); color: #fff; }
.podium_card.rank_3 .podium_trophy { background: linear-gradient(135deg, #b45309, #92400e); color: #fff; }

.podium_name {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-bright);
}

.podium_meta {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.podium_meta span { color: var(--secondary); font-weight: 700; }

.podium_btn {
  width: 100%;
  padding: 11px 0;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  transition: all 0.25s ease;
  box-shadow: var(--blue-shadow);
  display: block;
}

.podium_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(124,58,237,0.45);
}

.podium_card:hover {
  transform: translateY(-6px);
  box-shadow: var(--purple-glow), var(--card-shadow-hover);
  border-color: var(--border-glow);
}

.podium_card.rank_1:hover {
  transform: translateY(-28px);
  box-shadow: var(--gold-glow), var(--card-shadow-hover);
}

/* ===== TELEGRAM BANNER ===== */
.telegram_banner {
  max-width: 1300px;
  margin: 0 auto 45px auto;
  padding: 0 24px;
}

.telegram_card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, rgba(2,132,199,0.12) 0%, rgba(6,182,212,0.08) 100%);
  border: 1px solid rgba(6,182,212,0.25);
  border-radius: 20px;
  padding: 22px 32px;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(6,182,212,0.08);
}

.telegram_card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(6,182,212,0.1), transparent 70%);
  pointer-events: none;
}

.telegram_info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.telegram_icon {
  font-size: 40px;
  color: var(--accent);
  animation: wave 2.5s infinite ease-in-out;
  flex-shrink: 0;
}

.telegram_text h4 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.3px;
}

.telegram_text p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 4px;
  max-width: 500px;
  line-height: 1.5;
}

.telegram_join_btn {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(2,132,199,0.35);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.telegram_join_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(2,132,199,0.5);
}

/* ===== COUNTDOWN / HOT DEALS SECTION ===== */
.deals_section {
  max-width: 1300px;
  margin: 0 auto 50px auto;
  padding: 0 24px;
}

.deals_card {
  background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(239,68,68,0.06));
  border: 1px solid var(--border-gold);
  border-radius: 22px;
  padding: 30px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(245,158,11,0.08);
}

.deals_card::before {
  content: '🔥';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 120px;
  opacity: 0.04;
  pointer-events: none;
}

.deals_info h3 {
  font-family: var(--font-gaming);
  font-size: 20px;
  font-weight: 900;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.deals_info p {
  font-size: 14px;
  color: var(--text-muted);
}

.deals_timer {
  display: flex;
  gap: 12px;
  align-items: center;
}

.timer_unit {
  text-align: center;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 70px;
}

.timer_unit .time_val {
  font-family: var(--font-gaming);
  font-size: 28px;
  font-weight: 900;
  color: var(--secondary);
  display: block;
  line-height: 1;
  text-shadow: 0 0 15px rgba(245,158,11,0.5);
}

.timer_unit .time_label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

.timer_sep {
  font-family: var(--font-gaming);
  font-size: 24px;
  color: var(--secondary);
  opacity: 0.6;
  animation: blink 1s infinite;
}

.deals_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--secondary), #f97316);
  color: #000;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--gold-glow);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.deals_badge:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(245,158,11,0.5);
}

/* ===== CONTROLS (Search, Tabs, Filters, Chips) ===== */
.controls_section {
  max-width: 1300px;
  margin: 0 auto 30px auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.controls_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.chips_container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.chip_btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  transition: all 0.25s ease;
  cursor: pointer;
}

.chip_btn:hover {
  color: var(--primary-light);
  background: rgba(124,58,237,0.1);
  border-color: var(--border-glow);
}

.chip_btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(124,58,237,0.3);
}

.tab_wrapper {
  display: flex;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  padding: 4px;
  border-radius: 12px;
  gap: 4px;
}

.tab_btn {
  padding: 8px 22px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text-muted);
  transition: all 0.25s ease;
  cursor: pointer;
}

.tab_btn:hover { color: var(--text-main); }

.tab_btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 3px 12px rgba(124,58,237,0.35);
}

.search_wrapper {
  position: relative;
  width: 360px;
  max-width: 100%;
}

.search_input {
  width: 100%;
  padding: 12px 18px 12px 46px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  color: var(--text-main);
  font-size: 14px;
  outline: none;
  transition: all 0.25s ease;
  font-family: var(--font-main);
}

.search_input::placeholder { color: var(--text-muted); }

.search_input:focus {
  border-color: var(--primary);
  background: rgba(124,58,237,0.06);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}

.search_wrapper > i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  transition: color 0.2s;
}

.search_wrapper:focus-within > i { color: var(--primary-light); }

.search_suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: rgba(12,10,28,0.98);
  border: 1px solid var(--border-glow);
  border-radius: 14px;
  z-index: 200;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  display: none;
  backdrop-filter: blur(20px);
}

.search_suggestions.visible { display: block; }

.suggestion_item {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.15s;
  font-size: 14px;
}

.suggestion_item:hover { background: rgba(124,58,237,0.1); }
.suggestion_icon { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; }
.suggestion_fallback { display: flex; align-items: center; justify-content: center; font-family: var(--font-gaming); font-weight: 900; font-size: 16px; color: #fff; }

.filter_panel {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 20px 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  backdrop-filter: blur(15px);
  box-shadow: var(--card-shadow);
}

.filter_group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter_label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.8px;
}

.filter_select {
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  color: var(--text-main);
  font-weight: 500;
  font-family: var(--font-main);
  outline: none;
  cursor: pointer;
  min-width: 180px;
  transition: all 0.2s ease;
}

.filter_select option { background: #0f0c1e; color: var(--text-main); }

.filter_select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}

.filter_reset_btn {
  margin-top: 18px;
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  color: var(--danger);
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.filter_reset_btn:hover {
  background: rgba(239,68,68,0.15);
  transform: translateY(-1px);
}

/* ===== APP GRID ===== */
.app_grid_section {
  max-width: 1300px;
  margin: 0 auto 55px auto;
  padding: 0 24px;
}

.app_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}

.app_card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--card-shadow);
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
  backdrop-filter: blur(15px);
  overflow: hidden;
}

.app_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.app_card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  box-shadow: var(--purple-glow), var(--card-shadow-hover);
}

.app_card:hover::before { opacity: 1; }

.app_card_header {
  display: flex;
  gap: 16px;
  align-items: center;
}

.app_logo_container {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: var(--font-gaming);
  font-size: 28px;
  font-weight: 900;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.app_logo_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app_info_block {
  flex-grow: 1;
  width: calc(100% - 96px);
}

.app_title_text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-bright);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app_category_badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 6px;
  margin-top: 5px;
  display: inline-block;
  letter-spacing: 0.3px;
}

.app_category_badge.Rummy { background: rgba(139,92,246,0.15); color: var(--primary-light); border: 1px solid rgba(139,92,246,0.25); }
.app_category_badge.Slots { background: rgba(245,158,11,0.12); color: var(--secondary-light); border: 1px solid rgba(245,158,11,0.25); }
.app_category_badge.Teen_Patti, .app_category_badge.Teen.Patti { background: rgba(236,72,153,0.12); color: #f472b6; border: 1px solid rgba(236,72,153,0.25); }
.app_category_badge.All-in-one { background: rgba(16,185,129,0.12); color: #34d399; border: 1px solid rgba(16,185,129,0.25); }

.app_rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.star { font-size: 11px; color: #64748b; }
.star.filled { color: var(--secondary); }
.rating_val { font-size: 12px; color: var(--text-muted); font-weight: 600; }

.app_details_row {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  border-top: 1px solid rgba(139,92,246,0.1);
  padding-top: 14px;
  gap: 8px;
}

.detail_item { display: flex; flex-direction: column; }

.detail_item_label {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}

.detail_item_val {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-bright);
}

.app_bonus_val {
  color: var(--success);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
}

.app_card_actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.app_download_btn {
  flex: 1;
  padding: 11px 0;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(124,58,237,0.3);
  text-decoration: none;
}

.app_download_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(124,58,237,0.5);
}

.app_share_btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.25s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.app_share_btn:hover {
  background: rgba(124,58,237,0.1);
  border-color: var(--primary);
  color: var(--primary-light);
}

.badge_new {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--danger), #f97316);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(239,68,68,0.35);
}

.badge_hot {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--secondary), #f97316);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  box-shadow: var(--gold-glow);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials_section {
  max-width: 1300px;
  margin: 0 auto 55px auto;
  padding: 0 24px;
}

.testimonials_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial_card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 24px;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
  position: relative;
}

.testimonial_card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 60px;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial_card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--purple-glow);
}

.testimonial_stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.testimonial_stars span { color: var(--secondary); font-size: 14px; }

.testimonial_text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial_author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial_avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-gaming);
  font-weight: 900;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}

.testimonial_name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-bright);
}

.testimonial_location {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.testimonial_earning {
  margin-left: auto;
  text-align: right;
}

.testimonial_earning span {
  display: block;
  font-family: var(--font-gaming);
  font-size: 15px;
  font-weight: 700;
  color: var(--success);
}

.testimonial_earning small {
  font-size: 10px;
  color: var(--text-muted);
}

/* ===== HOW IT WORKS ===== */
.how_it_works_section {
  max-width: 1300px;
  margin: 0 auto 55px auto;
  padding: 0 24px;
}

.steps_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  position: relative;
}

.steps_grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
  opacity: 0.3;
  pointer-events: none;
}

.step_card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
  position: relative;
  z-index: 1;
}

.step_card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: var(--purple-glow);
}

.step_number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-gaming);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 18px auto;
  box-shadow: var(--purple-glow);
}

.step_icon {
  font-size: 30px;
  margin-bottom: 14px;
  display: block;
}

.step_title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-bright);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.step_desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== TRUST BADGES ===== */
.trust_section {
  max-width: 1300px;
  margin: 0 auto 55px auto;
  padding: 0 24px;
}

.trust_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.trust_badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 18px 20px;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.trust_badge:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.trust_icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.trust_icon.purple { background: rgba(124,58,237,0.15); color: var(--primary-light); }
.trust_icon.green { background: rgba(16,185,129,0.15); color: #34d399; }
.trust_icon.gold { background: rgba(245,158,11,0.15); color: var(--secondary-light); }
.trust_icon.cyan { background: rgba(6,182,212,0.15); color: var(--accent-light); }
.trust_icon.red { background: rgba(239,68,68,0.15); color: #f87171; }
.trust_icon.pink { background: rgba(236,72,153,0.15); color: #f472b6; }

.trust_text h5 {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-bright);
  margin-bottom: 2px;
}

.trust_text p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter_section {
  max-width: 1300px;
  margin: 0 auto 55px auto;
  padding: 0 24px;
}

.newsletter_card {
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(6,182,212,0.08));
  border: 1px solid var(--border-glow);
  border-radius: 24px;
  padding: 40px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--purple-glow);
}

.newsletter_card::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(circle, rgba(124,58,237,0.15), transparent 70%);
  pointer-events: none;
}

.newsletter_card h3 {
  font-family: var(--font-gaming);
  font-size: 22px;
  font-weight: 900;
  color: var(--text-bright);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.newsletter_card h3 span {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.newsletter_card p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.newsletter_form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter_input {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  color: var(--text-main);
  font-size: 14px;
  font-family: var(--font-main);
  outline: none;
  transition: all 0.25s ease;
}

.newsletter_input::placeholder { color: var(--text-muted); }
.newsletter_input:focus { border-color: var(--primary); background: rgba(124,58,237,0.08); }

.newsletter_btn {
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(124,58,237,0.3);
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.newsletter_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124,58,237,0.5);
}

.newsletter_privacy {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ===== FAQ SECTION ===== */
.faq_section {
  max-width: 1300px;
  margin: 0 auto 55px auto;
  padding: 0 24px;
}

.faq_container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq_item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.faq_item.open {
  border-color: var(--border-glow);
  box-shadow: 0 4px 20px rgba(124,58,237,0.1);
}

.faq_question_btn {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-main);
  text-align: left;
  transition: all 0.25s ease;
  cursor: pointer;
}

.faq_question_btn:hover { color: var(--primary-light); }

.faq_item.open .faq_question_btn { color: var(--primary-light); }

.faq_question_btn i {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}

.faq_item.open .faq_question_btn i { transform: rotate(180deg); }

.faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}

.faq_item.open .faq_answer { max-height: 400px; }

.faq_answer_content {
  padding: 0 24px 20px 24px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

/* ===== RECENT GAMES SECTION ===== */
.recent_games_section {
  max-width: 1300px;
  margin: 0 auto 55px auto;
  padding: 0 24px;
}

.recent_games_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.recent_game_card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
  backdrop-filter: blur(15px);
  text-decoration: none;
}

.recent_game_card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: var(--purple-glow);
  background: var(--bg-card-hover);
}

.recent_game_icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.new_badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, var(--danger), #f97316);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.recent_game_title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.recent_game_bonus {
  font-size: 11px;
  color: var(--success);
  font-weight: 700;
  background: rgba(16,185,129,0.1);
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid rgba(16,185,129,0.2);
}

.view_all_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 12px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 18px rgba(124,58,237,0.3);
  text-decoration: none;
}

.view_all_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(124,58,237,0.5);
}

/* ===== SEO CONTENT SECTION ===== */
.seo_content_section {
  max-width: 1300px;
  margin: 0 auto 55px auto;
  padding: 0 24px;
}

.seo_content_grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  align-items: start;
}

.seo_main_content {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 22px;
  padding: 32px;
  backdrop-filter: blur(15px);
  box-shadow: var(--card-shadow);
}

.seo_main_content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-bright);
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.seo_main_content p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.seo_keyword {
  color: var(--primary-light);
  font-weight: 600;
}

.seo_sidebar_cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.seo_stat_card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
}

.seo_stat_card:hover {
  border-color: var(--border-glow);
  transform: translateX(4px);
}

.seo_stat_icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.seo_stat_icon.blue { background: rgba(139,92,246,0.15); color: var(--primary-light); }
.seo_stat_icon.green { background: rgba(16,185,129,0.15); color: #34d399; }
.seo_stat_icon.orange { background: rgba(245,158,11,0.15); color: var(--secondary-light); }
.seo_stat_icon.purple { background: rgba(236,72,153,0.15); color: #f472b6; }

.seo_stat_text h4 {
  font-family: var(--font-gaming);
  font-size: 20px;
  font-weight: 900;
  color: var(--text-bright);
}

.seo_stat_text p {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== FOOTER ===== */
footer {
  background: rgba(5,5,12,0.95);
  border-top: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
}

.footer_container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 24px 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer_brand {
  font-family: var(--font-gaming);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer_about .footer_brand span { color: var(--text-main); }

.footer_desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 300px;
}

.footer_social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social_btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  transition: all 0.25s ease;
  text-decoration: none;
}

.social_btn:hover {
  background: rgba(124,58,237,0.15);
  border-color: var(--primary);
  color: var(--primary-light);
  transform: translateY(-2px);
}

.footer_links_col h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.footer_links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_link {
  font-size: 13.5px;
  color: var(--text-muted);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer_link::before {
  content: '→';
  font-size: 10px;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.2s ease;
}

.footer_link:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer_link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer_bottom {
  border-top: 1px solid var(--border-light);
  padding: 20px 24px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer_copy {
  font-size: 12.5px;
  color: var(--text-muted);
}

.footer_badges {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.footer_badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  border: 1px solid;
}

.footer_badge.green { color: #34d399; border-color: rgba(16,185,129,0.3); background: rgba(16,185,129,0.06); }
.footer_badge.blue { color: var(--primary-light); border-color: rgba(124,58,237,0.3); background: rgba(124,58,237,0.06); }

/* ===== FLOATING BUTTONS ===== */
.floating_download_btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 25px rgba(16,185,129,0.45);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
}

.floating_download_btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 35px rgba(16,185,129,0.55);
}

.floating_download_btn i { font-size: 18px; }

/* WhatsApp floating button */
.floating_whatsapp_btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating_whatsapp_btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 35px rgba(37,211,102,0.55);
}

/* Back to top */
#backToTop {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 500;
  width: 46px;
  height: 46px;
  background: rgba(124,58,237,0.2);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 16px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#backToTop:hover {
  background: rgba(124,58,237,0.35);
  box-shadow: var(--purple-glow);
  transform: translateY(-3px);
}

/* ===== LIVE VISITOR COUNTER ===== */
.live_counter_bar {
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: 12px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 auto 30px auto;
  max-width: fit-content;
}

.live_dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-green 2s infinite;
  flex-shrink: 0;
}

.live_count {
  font-family: var(--font-gaming);
  font-size: 15px;
  font-weight: 700;
  color: var(--success);
}

/* ===== TOAST NOTIFICATIONS ===== */
#toastContainer {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: 320px;
}

.toast_notif {
  background: rgba(12,10,28,0.96);
  border: 1px solid var(--border-glow);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(20px);
  box-shadow: var(--card-shadow), var(--purple-glow);
  animation: toast-in 0.4s cubic-bezier(0.16,1,0.3,1) forwards;
  pointer-events: auto;
}

.toast_notif.fade-out {
  animation: toast-out 0.3s ease forwards;
}

.toast_avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  background: rgba(16,185,129,0.15);
}

.toast_text strong {
  display: block;
  font-size: 13px;
  color: var(--text-bright);
  margin-bottom: 2px;
}

.toast_text span {
  font-size: 12px;
  color: var(--text-muted);
}

.toast_time {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: auto;
  flex-shrink: 0;
}

/* ===== COOKIE CONSENT ===== */
#cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: rgba(10,8,22,0.98);
  border-top: 1px solid var(--border-glow);
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  backdrop-filter: blur(20px);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

#cookieConsent.show { transform: translateY(0); }

.cookie_text {
  font-size: 13.5px;
  color: var(--text-muted);
  flex: 1;
  min-width: 200px;
  line-height: 1.6;
}

.cookie_text a { color: var(--primary-light); text-decoration: underline; }

.cookie_actions { display: flex; gap: 10px; flex-shrink: 0; }

.cookie_accept {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.cookie_accept:hover { transform: translateY(-2px); box-shadow: var(--purple-glow); }

.cookie_decline {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie_decline:hover { border-color: var(--primary); color: var(--primary-light); }

/* ===== ANIMATED STAT COUNTER ===== */
.animated-stat { transition: color 0.3s; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  max-width: 1300px;
  margin: 0 auto;
  padding: 14px 24px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb .sep { color: rgba(148,163,184,0.4); }
.breadcrumb .current { color: var(--primary-light); font-weight: 600; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement_bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  padding: 10px 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}

.announcement_bar a {
  text-decoration: underline;
  font-weight: 800;
  color: var(--secondary-light);
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes border-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes float-up {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(-20px); opacity: 0; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes toast-in {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes toast-out {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-30px); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: var(--purple-glow); }
  50% { box-shadow: 0 0 40px rgba(124,58,237,0.6), 0 0 80px rgba(124,58,237,0.2); }
}

/* ===== DARK MODE (stays dark - this IS the theme) ===== */
body.dark {
  --bg-main: #07070f;
  --bg-card: rgba(16,14,35,0.75);
  --bg-card-hover: rgba(26,22,55,0.9);
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --border-light: rgba(139,92,246,0.14);
}

/* Light mode override (optional) */
body.light {
  --bg-main: #f0eeff;
  --bg-card: rgba(255,255,255,0.8);
  --bg-card-hover: #fff;
  --bg-card-solid: #ffffff;
  --text-main: #1e1b4b;
  --text-muted: #6b7280;
  --border-light: rgba(124,58,237,0.1);
  background-color: var(--bg-main);
  color: var(--text-main);
}

body.light::after {
  opacity: 0.3;
}

body.light header {
  background: rgba(240,238,255,0.9);
}

/* ===== LOADING SPINNER ===== */
.loading_spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}

.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(124,58,237,0.15);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin-slow 0.8s linear infinite;
}

/* ===== NO RESULTS ===== */
.no_results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 15px;
}

.no_results i {
  font-size: 48px;
  color: var(--border-glow);
  margin-bottom: 16px;
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .seo_content_grid { grid-template-columns: 1fr; }
  .seo_sidebar_cards { flex-direction: row; flex-wrap: wrap; }
  .seo_stat_card { flex: 1; min-width: 200px; }
  .footer_container { grid-template-columns: 1fr 1fr; }
  .footer_about { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav_menu { display: none; }
  .menu_btn { display: flex; }
  .hero_title { font-size: 26px; }
  .hero_overlay { padding: 30px 28px; }
  .deals_card { flex-direction: column; text-align: center; }
  .deals_card::before { display: none; }
  .footer_container { grid-template-columns: 1fr; gap: 28px; }
  .steps_grid::before { display: none; }
  .testimonials_grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav_container { padding: 12px 16px; }
  .hero_section, .podium_section, .controls_section, .app_grid_section,
  .telegram_banner, .stats_bar, .deals_section, .faq_section,
  .recent_games_section, .seo_content_section, .trust_section,
  .how_it_works_section, .newsletter_section, .testimonials_section { padding: 0 16px; }
  .hero_title { font-size: 20px; }
  .hero_overlay { padding: 22px 20px; }
  .hero_actions { flex-direction: column; gap: 10px; }
  .hero_cta_btn, .hero_secondary_btn { padding: 12px 20px; font-size: 13.5px; }
  .podium_container { gap: 14px; }
  .podium_card { width: 220px; }
  .podium_card.rank_1 { transform: translateY(-14px); }
  .app_grid { grid-template-columns: 1fr; }
  .telegram_card { flex-direction: column; padding: 20px; gap: 16px; }
  .controls_row { flex-direction: column; }
  .search_wrapper { width: 100%; }
  .tab_wrapper { width: 100%; }
  .tab_btn { flex: 1; text-align: center; }
  .recent_games_grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .footer_bottom { flex-direction: column; text-align: center; }
  .floating_download_btn span { display: none; }
  .floating_download_btn { padding: 14px; border-radius: 50%; }
  .newsletter_card { padding: 28px 20px; }
  .deals_timer { justify-content: center; }
  .timer_unit { min-width: 58px; padding: 10px 12px; }
  .timer_unit .time_val { font-size: 22px; }
  .trust_grid { grid-template-columns: 1fr 1fr; }
  .section_title { font-size: 22px; }
  .steps_grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .trust_grid { grid-template-columns: 1fr; }
  .steps_grid { grid-template-columns: 1fr; }
  .seo_sidebar_cards .seo_stat_card { flex: 1 1 100%; }
  .timer_unit { min-width: 52px; }
}

/* ===== GAMES SEO TABLE ===== */
.games_seo_table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-size: 14.5px;
}

.games_seo_table th, .games_seo_table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.games_seo_table th {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-bright);
  letter-spacing: 0.8px;
  background: rgba(124,58,237,0.12);
}

.games_seo_table tr:hover {
  background: var(--bg-card-hover);
}

.games_seo_table td a {
  font-weight: 600;
  color: var(--primary-light);
  transition: color 0.2s;
}

.games_seo_table td a:hover {
  color: var(--accent-light);
}

.tbl_icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
