@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 for Light Theme */
:root {
  --font-main: 'Outfit', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
  --font-gaming: 'Orbitron', sans-serif;

  --bg-main: #f8fafc;        /* Soft Warm Off-White */
  --bg-card: rgba(255, 255, 255, 0.85); /* Porcelain White Glass */
  --bg-card-hover: #ffffff;
  --border-light: rgba(15, 23, 42, 0.08); /* Slate 900 at 8% opacity */
  --border-glow: rgba(37, 99, 235, 0.15);  /* Soft Blue Glow */
  
  --primary: #2563eb;       /* Royal Blue */
  --secondary: #0ea5e9;     /* Sky Blue */
  --success: #10b981;       /* Emerald Green */
  --danger: #ef4444;        /* Crimson Red */
  --text-main: #0f172a;     /* Deep Slate Text */
  --text-muted: #475569;    /* Muted Slate Text */
  
  --card-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.03), 0 1px 3px rgba(15, 23, 42, 0.02);
  --card-shadow-hover: 0 20px 40px -5px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
  --blue-shadow: 0 4px 14px rgba(37, 99, 235, 0.2);
  --gold-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  position: relative;
}

/* Header Gradient Highlight */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
  background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.05) 0%, rgba(248, 250, 252, 0) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  outline: none;
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.nav_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nav_menu {
  display: flex;
  gap: 15px;
}

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

.nav_link:hover, .nav_link.active {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.06);
}

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

.search_btn, .menu_btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-size: 16px;
  transition: all 0.25s ease;
}

.search_btn:hover, .menu_btn:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.15);
}

.menu_btn {
  display: none;
}

/* Mobile Sidebar Drawer */
.mobile_sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-right: 1px solid var(--border-light);
  z-index: 2000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.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: 15px;
}

.close_btn {
  font-size: 20px;
  color: var(--text-muted);
}

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

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

.sidebar_link:hover {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(4px);
  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: 1200px;
  margin: 0 auto 30px auto;
  padding: 0 20px;
}

.hero_banner_container {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.1);
}

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

.hero_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.2) 65%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 50px;
}

.hero_title {
  font-family: var(--font-gaming);
  font-size: 34px;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

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

.hero_subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 650px;
  line-height: 1.5;
}

/* Daily Profit Podium */
.podium_section {
  max-width: 1200px;
  margin: 30px auto 40px auto;
  padding: 0 20px;
}

.section_title_container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  border-left: 4px solid var(--primary);
  padding-left: 15px;
}

.section_title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

/* Podium Placement Elevate */
.podium_card.rank_1 {
  order: 2;
  transform: translateY(-20px);
  border-color: rgba(245, 158, 11, 0.25);
  box-shadow: 0 15px 35px -5px rgba(245, 158, 11, 0.12), var(--card-shadow);
}

.podium_card.rank_2 {
  order: 1;
  border-color: rgba(100, 116, 139, 0.15);
}

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

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

.podium_icon_border {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 4px;
  background-size: cover;
  animation: border-rotate 8s linear infinite;
}

.podium_card.rank_1 .podium_icon_border {
  background: conic-gradient(from 0deg, #f59e0b, transparent 60%, #f59e0b);
}

.podium_card.rank_2 .podium_icon_border {
  background: conic-gradient(from 0deg, #64748b, transparent 60%, #64748b);
}

.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: #f1f5f9;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.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: 16px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.podium_card.rank_1 .podium_trophy {
  background: #f59e0b;
  color: #fff;
}

.podium_card.rank_2 .podium_trophy {
  background: #64748b;
  color: #fff;
}

.podium_card.rank_3 .podium_trophy {
  background: #b45309;
  color: #fff;
}

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

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

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

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

.podium_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.podium_card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  box-shadow: var(--card-shadow-hover);
}

.podium_card.rank_1:hover {
  transform: translateY(-25px);
  box-shadow: 0 20px 40px -5px rgba(245, 158, 11, 0.2), var(--card-shadow-hover);
}

/* Telegram Banner */
.telegram_banner {
  max-width: 1160px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

.telegram_card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #e0f2fe 0%, #bae6fd 100%);
  border: 1px solid rgba(0, 136, 204, 0.12);
  border-radius: 18px;
  padding: 20px 30px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 136, 204, 0.05);
}

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

.telegram_icon {
  font-size: 36px;
  color: #0284c7;
  animation: wave 2.5s infinite ease-in-out;
}

.telegram_text h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #0369a1;
}

.telegram_text p {
  font-size: 13.5px;
  color: #0e7490;
  margin-top: 2px;
}

.telegram_join_btn {
  background: #0284c7;
  color: #fff;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.25);
  transition: all 0.25s ease;
}

.telegram_join_btn:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
}

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

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

.tab_wrapper {
  display: flex;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--border-light);
  padding: 5px;
  border-radius: 12px;
  gap: 4px;
}

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

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

.tab_btn.active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.search_input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  color: var(--text-main);
  font-size: 14px;
  outline: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
}

.search_input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.search_input:focus + i {
  color: var(--primary);
}

/* Filters Drawer Panel */
.filter_panel {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: var(--card-shadow);
}

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

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

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

.filter_select:focus {
  border-color: var(--primary);
}

.filter_reset_btn {
  margin-top: 18px;
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
  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.12);
  transform: translateY(-1px);
}

/* App Grid List */
.app_grid_section {
  max-width: 1200px;
  margin: 0 auto 50px auto;
  padding: 0 20px;
}

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

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

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

.app_logo_container {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: var(--font-gaming);
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  flex-shrink: 0;
}

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

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

/* Category Badges Styling */
.app_category_badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  margin-top: 4px;
  display: inline-block;
  letter-spacing: 0.3px;
}

.app_category_badge.Rummy {
  background: #eff6ff;
  color: #1e40af;
}

.app_category_badge.Slots {
  background: #fef3c7;
  color: #b45309;
}

.app_category_badge.Teen_Patti, .app_category_badge.Teen.Patti {
  background: #fce7f3;
  color: #be185d;
}

.app_category_badge.All-in-one {
  background: #dcfce7;
  color: #15803d;
}

.app_details_row {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
}

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

.detail_item_label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
}

.detail_item_val {
  font-size: 14.5px;
  font-weight: 700;
  margin-top: 2px;
}

.detail_item_val.bonus_amount {
  color: var(--success);
}

.app_card_footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.app_tag_badge {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.1);
  color: var(--primary);
}

.card_download_btn {
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  color: #fff;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
  transition: all 0.25s ease;
}

.card_download_btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(16, 185, 129, 0.35);
}

.app_card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: rgba(37, 99, 235, 0.1);
  box-shadow: var(--card-shadow-hover);
}

/* Detail Drawer (Side sliding Modal) */
.detail_drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  max-width: 100%;
  height: 100vh;
  background: #ffffff;
  border-left: 1px solid var(--border-light);
  box-shadow: -10px 0 40px rgba(15, 23, 42, 0.08);
  z-index: 3000;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.detail_drawer.open {
  right: 0;
}

.drawer_header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
}

.drawer_title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
}

.drawer_close_btn {
  font-size: 20px;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(15, 23, 42, 0.04);
}

.drawer_close_btn:hover {
  background: rgba(15, 23, 42, 0.08);
  color: var(--text-main);
}

.drawer_content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.drawer_logo {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: var(--font-gaming);
  font-size: 32px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.drawer_app_name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
}

.drawer_stats_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
}

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

.drawer_stat_lbl {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
}

.drawer_stat_val {
  font-size: 16px;
  font-weight: 800;
  margin-top: 4px;
}

.drawer_stat_val.stat_bonus {
  color: var(--success);
}

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

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

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

.drawer_feature_item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-main);
}

.drawer_feature_item i {
  color: var(--success);
  font-size: 14px;
}

.drawer_footer {
  padding: 24px;
  border-top: 1px solid #f1f5f9;
}

.drawer_download_btn {
  width: 100%;
  padding: 14px 0;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.drawer_download_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* FAQ Accordion */
.faq_section {
  max-width: 800px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.faq_container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq_item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.faq_question_btn {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--text-main);
}

.faq_question_btn i {
  font-size: 13px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

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

.faq_answer_content {
  padding-bottom: 18px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq_item.open {
  border-color: rgba(37, 99, 235, 0.2);
  background: #ffffff;
}

.faq_item.open .faq_question_btn i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq_item.open .faq_answer {
  max-height: 1000px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* Toast Success Notification (Light Theme) */
.toast_notification {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #065f46;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  z-index: 4000;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast_notification i {
  color: var(--success);
  font-size: 16px;
}

.toast_notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Footer Section */
footer {
  background: #0f172a;      /* Elegant dark slate footer for contrast anchor */
  color: #f8fafc;
  padding: 60px 20px 20px 20px;
}

.footer_container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer_about p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 450px;
  margin-top: 15px;
}

.footer_links_col h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

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

.footer_link {
  font-size: 14px;
  color: #94a3b8;
  transition: color 0.25s ease;
}

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

.footer_bottom {
  max-width: 1200px;
  margin: 40px auto 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer_copy {
  font-size: 13px;
  color: #94a3b8;
}

.footer_disclaimer {
  font-size: 11.5px;
  color: #64748b;
  margin-top: 20px;
  line-height: 1.5;
  text-align: center;
  width: 100%;
}

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

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

/* Responsive Styles */
@media (max-width: 991px) {
  .footer_container {
    grid-template-columns: 1fr 1fr;
  }
  .footer_about {
    grid-column: span 2;
  }
  .hero_banner_container {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .nav_menu {
    display: none;
  }
  .menu_btn {
    display: flex;
  }
  .hero_title {
    font-size: 26px;
  }
  .hero_subtitle {
    font-size: 13.5px;
  }
  .hero_overlay {
    padding: 24px;
  }
  .podium_container {
    gap: 20px;
    align-items: center;
  }
  .podium_card.rank_1 {
    order: 1;
    transform: none;
  }
  .podium_card.rank_1:hover {
    transform: translateY(-5px);
  }
  .podium_card.rank_2 {
    order: 2;
  }
  .podium_card.rank_3 {
    order: 3;
  }
  .telegram_card {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 20px;
  }
  .telegram_info {
    flex-direction: column;
    gap: 10px;
  }
  .telegram_join_btn {
    width: 100%;
    justify-content: center;
  }
  .footer_container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer_about {
    grid-column: span 1;
  }
  .footer_bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Legal Pages Styling */
.legal_section {
  max-width: 1000px;
  margin: 100px auto 50px auto;
  padding: 0 20px;
}

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

.legal_container h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--text-main);
  margin-bottom: 8px;
}

.legal_container h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text-main);
  margin-top: 24px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.legal_container p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.legal_container ul {
  margin-left: 20px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.legal_container li {
  margin-bottom: 8px;
  font-size: 14.5px;
  line-height: 1.5;
}

.last_updated {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 30px;
}

/* Admin Dashboard & Login Styles */
.admin_login_container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  background: var(--bg-main);
}

.admin_login_card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--card-shadow);
  text-align: center;
}

.admin_login_logo {
  font-family: var(--font-gaming);
  font-weight: 900;
  font-size: 26px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  display: block;
}

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

.admin_login_title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.admin_login_subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.admin_form_group {
  margin-bottom: 20px;
  text-align: left;
}

.admin_form_label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.admin_form_input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  transition: all 0.2s ease;
}

.admin_form_input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.admin_login_btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  box-shadow: var(--blue-shadow);
  transition: all 0.25s ease;
  margin-top: 10px;
}

.admin_login_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.admin_login_error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--danger);
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Dashboard Panel Layout */
.admin_dashboard_section {
  max-width: 1200px;
  margin: 100px auto 50px auto;
  padding: 0 20px;
}

.admin_header_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: wrap;
}

.admin_title_block h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-main);
}

.admin_title_block p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

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

.admin_btn {
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.admin_btn.btn_primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--blue-shadow);
}

.admin_btn.btn_primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.admin_btn.btn_danger {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: var(--danger);
}

.admin_btn.btn_danger:hover {
  background: rgba(239, 68, 68, 0.12);
}

.admin_btn.btn_secondary {
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
}

.admin_btn.btn_secondary:hover {
  background: rgba(15, 23, 42, 0.08);
  color: var(--text-main);
}

/* Statistics Widgets */
.admin_stats_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

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

.admin_stat_icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.admin_stat_icon.success {
  background: rgba(16, 185, 129, 0.08);
  color: var(--success);
}

.admin_stat_icon.warning {
  background: rgba(245, 158, 11, 0.08);
  color: #d97706;
}

.admin_stat_icon.danger {
  background: rgba(239, 68, 68, 0.08);
  color: var(--danger);
}

.admin_stat_info p {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.admin_stat_info h3 {
  font-family: var(--font-gaming);
  font-size: 24px;
  color: var(--text-main);
  margin-top: 2px;
}

/* CRUD Table Styles */
.admin_panel_card {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--card-shadow);
  margin-bottom: 40px;
}

.admin_controls_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
  flex-wrap: wrap;
}

.admin_search_input_wrapper {
  position: relative;
  width: 320px;
  max-width: 100%;
}

.admin_search_input_wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.admin_search_input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 13.5px;
  outline: none;
}

.admin_search_input:focus {
  border-color: var(--primary);
}

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

.admin_select_filter {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-size: 13px;
  font-weight: 500;
  outline: none;
  cursor: pointer;
}

.admin_table_container {
  overflow-x: auto;
  border: 1px solid var(--border-light);
  border-radius: 12px;
}

.admin_table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.admin_table th {
  background: #f1f5f9;
  padding: 14px 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.5px;
}

.admin_table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
  color: var(--text-muted);
}

.admin_table tbody tr:hover td {
  background: rgba(37, 99, 235, 0.015);
}

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

.admin_app_thumbnail {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.admin_fallback_icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-gaming);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.admin_app_title_text {
  font-weight: 600;
  color: var(--text-main);
}

.admin_tag_badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-block;
}

.admin_tag_badge.featured {
  background: #fef3c7;
  color: #b45309;
}

.admin_tag_badge.new {
  background: #eff6ff;
  color: #1e40af;
}

.admin_tag_badge.all {
  background: #f1f5f9;
  color: #475569;
}

.admin_rank_badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: bold;
}

.admin_rank_badge.rank_1 {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
}

.admin_rank_badge.rank_2 {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.admin_rank_badge.rank_3 {
  background: rgba(180, 83, 9, 0.08);
  color: #b45309;
  border: 1px solid rgba(180, 83, 9, 0.15);
}

.admin_actions_cell {
  display: flex;
  gap: 8px;
}

.admin_action_btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.admin_action_btn:hover {
  background: rgba(37, 99, 235, 0.05);
  border-color: var(--primary);
  color: var(--primary);
}

.admin_action_btn.btn_delete:hover {
  background: rgba(239, 68, 68, 0.05);
  border-color: var(--danger);
  color: var(--danger);
}

/* Swatch Selection Grid */
.swatch_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 6px;
}

.swatch_item {
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.15s ease;
}

.swatch_item.selected {
  border-color: var(--text-main);
  box-shadow: 0 0 0 2px #fff inset;
}

/* Modals */
.modal_backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.admin_modal {
  width: 100%;
  max-width: 600px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin_modal form {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex-grow: 1;
  min-height: 0;
}

.modal_backdrop.active .admin_modal {
  transform: translateY(0);
}

.admin_modal_header {
  padding: 20px 24px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin_modal_header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
}

.admin_modal_close_btn {
  font-size: 18px;
  color: var(--text-muted);
}

.admin_modal_body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.admin_modal_footer {
  padding: 20px 24px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.form_grid_2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .form_grid_2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Category-Colored Glow Hover Effects */
.app_card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--border-light);
}

.app_card:has(.app_category_badge.Rummy):hover {
  box-shadow: 0 15px 35px rgba(30, 64, 175, 0.12);
  border-color: rgba(30, 64, 175, 0.25);
  transform: translateY(-5px);
}

.app_card:has(.app_category_badge.Slots):hover {
  box-shadow: 0 15px 35px rgba(180, 83, 9, 0.12);
  border-color: rgba(180, 83, 9, 0.25);
  transform: translateY(-5px);
}

.app_card:has(.app_category_badge.Teen_Patti):hover, 
.app_card:has(.app_category_badge.Teen.Patti):hover {
  box-shadow: 0 15px 35px rgba(190, 24, 93, 0.12);
  border-color: rgba(190, 24, 93, 0.25);
  transform: translateY(-5px);
}

.app_card:has(.app_category_badge.All-in-one):hover {
  box-shadow: 0 15px 35px rgba(21, 128, 61, 0.12);
  border-color: rgba(21, 128, 61, 0.25);
  transform: translateY(-5px);
}

/* Dedicated Details Sub-Page Layout */
.sub_page_section {
  max-width: 1200px;
  margin: 100px auto 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 30px;
}

@media (max-width: 992px) {
  .sub_page_section {
    grid-template-columns: 1fr;
  }
}

.back_home_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all 0.2s ease;
  margin-bottom: 20px;
}

.back_home_btn:hover {
  color: var(--primary);
  transform: translateX(-3px);
}

/* Left CTA Panel */
.left_details_panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sub_hero_card {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.detail_icon_wrapper {
  width: 110px;
  height: 110px;
  border-radius: 22px;
  position: relative;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  overflow: hidden;
}

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

.detail_icon_fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-gaming);
  font-size: 38px;
  font-weight: 900;
}

.detail_app_title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
  line-height: 1.2;
}

.detail_rating_row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.detail_rating_stars {
  color: #f59e0b;
}

.detail_download_apk_btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  box-shadow: var(--blue-shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  margin-bottom: 15px;
}

.detail_download_apk_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.4);
}

.detail_download_apk_btn i {
  animation: bounce-download 2s infinite;
}

@keyframes bounce-download {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

.detail_safety_tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--success);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Detail Specs Grid */
.detail_specs_card {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--card-shadow);
}

.spec_list_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.spec_list_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec_list_item:first-child {
  padding-top: 0;
}

.spec_lbl {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.spec_val {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-main);
}

.spec_val.highlight {
  color: var(--success);
}

/* Right Information Panel */
.right_details_panel {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.info_section_title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

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

.verified_check_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.verified_check_item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.verified_check_item i {
  color: var(--success);
  font-size: 16px;
}

.warning_info_card {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-top: 10px;
}

.warning_card_icon {
  font-size: 24px;
  color: #d97706;
}

.warning_card_text h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #d97706;
  margin-bottom: 4px;
}

.warning_card_text p {
  font-size: 13px;
  color: #b45309;
  line-height: 1.5;
}

/* Recommended Section */
.recommended_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* ==========================================================================
   Advanced Aesthetics & Dark Mode Styling
   ========================================================================== */

/* Dark Mode Color System Overrides */
body.dark {
  --bg-main: #0b0f19;                  /* Midnight Dark Canvas */
  --bg-card: rgba(17, 24, 39, 0.85);   /* Charcoal Translucent Glass */
  --bg-card-hover: #1f2937;            /* Solid Charcoal Highlight */
  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(59, 130, 246, 0.25);
  --text-main: #f3f4f6;                /* Bright Light Gray text */
  --text-muted: #9ca3af;               /* Muted Cool Gray */
  
  --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.35), 0 1px 3px rgba(0, 0, 0, 0.2);
  --card-shadow-hover: 0 20px 40px -5px rgba(0, 0, 0, 0.65), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
}

/* Header & Drawer Overrides in Dark Mode */
body.dark header {
  background: rgba(11, 15, 25, 0.75);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

body.dark .mobile_sidebar {
  background: rgba(17, 24, 39, 0.96);
  border-right-color: rgba(255, 255, 255, 0.08);
}

body.dark .close_btn, body.dark .sidebar_link {
  color: var(--text-muted);
}

body.dark .search_input {
  background: #111827;
  border-color: #374151;
}

body.dark .filter_select {
  background: #111827;
  border-color: #374151;
}

body.dark .tab_wrapper {
  background: rgba(255, 255, 255, 0.03);
}

body.dark .tab_btn.active {
  background: #1f2937;
  color: var(--secondary);
}

body.dark .filter_panel {
  background: rgba(17, 24, 39, 0.85);
}

body.dark .app_details_row {
  border-top-color: rgba(255, 255, 255, 0.05);
}

body.dark .animated-stat-box, body.dark .stat_card_wrapper {
  background: rgba(17, 24, 39, 0.85);
}

body.dark .telegram_card {
  background: linear-gradient(90deg, #0c4a6e 0%, #0369a1 100%);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

body.dark .telegram_text h4 {
  color: #bae6fd;
}

body.dark .telegram_text p {
  color: #38bdf8;
}

body.dark .faq_question_btn {
  color: var(--text-main);
}

body.dark .faq_answer {
  border-top-color: rgba(255, 255, 255, 0.04);
}

body.dark footer {
  background: #090d16;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

body.dark .footer_bottom {
  border-top-color: rgba(255, 255, 255, 0.03);
}

body.dark .spec_list_item {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

/* Sun/Moon Toggle Style */
.theme_toggle_btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-size: 16px;
  transition: all 0.25s ease;
}

body.dark .theme_toggle_btn {
  background: rgba(255, 255, 255, 0.05);
}

.theme_toggle_btn:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.15);
}

/* Category Filter Chips Layout */
.chips_container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 5px 0 12px 0;
  scrollbar-width: none;
}

.chips_container::-webkit-scrollbar {
  display: none;
}

.chip_btn {
  padding: 10px 22px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
  white-space: nowrap;
}

body.dark .chip_btn {
  background: var(--bg-card);
}

.chip_btn:hover {
  transform: translateY(-2px);
  color: var(--text-main);
  border-color: rgba(37, 99, 235, 0.2);
}

.chip_btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--blue-shadow);
}

/* Rank 1 Color-Shifting Rainbow Border */
@keyframes border-rainbow {
  0%, 100% { border-color: #3b82f6; box-shadow: 0 15px 35px rgba(59, 130, 246, 0.22); }
  33% { border-color: #ec4899; box-shadow: 0 15px 35px rgba(236, 72, 153, 0.22); }
  66% { border-color: #10b981; box-shadow: 0 15px 35px rgba(16, 185, 129, 0.22); }
}

.podium_card.rank_1 {
  animation: border-rainbow 6s linear infinite;
  border-width: 2px !important;
}

/* ==========================================================================
   Advanced Admin Portal Upgrade Styling
   ========================================================================== */

/* Split Sidebar Main wrapper */
.admin_split_wrapper {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  min-height: calc(100vh - 180px);
}

@media (max-width: 992px) {
  .admin_split_wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.admin_sidebar_menu {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 20px 16px;
  box-shadow: var(--card-shadow);
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin_sidebar_link {
  padding: 12px 16px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.admin_sidebar_link:hover {
  background: rgba(37, 99, 235, 0.05);
  color: var(--primary);
}

.admin_sidebar_link.active {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--blue-shadow);
}

/* SVG Line Analytics Graph styling */
.chart_path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-chart 2.5s ease forwards;
}

@keyframes draw-chart {
  to { stroke-dashoffset: 0; }
}

.chart_dot {
  transition: all 0.2s ease;
}

.chart_dot:hover {
  r: 6;
  fill: #fff;
  stroke: var(--primary);
  stroke-width: 3px;
}

/* Modal double layout & Live app preview */
.modal_double_grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
}

@media (max-width: 868px) {
  .modal_double_grid {
    grid-template-columns: 1fr;
  }
  .preview_panel_col {
    display: none;
  }
}

.preview_panel_col {
  border-left: 1px solid #f1f5f9;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.preview_title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  width: 100%;
  text-align: center;
}

/* Table Quick selects */
.quick_select_table {
  background: transparent;
  border: none;
  color: var(--text-main);
  font-weight: 600;
  outline: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}

.quick_select_table:hover {
  background: rgba(15, 23, 42, 0.04);
}

/* Dark Mode Admin Panel styling */
body.dark .admin_login_card {
  background: var(--bg-card);
  border-color: var(--border-light);
}

body.dark .admin_form_input {
  background: #111827;
  border-color: #374151;
  color: var(--text-main);
}

body.dark .admin_form_input:focus {
  border-color: var(--primary);
}

body.dark .admin_modal {
  background: #111827;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

body.dark .admin_modal_header,
body.dark .admin_modal_footer {
  border-color: rgba(255, 255, 255, 0.05);
}

body.dark .preview_panel_col {
  border-left-color: rgba(255, 255, 255, 0.05);
}

body.dark .admin_sidebar_menu {
  background: var(--bg-card);
  border-color: var(--border-light);
}

body.dark .admin_table th {
  background: #111827;
  color: var(--text-main);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.dark .admin_table td {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

body.dark .quick_select_table {
  color: var(--text-main);
}

body.dark .quick_select_table option {
  background: #111827;
  color: var(--text-main);
}

body.dark .quick_select_table:hover {
  background: rgba(255, 255, 255, 0.04);
}

body.dark .admin_action_btn {
  background: #111827;
  border-color: #374151;
  color: var(--text-muted);
}

body.dark .admin_action_btn:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

body.dark .admin_action_btn.btn_delete:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: var(--danger);
  color: var(--danger);
}

body.dark #livePreviewContainer .app_card {
  background: #111827 !important;
  color: var(--text-main) !important;
}

body.dark #livePreviewContainer .app_card .app_title_text {
  color: var(--text-main) !important;
}

body.dark #livePreviewContainer .app_card .detail_item_label {
  color: var(--text-muted) !important;
}

body.dark #livePreviewContainer .app_card .detail_item_val {
  color: var(--text-main) !important;
}

body.dark #livePreviewContainer .app_card .detail_item_val.bonus_amount {
  color: var(--success) !important;
}

/* ==========================================================================
   Search Autocomplete & Suggestion Overlays
   ========================================================================== */
.search_wrapper {
  position: relative;
}

.search_suggestions {
  position: absolute;
  top: 105%;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
  max-height: 280px;
  overflow-y: auto;
}

body.dark .search_suggestions {
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(15px);
}

.suggestion_item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s ease;
}

.suggestion_item:last-child {
  border-bottom: none;
}

.suggestion_item:hover {
  background: rgba(37, 99, 235, 0.05);
}

.suggestion_icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.suggestion_fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-gaming);
  font-size: 16px;
  font-weight: 800;
}

.suggestion_info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
}

.suggestion_title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.suggestion_category {
  font-size: 11.5px;
  color: var(--text-muted);
}

.suggestion_arrow {
  color: var(--primary);
  font-size: 13px;
}

/* ==========================================================================
   Download Button Progression Simulator Loader
   ========================================================================== */
.detail_download_apk_btn.downloading {
  position: relative;
  overflow: hidden;
  pointer-events: none;
}

.detail_download_apk_btn.downloading * {
  position: relative;
  z-index: 2;
}

.btn_progress_bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.3s ease;
  z-index: 1;
}

/* ==========================================================================
   Smartphone Showcase Mockups
   ========================================================================== */
.mockup_slider_wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: thin;
  justify-content: flex-start;
  align-items: center;
}

.smartphone_mockup {
  width: 200px;
  height: 400px;
  border: 10px solid #1e293b;
  border-radius: 36px;
  background: #0f172a;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

body.dark .smartphone_mockup {
  border-color: #334155;
}

.phone_speaker {
  width: 50px;
  height: 4px;
  background: #334155;
  border-radius: 10px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone_screen {
  flex-grow: 1;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  color: #fff;
}

.mockup_hud_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.mockup_logo_initials {
  font-family: var(--font-gaming);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.mockup_category_badge {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  text-transform: uppercase;
}

.mockup_bonus_tag {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  background: #f59e0b;
  color: #fff;
  text-transform: uppercase;
}

.mockup_safety_tag {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  background: #10b981;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.mockup_screen_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-grow: 1;
  z-index: 2;
  gap: 8px;
}

.mockup_center_icon {
  font-size: 40px;
  margin-bottom: 5px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.25);
  animation: float-mockup-icon 3s ease-in-out infinite;
}

@keyframes float-mockup-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.mockup_screen_title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.mockup_screen_desc {
  font-size: 11px;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.mockup_hud_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  opacity: 0.85;
  z-index: 2;
}

/* ==========================================================================
   Admin Portal Premium Layout Enhancements
   ========================================================================== */
.admin_stat_card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.admin_stat_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
}

.admin_stat_card:nth-child(2)::before {
  background: #f59e0b;
}

.admin_stat_card:nth-child(3)::before {
  background: #10b981;
}

.admin_stat_card:nth-child(4)::before {
  background: #ef4444;
}

.admin_stat_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

body.dark .admin_stat_card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  border-color: var(--primary);
}

input[type="file"].admin_form_input {
  background: var(--bg-main);
  border: 1px dashed var(--border-light);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s ease;
}

body.dark input[type="file"].admin_form_input {
  background: #111827;
  border-color: #374151;
}

input[type="file"].admin_form_input:hover {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.02);
}



/* ==========================================================================
   PREMIUM ENHANCEMENT — Marquee Ticker / Live Update Bar
   ========================================================================== */

.ticker_bar {
  background: linear-gradient(90deg, #1e3a8a 0%, #1d4ed8 50%, #0ea5e9 100%);
  color: #fff;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 999;
}

body.dark .ticker_bar {
  background: linear-gradient(90deg, #0f172a 0%, #1e3a8a 50%, #0c4a6e 100%);
}

.ticker_inner {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.ticker_label {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  padding: 3px 14px;
  border-radius: 20px;
  font-family: var(--font-gaming);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 20px;
  margin-left: 16px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
}

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

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

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker_item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  border-right: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: color 0.2s;
}

.ticker_item:hover {
  color: #fde68a;
}

.ticker_item .ticker_bonus {
  background: #fbbf24;
  color: #78350f;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
}

.ticker_item img {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  object-fit: cover;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ==========================================================================
   PREMIUM ENHANCEMENT — SEO Content Section (About / Why Choose Us)
   ========================================================================== */

.seo_content_section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

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

@media (max-width: 900px) {
  .seo_content_grid {
    grid-template-columns: 1fr;
  }
}

.seo_main_content {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--card-shadow);
}

body.dark .seo_main_content {
  background: rgba(17, 24, 39, 0.7);
}

.seo_main_content h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

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

.seo_main_content p:last-child {
  margin-bottom: 0;
}

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

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

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

.seo_stat_card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}

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

.seo_stat_icon.blue {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
}
.seo_stat_icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}
.seo_stat_icon.orange {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}
.seo_stat_icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}

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

.seo_stat_text p {
  font-size: 11.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}

/* ==========================================================================
   PREMIUM ENHANCEMENT — Recently Added Games Strip (SEO Links)
   ========================================================================== */

.recent_games_section {
  max-width: 1200px;
  margin: 0 auto 50px auto;
  padding: 0 20px;
}

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

.recent_game_card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.recent_game_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.2);
}

.recent_game_icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.recent_game_title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  text-transform: uppercase;
}

.recent_game_bonus {
  font-size: 11px;
  font-weight: 800;
  color: var(--success);
  background: rgba(16, 185, 129, 0.08);
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

/* ==========================================================================
   PREMIUM ENHANCEMENT — Dark mode card & header glow effects
   ========================================================================== */

body.dark .app_card:hover {
  border-color: rgba(37, 99, 235, 0.35) !important;
  box-shadow: 0 0 0 1px rgba(37,99,235,0.2), 0 20px 40px rgba(0,0,0,0.5) !important;
}

body.dark .podium_card.rank_1 {
  box-shadow: 0 0 0 1px rgba(245,158,11,0.3), 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(245,158,11,0.15);
}

body.dark header {
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 4px 20px rgba(0,0,0,0.3);
}

body.dark .seo_main_content h2 {
  border-bottom-color: var(--secondary);
}

body.dark .recent_game_card:hover {
  box-shadow: 0 0 0 1px rgba(37,99,235,0.3), 0 20px 40px rgba(0,0,0,0.6);
}

/* ==========================================================================
   PREMIUM ENHANCEMENT — Hero Shimmer overlay animation (light only)
   ========================================================================== */

.hero_banner_container::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  animation: hero-shimmer 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes hero-shimmer {
  0% { left: -100%; }
  40%, 100% { left: 140%; }
}

/* ==========================================================================
   PREMIUM ENHANCEMENT — Breadcrumb Navigation
   ========================================================================== */

.breadcrumb_nav {
  max-width: 1200px;
  margin: 0 auto 16px auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumb_nav a {
  color: var(--primary);
  font-weight: 600;
  transition: opacity 0.2s;
}

.breadcrumb_nav a:hover {
  opacity: 0.75;
}

.breadcrumb_sep {
  color: var(--border-light);
  font-size: 11px;
}

.breadcrumb_current {
  font-weight: 600;
  color: var(--text-main);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 300px;
}

/* ==========================================================================
   PREMIUM ENHANCEMENT — How-to-Download Steps (Game Blog Pages)
   ========================================================================== */

.how_to_steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.how_to_step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step_number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  font-family: var(--font-gaming);
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.step_content h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.step_content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   PREMIUM ENHANCEMENT — All-Games Page ItemList (server-rendered links)
   ========================================================================== */

.games_seo_list {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

.games_seo_table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
}

.games_seo_table th {
  background: var(--primary);
  color: #fff;
  padding: 14px 18px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

.games_seo_table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-muted);
  vertical-align: middle;
}

.games_seo_table tr:last-child td {
  border-bottom: none;
}

.games_seo_table tr:hover td {
  background: rgba(37, 99, 235, 0.02);
}

body.dark .games_seo_table tr:hover td {
  background: rgba(37, 99, 235, 0.05);
}

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

.games_seo_table td a:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.games_seo_table .tbl_icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.games_seo_table .bonus_cell {
  color: var(--success);
  font-weight: 800;
}

.games_seo_table .category_cell span {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
}

/* ==========================================================================
   PREMIUM ENHANCEMENT — View All Games CTA Button
   ========================================================================== */

.view_all_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--blue-shadow);
  transition: all 0.25s ease;
}

.view_all_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.4);
}

/* ==========================================================================
   PREMIUM ENHANCEMENT — Pulse badge for new games
   ========================================================================== */

.new_badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 7px;
  border-radius: 20px;
  background: var(--danger);
  color: #fff;
  position: relative;
}

.new_badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ==========================================================================
   PREMIUM ENHANCEMENT — Schema ItemList hidden accessibility list
   ========================================================================== */
/* ==========================================================================
   PREMIUM ENHANCEMENT — Podium Crown and Place Badge Images
   ========================================================================== */
.podium_crown {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: auto;
  z-index: 10;
  pointer-events: none;
}

.podium_place_badge {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 36px;
  height: 36px;
  object-fit: contain;
  z-index: 5;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}


