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

:root {
  /* Color system */
  --primary: #1A52C5;
  --primary-hover: #1646a8;
  --primary-dark: #0f2b5c;
  --secondary: #FFD200;
  --secondary-hover: #e6bd00;
  --accent-blue: #3b82f6;
  --accent-green: #22c55e;
  --accent-red: #ef4444;
  --neutral-50: #f8fafc;
  --neutral-100: #f1f5f9;
  --neutral-200: #e2e8f0;
  --neutral-300: #cbd5e1;
  --neutral-400: #94a3b8;
  --neutral-600: #475569;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;
  --cream-bg: #FAF9F6;
  --cream-border: #F3EFE0;
  
  /* Font styling */
  --font-main: 'Inter', sans-serif;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 15px 30px rgba(0, 0, 0, 0.04);
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--cream-bg);
  color: var(--neutral-800);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

/* Top Notification Banner */
.top-notice-bar {
  background-color: #173fa6;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #ffd200;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.top-notice-bar .icon-notice {
  font-size: 14px;
}

/* Main Container to constraint layout width */
.app-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
  min-height: 100vh;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Header & Sticky Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  color: #ffffff;
}

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

.navbar-brand img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-brand span {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.8px;
  background: linear-gradient(135deg, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

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

.navbar-btn {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.navbar-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.navbar-btn.telegram-btn {
  background-color: rgba(255, 255, 255, 0.15);
  font-weight: 700;
  font-size: 13px;
  width: auto;
  padding: 0 16px;
  gap: 6px;
}

.navbar-btn.telegram-btn:hover {
  background-color: #0088cc;
  border-color: #0088cc;
}

/* Secondary Submenu Bar */
.submenu-bar {
  background-color: #fffdf6;
  border-bottom: 1px solid #f2edd7;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none; /* Hide scrollbar for clean look */
}

.submenu-bar::-webkit-scrollbar {
  display: none;
}

.submenu-list {
  display: flex;
  list-style: none;
  padding: 8px 16px;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
}

.submenu-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.submenu-link i {
  color: var(--primary);
  font-size: 14px;
}

.submenu-link:hover {
  background-color: #f1ebd3;
  color: var(--neutral-900);
}

.submenu-link.install-link {
  color: #b45309;
}
.submenu-link.install-link i {
  color: #b45309;
}

/* Hero Banner Container */
.hero-banner-container {
  width: 100%;
  position: relative;
  background-color: var(--neutral-900);
  overflow: hidden;
  line-height: 0;
}

.hero-banner-image {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}

/* Main Content Wrapper */
.content-body {
  padding: 24px;
  flex: 1;
  background-color: #fffdf9;
}

/* Grid & Section Headers */
.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f1ebd3;
}

.section-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-dark);
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 12px;
  color: var(--neutral-400);
  margin-left: auto;
  font-weight: 500;
}

/* Top 3 Apps Grid Layout */
.top-apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

/* Top Card component */
.top-app-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #e0dfd5;
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

/* Number Rank Badge */
.top-app-rank {
  position: absolute;
  top: -12px;
  left: -12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* Game Icon with badge style */
.game-icon-wrapper {
  position: relative;
  width: 76px;
  height: 76px;
  margin-bottom: 12px;
}

.game-icon {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  background-color: var(--neutral-100);
}

.hot-badge, .new-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hot-badge {
  background-color: var(--accent-red);
}

.new-badge {
  background-color: var(--accent-green);
}

.top-app-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 10px;
}

.top-app-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}

.detail-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.detail-row.bonus {
  color: #1e3a8a;
}

.detail-row.withdrawal {
  color: #047857;
}

/* Common Yellow Button */
.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--secondary);
  color: var(--neutral-900);
  font-weight: 700;
  font-size: 14px;
  border: none;
  padding: 8px 24px;
  border-radius: 20px;
  cursor: pointer;
  width: 100%;
  max-width: 160px;
  box-shadow: 0 4px 0 #d9b300;
  transition: all 0.1s ease;
  text-align: center;
}

.btn-download:hover {
  background-color: var(--secondary-hover);
  transform: translateY(1px);
  box-shadow: 0 3px 0 #ccaa00;
}

.btn-download:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #b39500;
}

.btn-download i {
  font-size: 14px;
}

/* Control Controls Box (Tabs, Search, Sort) */
.controls-container {
  background-color: #ffffff;
  border: 1.5px solid #e0dfd5;
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Pill Tabs */
.tabs-row {
  display: flex;
  background-color: #f1ebd3;
  padding: 4px;
  border-radius: 40px;
  width: fit-content;
  align-self: center;
}

.tab-btn {
  border: none;
  background: none;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 40px;
  cursor: pointer;
  color: var(--neutral-600);
  transition: all 0.2s ease;
}

.tab-btn.active {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

/* Search Bar */
.search-wrapper {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 12px 48px 12px 18px;
  font-size: 14px;
  border: 1.5px solid #d1cfc0;
  border-radius: 40px;
  outline: none;
  font-family: var(--font-main);
  font-weight: 500;
  color: var(--neutral-800);
  transition: all 0.2s ease;
  background-color: #faf9f5;
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 82, 197, 0.15);
  background-color: #ffffff;
}

.search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 18px;
  cursor: pointer;
}

/* Sort Row */
.sort-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.sort-label {
  color: var(--neutral-600);
  display: flex;
  align-items: center;
  gap: 4px;
}

.sort-btn {
  border: 1.5px solid #d1cfc0;
  background-color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  transition: all 0.2s ease;
}

.sort-btn.active {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.sort-btn:hover:not(.active) {
  background-color: #f8fafc;
  border-color: var(--primary);
}

/* App List View Rows */
.app-list-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.app-list-item {
  display: grid;
  grid-template-columns: 40px 80px 1fr 180px;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #e0dfd5;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.app-list-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.item-index {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
}

.item-logo-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
}

.item-logo {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.item-info {
  padding-left: 12px;
}

.item-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 4px;
}

.item-meta {
  display: flex;
  gap: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral-600);
}

.item-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.item-actions .btn-download {
  width: 120px;
  padding: 6px 14px;
  font-size: 12px;
}

.item-extra-buttons {
  display: flex;
  gap: 8px;
}

.btn-icon-action {
  border: 1px solid #e2e8f0;
  background: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--neutral-600);
  transition: all 0.2s ease;
  font-size: 12px;
}

.btn-icon-action:hover {
  background-color: var(--neutral-100);
  color: var(--primary);
}

.btn-icon-action.liked {
  color: var(--accent-red);
  background-color: #fee2e2;
  border-color: #fecaca;
}

/* Info and Description Cards */
.description-card {
  background-color: #ffffff;
  border: 1.5px solid #e0dfd5;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  border-left: 4px solid var(--accent-blue);
}

.desc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 800;
  color: var(--neutral-900);
  margin-bottom: 14px;
}

.desc-header i {
  color: var(--accent-blue);
  background-color: #eff6ff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.desc-badge {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.desc-body {
  font-size: 13px;
  color: var(--neutral-600);
  line-height: 1.6;
}

.desc-body p {
  margin-bottom: 12px;
}

/* Important Notice Card */
.notice-card {
  background-color: #fffdf5;
  border: 1.5px solid #f6e0b3;
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
  text-align: center;
}

.notice-title {
  color: #b45309;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.notice-text {
  font-size: 13px;
  color: #78350f;
  margin-bottom: 8px;
  line-height: 1.6;
}

.notice-text a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.notice-alert-text {
  font-size: 12px;
  font-weight: 700;
  background-color: #fef3c7;
  color: #92400e;
  padding: 8px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 8px;
}

/* Tags Container */
.tags-container {
  display: flex;
  background-color: #ffffff;
  border: 1.5px dashed #bfdbfe;
  border-radius: var(--radius-md);
  padding: 12px;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  align-items: center;
}

.tags-header {
  background-color: var(--primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-item {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  border: 1px dashed var(--primary);
  padding: 4px 10px;
  border-radius: 30px;
  transition: all 0.2s ease;
}

.tag-item:hover {
  background-color: rgba(26, 82, 197, 0.05);
}

/* Accordion FAQ Area */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #e0dfd5;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.faq-header {
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--neutral-900);
}

.faq-header i {
  color: var(--primary);
  transition: transform 0.2s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background-color: var(--neutral-50);
  border-top: 1px solid #f1f5f9;
}

.faq-content-inner {
  padding: 16px 20px;
  font-size: 13px;
  color: var(--neutral-600);
  line-height: 1.6;
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
}

.faq-item.active .faq-content {
  max-height: 1000px; /* arbitrary large value for smooth transition */
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  max-width: 1200px;
  margin: 0 auto;
  pointer-events: none;
  z-index: 99;
}

.floating-btn {
  position: absolute;
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.2s ease;
}

.floating-btn:hover {
  transform: translateY(-2px);
}

.floating-btn-left {
  left: 24px;
  background-color: var(--accent-blue);
}

.floating-btn-right {
  right: 24px;
  background-color: var(--primary);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.floating-btn-right.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Footer Section */
footer {
  background-color: var(--primary-dark);
  color: #94a3b8;
  padding: 24px;
  text-align: center;
  font-size: 12px;
  border-top: 4px solid var(--secondary);
  margin-top: auto;
}

footer p {
  margin-bottom: 8px;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

footer .footer-link {
  color: #cbd5e1;
  font-weight: 600;
}

footer .footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive Grid Adjustments */
@media (max-width: 900px) {
  .top-apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-list-item {
    grid-template-columns: 30px 60px 1fr 140px;
    padding: 10px 12px;
  }
}

@media (max-width: 600px) {
  .top-apps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .app-list-item {
    grid-template-columns: 30px 50px 1fr;
    grid-template-rows: auto auto;
    gap: 8px;
    padding: 12px;
  }
  .item-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 10px;
    margin-top: 4px;
  }
  .item-actions .btn-download {
    max-width: none;
    flex: 1;
  }
  .content-body {
    padding: 14px;
  }
  .controls-container {
    padding: 12px;
    border-radius: var(--radius-md);
  }
  .tabs-row {
    width: 100%;
  }
  .tab-btn {
    flex: 1;
    padding: 8px 12px;
    font-size: 13px;
  }
  .floating-btn-left {
    left: 14px;
  }
  .floating-btn-right {
    right: 14px;
  }
}

/* ============================================================
   PWA INSTALL POPUP — Exact match to Android native install dialog
   Shows automatically on page load/refresh.
   Dismissed for the day with checkbox.
   Install button fires native Chrome prompt (Android) or
   shows step-by-step guide (iOS/other browsers).
   ============================================================ */

/* Dark overlay - hidden to prevent blocking page interaction */
.pwa-popup-overlay {
    display: none !important;
}

/* Bottom sheet wrapper — hidden completely as per user request */
.pwa-popup-wrap {
    display: none !important;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    max-width: calc(100vw - 40px);
    z-index: 99001;
    transform: translateY(150%);
    transition: transform .38s cubic-bezier(.34, 1.15, .64, 1);
    will-change: transform;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.pwa-popup-wrap.show {
    transform: translateY(0);
}

/* Responsiveness for mobile screen viewports - float centered card */
@media (max-width: 576px) {
    .pwa-popup-wrap {
        bottom: 12px;
        left: 12px;
        right: 12px;
        width: auto;
        max-width: calc(100vw - 24px);
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
    }
}

/* Green "Announcement" header bar — compact */
.pwa-popup-header {
    background: linear-gradient(135deg, #14532d 0%, #166534 50%, #15803d 100%);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pwa-popup-header-title {
    font-size: 11px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Nunito', -apple-system, sans-serif;
}

.pwa-popup-close-x {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0 2px;
    font-weight: 400;
    -webkit-tap-highlight-color: transparent;
    transition: color .15s;
}

.pwa-popup-close-x:hover {
    color: #fff;
}

/* White card section — compact */
.pwa-popup-card {
    background: #ffffff;
    padding: 14px 16px 12px;
}

/* "Install app" title text */
.pwa-popup-install-title {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Nunito', -apple-system, sans-serif;
    margin-bottom: 10px;
}

/* App icon + name + domain row */
.pwa-popup-app-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.pwa-popup-app-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    background: #f3f4f6;
}

.pwa-popup-app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pwa-popup-app-info {
    flex: 1;
    min-width: 0;
}

.pwa-popup-app-name {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.25;
    font-family: 'Nunito', -apple-system, sans-serif;
}

.pwa-popup-app-domain {
    font-size: 11px;
    color: #666;
    margin-top: 2px;
    font-weight: 500;
}

/* Cancel | Install action buttons */
.pwa-popup-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.pwa-popup-btn-cancel,
.pwa-popup-btn-install {
    background: none;
    border: none;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'Nunito', -apple-system, sans-serif;
    -webkit-tap-highlight-color: transparent;
    transition: background .15s;
    letter-spacing: .1px;
}

.pwa-popup-btn-cancel:hover,
.pwa-popup-btn-install:hover {
    background: rgba(29, 78, 216, 0.07);
}

/* Bottom navigation row — prev/next arrows + "do not show today" */
.pwa-popup-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px 10px;
    background: #ffffff;
    border-top: 1px solid #f3f4f6;
}

.pwa-popup-nav-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: none;
    border: 1.2px solid #d1d5db;
    color: #9ca3af;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    -webkit-tap-highlight-color: transparent;
    transition: border-color .15s, color .15s;
    font-family: sans-serif;
}

.pwa-popup-nav-arrow:hover {
    border-color: #6b7280;
    color: #4b5563;
}

.pwa-popup-noshow-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
    padding: 0 4px;
}

.pwa-popup-noshow-wrap input[type=checkbox] {
    width: 14px;
    height: 14px;
    accent-color: #1d4ed8;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 2px;
}

.pwa-popup-noshow-wrap label {
    font-size: 11px;
    color: #6b7280;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Nunito', -apple-system, sans-serif;
    line-height: 1.4;
    user-select: none;
}

/* ============================================================
   TOP COMPACT INSTALL BAR
   Shown when browser fires beforeinstallprompt (Android Chrome)
   ============================================================ */
.pwa-install-bar {
    display: none;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0d1b4b, #1e3a8a);
    padding: 10px 16px;
    border-bottom: 2px solid var(--accent-yellow);
}

.pwa-install-bar.show {
    display: flex;
}

.pwa-install-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    border: 2px solid var(--accent-yellow);
    flex-shrink: 0;
    overflow: hidden;
}

.pwa-install-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pwa-install-text {
    flex: 1;
    min-width: 0;
}

.pwa-install-title {
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pwa-install-sub {
    font-size: 10.5px;
    color: var(--accent-yellow-light);
    font-weight: 700;
    margin-top: 1px;
}

.pwa-install-btn {
    background: var(--gradient-yellow);
    color: #0d1b4b;
    font-size: 12px;
    font-weight: 900;
    border: none;
    border-radius: 50px;
    padding: 8px 16px;
    cursor: pointer;
    font-family: 'Nunito', -apple-system, sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(234, 179, 8, .35);
}

.pwa-install-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .6);
    font-size: 18px;
    cursor: pointer;
    padding: 2px 6px;
    flex-shrink: 0;
    line-height: 1;
}

/* ============================================================
   iOS / OTHER BROWSER STEP-BY-STEP INSTALL SHEET
   ============================================================ */
.ios-install-sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 99500;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s;
}

.ios-install-sheet-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.ios-install-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99501;
    background: #fff;
    border-radius: 22px 22px 0 0;
    border-top: 3px solid var(--accent-yellow);
    padding: 0 22px 40px;
    transform: translateY(110%);
    transition: transform .32s cubic-bezier(.34, 1.3, .64, 1);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.25);
}

.ios-install-sheet.open {
    transform: translateY(0);
}

.ios-sheet-handle {
    width: 38px;
    height: 4px;
    background: #e5e7eb;
    border-radius: 99px;
    margin: 14px auto 18px;
}

.ios-sheet-header {
    text-align: center;
    margin-bottom: 18px;
}

.ios-sheet-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto 10px;
    border: 2px solid rgba(29, 78, 216, 0.15);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.ios-sheet-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ios-sheet-title {
    font-size: 17px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.ios-sheet-sub {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 700;
}

.ios-sheet-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.ios-sheet-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 12px;
}

.ios-sheet-step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.ios-sheet-step-text {
    font-size: 13.5px;
    font-weight: 600;
    color: #374151;
    line-height: 1.4;
}

.ios-sheet-step-text i {
    color: var(--accent-primary);
    margin: 0 3px;
}

.ios-sheet-btn-close {
    display: block;
    width: 100%;
    background: var(--gradient-bg);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    text-align: center;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.25);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.ios-sheet-btn-close:active {
    transform: scale(0.98);
    opacity: 0.9;
}

/* ============================================================
   NEW CUSTOM THEME STYLES (MATCHING SCREENSHOT)
   ============================================================ */

/* Theme variables */
:root {
  --theme-navy: #00226b;
  --theme-blue-btn: #1d4ed8;
  --theme-blue-hover: #1e40af;
  --theme-bg-cream: #fffdf0;
  --theme-border: #e2e8f0;
  --theme-text-dark: #0f172a;
  --theme-text-grey: #475569;
}

/* Secondary Navbar (Links under main header) */
.secondary-nav {
  background-color: #ffffff;
  border-bottom: 1.5px solid var(--theme-border);
  padding: 10px 24px;
  overflow-x: auto;
  white-space: nowrap;
}
.secondary-nav-list {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.secondary-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--theme-text-grey);
  transition: color 0.2s ease;
}
.secondary-nav-link:hover {
  color: var(--theme-blue-btn);
}
.secondary-nav-link i {
  font-size: 14px;
}

/* Header customization overrides */
header, .theme-header, .theme-navbar {
  background: #00226b !important;
  background-color: #00226b !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}
.theme-navbar {
  padding: 10px 24px !important;
}
.theme-navbar-brand a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.theme-navbar-brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}
.theme-navbar-brand a:hover img {
  transform: rotate(15deg) scale(1.05);
}
.theme-navbar-brand span {
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  font-family: 'Nunito', sans-serif !important;
  font-weight: 900 !important;
  font-size: 22px !important;
}

/* Sleek Uniform Circular Navbar Buttons */
.theme-navbar-btn {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease-in-out !important;
}
.theme-navbar-btn:hover {
  background-color: var(--theme-blue-btn) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}
.theme-navbar-btn.telegram-btn:hover {
  background-color: #0088cc !important;
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
}

/* Typewriter cursor blinking animation */
.top-notice-bar span::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  font-weight: bold;
  animation: noticeCursorBlink 0.75s step-end infinite;
}
@keyframes noticeCursorBlink {
  from, to { color: transparent }
  50% { color: #ffffff }
}

/* Download Button Pulsating Glow Animation */
@keyframes downloadPulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(29, 78, 216, 0.7);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.4);
  }
}
.download-main-btn {
  animation: downloadPulseGlow 2.5s infinite ease-in-out !important;
  background: linear-gradient(135deg, #1d4ed8, #2563eb, #1d4ed8) !important;
  background-size: 200% 200% !important;
  transition: all 0.3s ease !important;
}
.download-main-btn:hover {
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.6) !important;
  animation: none !important;
}

/* Responsive Overrides for Mobile Viewport */
@media (max-width: 576px) {
  .theme-navbar {
    padding: 8px 12px !important;
  }
  .theme-navbar-brand a {
    gap: 8px !important;
  }
  .theme-navbar-brand span {
    font-size: 18px !important;
  }
  .theme-navbar-brand img {
    width: 32px !important;
    height: 32px !important;
  }
  .theme-navbar-btn {
    width: 34px !important;
    height: 34px !important;
    font-size: 13px !important;
  }
  .top-notice-bar {
    font-size: 11px !important;
    padding: 6px 8px !important;
  }
}

/* Page Background for Content Pages */
.themed-content-page {
  background-color: var(--theme-bg-cream);
  min-height: 100vh;
}
.themed-card-container {
  max-width: 1000px;
  margin: 32px auto;
  padding: 0 16px;
}
.themed-card {
  background: #ffffff;
  border: 1px solid var(--theme-border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

/* Promo Code Page Components */
.promo-title-section {
  text-align: center;
  margin-bottom: 24px;
}
.promo-main-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--theme-navy);
  text-transform: uppercase;
}
.promo-sub-title {
  font-size: 14px;
  color: var(--theme-text-grey);
  margin-top: 4px;
}

/* Promo Search */
.promo-search-bar {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto 24px;
  background: #ffffff;
  border: 1px solid var(--theme-border);
  border-radius: 12px;
  padding: 6px 12px;
  align-items: center;
}
.promo-search-input {
  border: none;
  flex: 1;
  font-size: 15px;
  outline: none;
}
.promo-search-btn {
  background-color: var(--theme-blue-btn);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* Promo Card */
.promo-card {
  background: #ffffff;
  border: 1px solid var(--theme-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  margin-bottom: 32px;
}
.promo-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.promo-card-logo-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: visible;
  border: 1px solid #e2e8f0;
}
.promo-card-logo-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}
.promo-card-verify-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background-color: #22c55e;
  color: #ffffff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border: 2px solid #ffffff;
}
.promo-card-title-area {
  flex: 1;
}
.promo-card-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--theme-text-dark);
}
.promo-card-tags {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.promo-card-tag {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
}
.promo-card-tag.voucher {
  background-color: #fee2e2;
  color: #dc2626;
}
.promo-card-tag.bonus {
  background-color: #dcfce7;
  color: #15803d;
}

/* Promo Code Box */
.promo-code-box-wrapper {
  background-color: #f8fafc;
  border: 1.5px dashed #cbd5e1;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.promo-code-text {
  font-size: 22px;
  font-weight: 900;
  font-family: monospace;
  color: var(--theme-navy);
  letter-spacing: 1px;
}
.promo-copy-btn {
  background-color: var(--theme-blue-btn);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.promo-copy-btn:hover {
  background-color: var(--theme-blue-hover);
}

/* Promo Actions */
.promo-card-actions {
  display: flex;
  gap: 12px;
}
.promo-btn-download {
  flex: 1;
  background-color: var(--theme-navy);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-weight: 800;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: justify-content;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s;
}
.promo-btn-download:hover {
  opacity: 0.95;
}
.promo-btn-share {
  background-color: #dcfce7;
  color: #15803d;
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.promo-btn-share:hover {
  background-color: #bbf7d0;
}

/* How to Claim section */
.claim-section {
  background: #ffffff;
  border: 1px solid var(--theme-border);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  margin-bottom: 32px;
}
.claim-title-row {
  text-align: center;
  margin-bottom: 28px;
}
.claim-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--theme-text-dark);
}
.claim-title span {
  color: #dc2626;
}
.claim-subtitle {
  font-size: 13px;
  color: var(--theme-text-grey);
  margin-top: 4px;
}
.claim-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}
.claim-image-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.claim-screenshot {
  width: 100%;
  border-radius: 12px;
  border: 1.5px solid var(--theme-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.claim-screenshot-btn {
  background-color: var(--theme-navy);
  color: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.claim-steps-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.claim-step-card {
  border-left: 3px solid var(--theme-blue-btn);
  background-color: #f8fafc;
  padding: 16px;
  border-radius: 0 12px 12px 0;
}
.claim-step-meta {
  font-size: 11px;
  font-weight: 900;
  color: var(--theme-blue-btn);
  text-transform: uppercase;
}
.claim-step-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--theme-text-dark);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.claim-step-desc {
  font-size: 12.5px;
  color: var(--theme-text-grey);
  margin-top: 4px;
}

/* Megaphone banner */
.mega-banner {
  background-color: #1e3a8a;
  color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.mega-banner-icon {
  font-size: 28px;
  color: #fde047;
}
.mega-banner-text-wrap {
  flex: 1;
}
.mega-banner-title {
  font-size: 15px;
  font-weight: 900;
}
.mega-banner-desc {
  font-size: 13px;
  opacity: 0.9;
  margin-top: 2px;
}

/* Footer Banner Rows (Join TG & Share) */
.footer-banner-row-blue {
  background-color: #eff6ff;
  border-top: 1px solid #dbeafe;
  border-bottom: 1px solid #dbeafe;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto 12px;
  border-radius: 12px;
}
.footer-banner-row-yellow {
  background-color: #fffbeb;
  border-top: 1px solid #fef3c7;
  border-bottom: 1px solid #fef3c7;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto 24px;
  border-radius: 12px;
}
.footer-banner-text {
  font-size: 16px;
  font-weight: 800;
  color: var(--theme-navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-banner-btn-blue {
  background-color: var(--theme-navy);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-banner-btn-yellow {
  background-color: #eab308;
  color: #0f172a;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Bottom centered footer */
.theme-footer {
  background-color: #ffffff !important;
  color: var(--theme-text-grey) !important;
  border-top: 1px solid var(--theme-border) !important;
  padding: 32px 24px !important;
  text-align: center;
}
.theme-footer-desc {
  font-size: 12px;
  color: var(--theme-text-grey);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.theme-footer-links {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.theme-footer-links a {
  color: var(--theme-blue-btn) !important;
  font-weight: 700;
}
.theme-footer-tg {
  font-size: 14px;
  font-weight: 800;
  color: var(--theme-navy);
  margin-bottom: 20px;
}
.theme-footer-tg a {
  color: var(--theme-blue-btn);
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .claim-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .promo-card-actions {
    flex-direction: column;
  }
}



/* ============================================================
   GAME DETAIL PAGE STYLES (FROM USER TEMPLATE)
   ============================================================ */

@font-face {

            font-family: 'Bebas Neue';

            font-display: swap;

        }



        @font-face {

            font-family: 'Nunito';

            font-display: swap;

        }



        *,

        *::before,

        *::after {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }



        :root {

            --bg-primary: #fffdf0;

            --bg-card: #ffffff;

            --text-primary: #0d1b4b;

            --text-secondary: #1e40af;

            --accent-primary: #1d4ed8;

            --accent-dark: #1e3a8a;

            --accent-light: #3b82f6;

            --accent-yellow: #facc15;

            --accent-yellow-dark: #eab308;

            --accent-yellow-light: #fef08a;

            --accent-glow: rgba(29, 78, 216, 0.18);

            --border-color: rgba(29, 78, 216, 0.22);

            --gradient-bg: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #3b82f6 100%);

            --gradient-yellow: linear-gradient(135deg, #eab308 0%, #facc15 60%, #fde047 100%);

            --gradient-hero: linear-gradient(135deg, #0d1b4b 0%, #1e3a8a 40%, #1d4ed8 100%);

            --green: #1d4ed8;

            --orange: #f59e0b;

            --blue: #3b82f6;

            --purple: #8b5cf6;

            --red: #dc2626;

            --card-shadow: 0 4px 24px rgba(29, 78, 216, .10);

            --tg: #0088cc;

            --text: #0d1b4b;

            --muted: #555;

            --border: #dbeafe;

            --bg: #fffdf0;

            --white: #fff;

        }



        html {

            scroll-behavior: smooth;

        }



        body {

            font-family: 'Nunito', -apple-system, sans-serif;

            background: var(--bg-primary);

            color: var(--text-primary);

            min-height: 100vh;

            overflow-x: hidden;

            animation: bodyFade .45s ease both;

        }



        @keyframes bodyFade {

            from {

                opacity: 0

            }



            to {

                opacity: 1

            }

        }



        a {

            text-decoration: none;

            color: inherit;

        }



        img {

            max-width: 100%;

            display: block;

        }



        @keyframes fadeUp {

            from {

                opacity: 0;

                transform: translateY(28px)

            }



            to {

                opacity: 1;

                transform: translateY(0)

            }

        }



        @keyframes fadeIn {

            from {

                opacity: 0

            }



            to {

                opacity: 1

            }

        }



        @keyframes slideDown {

            from {

                opacity: 0;

                transform: translateY(-100%)

            }



            to {

                opacity: 1;

                transform: translateY(0)

            }

        }



        @keyframes shimmer {

            0% {

                background-position: -400px 0

            }



            100% {

                background-position: 400px 0

            }

        }



        @keyframes floatLogo {



            0%,

            100% {

                transform: translateY(0) rotate(0deg)

            }



            33% {

                transform: translateY(-6px) rotate(.8deg)

            }



            66% {

                transform: translateY(-3px) rotate(-.5deg)

            }

        }



        @keyframes pulseBorder {



            0%,

            100% {

                box-shadow: 0 0 0 0 rgba(29, 78, 216, .45), var(--card-shadow)

            }



            50% {

                box-shadow: 0 0 0 7px rgba(29, 78, 216, 0), var(--card-shadow)

            }

        }



        @keyframes btnBeat {



            0%,

            100% {

                transform: scale(1);

                box-shadow: 0 4px 18px rgba(234, 179, 8, .35)

            }



            50% {

                transform: scale(1.025);

                box-shadow: 0 8px 28px rgba(234, 179, 8, .55)

            }

        }



        @keyframes slideRight {

            from {

                opacity: 0;

                transform: translateX(-20px)

            }



            to {

                opacity: 1;

                transform: translateX(0)

            }

        }



        @keyframes ripple {

            0% {

                transform: scale(1);

                opacity: .6

            }



            100% {

                transform: scale(2.4);

                opacity: 0

            }

        }



        @keyframes pulse {

            0% {

                box-shadow: 0 0 0 0 rgba(29, 78, 216, .6)

            }



            70% {

                box-shadow: 0 0 0 7px rgba(29, 78, 216, 0)

            }



            100% {

                box-shadow: 0 0 0 0 rgba(29, 78, 216, 0)

            }

        }



        /* ── HEADER ── */

        .site-header {

            background: var(--gradient-hero);

            position: sticky;

            top: 0;

            z-index: 999;

            box-shadow: 0 4px 18px rgba(29, 78, 216, .4);

            border-bottom: 3px solid var(--accent-yellow);

            animation: slideDown .45s cubic-bezier(.22, .68, 0, 1.2) both;

            overflow: hidden;

        }



        .site-header::after {

            content: '';

            position: absolute;

            right: -30px;

            top: -30px;

            width: 140px;

            height: 140px;

            border-radius: 50%;

            background: radial-gradient(circle, rgba(250, 204, 21, .25), transparent 70%);

            pointer-events: none;

        }



        .header-inner {

            max-width: 900px;

            margin: 0 auto;

            padding: 0 16px;

            display: flex;

            align-items: center;

            justify-content: space-between;

            height: 58px;

            gap: 10px;

        }



        .header-logo {

            display: flex;

            align-items: center;

            gap: 10px;

            transition: opacity .2s;

            flex-shrink: 0;

        }



        .header-logo:hover {

            opacity: .85;

        }



        .header-logo img {

            height: 40px;

            border-radius: 12px;

            border: 2.5px solid var(--accent-yellow);

            box-shadow: 0 2px 10px rgba(0, 0, 0, .3);

            transition: transform .3s;

        }



        .header-logo:hover img {

            transform: rotate(-4deg) scale(1.08);

        }



        .header-brand {

            color: #fff;

            font-size: 1.15rem;

            font-weight: 900;

            letter-spacing: 1px;

            font-family: 'Bebas Neue', 'Arial Narrow', Arial, sans-serif;

            text-shadow: 0 2px 8px rgba(0, 0, 0, .3);

        }



        .header-brand span {

            color: var(--accent-yellow);

        }



        .header-nav {

            display: flex;

            gap: 4px;

            align-items: center;

        }



        .header-nav a {

            color: rgba(255, 255, 255, .9);

            font-size: .82rem;

            font-weight: 700;

            display: flex;

            align-items: center;

            gap: 4px;

            padding: 6px 10px;

            border-radius: 6px;

            transition: background .2s, color .2s;

        }



        .header-nav a:hover {

            background: rgba(255, 255, 255, .18);

            color: #fff;

        }



        .tg-header-btn {

            background: rgba(250, 204, 21, .18) !important;

            border: 2px solid rgba(250, 204, 21, .55) !important;

            color: #fff !important;

            padding: 6px 13px !important;

            border-radius: 20px !important;

            font-size: .82rem !important;

            font-weight: 800 !important;

        }



        .home-icon-btn {

            display: flex;

            align-items: center;

            justify-content: center;

            width: 36px;

            height: 36px;

            border-radius: 50%;

            background: rgba(250, 204, 21, .18);

            border: 2px solid rgba(250, 204, 21, .55);

            color: #fff;

            font-size: .95rem;

            transition: background .2s, transform .2s;

            flex-shrink: 0;

        }



        .home-icon-btn:hover {

            background: rgba(250, 204, 21, .32);

            transform: scale(1.1);

        }



        @media(max-width:600px) {

            .header-nav {

                display: none;

            }

        }



        /* ── LAYOUT ── */

        .container {

            max-width: 900px;

            margin: 0 auto;

            padding: 0 14px 40px;

        }



        /* ── HERO CARD ── */

        .hero-card {

            background: var(--white);

            border-radius: 20px;

            padding: 28px 20px 22px;

            margin: 20px 0 16px;

            box-shadow: var(--card-shadow);

            text-align: center;

            position: relative;

            overflow: hidden;

            animation: fadeUp .6s .1s ease both;

            border: 1.5px solid var(--border-color);

        }



        .hero-card::before {

            content: '';

            position: absolute;

            top: 0;

            left: 0;

            right: 0;

            height: 4px;

            background: var(--gradient-bg);

        }



        .hero-app-logo {

            width: 120px;

            height: 120px;

            border-radius: 24px;

            object-fit: cover;

            border: 3px solid var(--accent-primary);

            margin: 0 auto 14px;

            animation: floatLogo 4s ease-in-out infinite, pulseBorder 2.5s ease-in-out infinite;

            position: relative;

            z-index: 1;

        }



        .hero-app-name {

            font-size: 2rem;

            font-weight: 900;

            color: var(--text-primary);

            margin-bottom: 2px;

            animation: fadeUp .5s .25s both;

            font-family: 'Bebas Neue', 'Arial Narrow', Arial, sans-serif;

            letter-spacing: .5px;

        }



        .hero-app-sub {

            color: var(--accent-primary);

            font-weight: 700;

            font-size: 1rem;

            margin-bottom: 18px;

            animation: fadeUp .5s .32s both;

        }



        .stats-strip {

            display: flex;

            flex-wrap: wrap;

            justify-content: center;

            gap: 8px 20px;

            margin-bottom: 20px;

            padding: 13px 16px;

            background: #eff6ff;

            border-radius: 12px;

            border: 1px solid var(--border-color);

            animation: fadeUp .5s .4s both;

        }



        .stat-item {

            display: flex;

            align-items: center;

            gap: 6px;

            font-size: .93rem;

            font-weight: 800;

            color: #444;

            transition: transform .2s;

        }



        .stat-item:hover {

            transform: scale(1.08);

        }



        .stat-item i {

            color: var(--accent-primary);

        }



        .stat-item .s-val {

            color: var(--text-primary);

        }



        /* ── STAR RATING ── */

        .star-rating {

            display: flex;

            align-items: center;

            justify-content: center;

            gap: 3px;

        }



        .star-rating i {

            color: var(--accent-yellow-dark);

            font-size: .9rem;

        }



        .star-rating i.half {

            color: var(--accent-yellow-dark);

            opacity: .6;

        }



        .star-rating i.empty {

            color: #d1d5db;

        }



        /* ── DOWNLOAD BTN ── */

        .download-main-btn {

            display: flex;

            align-items: center;

            justify-content: center;

            gap: 10px;

            background: var(--gradient-yellow);

            color: #0d1b4b;

            font-size: 1.1rem;

            font-weight: 900;

            padding: 15px 24px;

            border-radius: 12px;

            letter-spacing: .5px;

            width: 100%;

            max-width: 420px;

            margin: 0 auto 12px;

            position: relative;

            overflow: hidden;

            animation: fadeUp .5s .48s both, btnBeat 2.4s 1.2s ease-in-out infinite;

            transition: filter .2s;

            box-shadow: 0 4px 18px rgba(234, 179, 8, .4);

        }



        .download-main-btn:hover {

            filter: brightness(1.06);

        }



        .download-main-btn::before {

            content: '';

            position: absolute;

            inset: 0;

            background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .3) 50%, transparent 70%);

            background-size: 200% 100%;

            animation: shimmer 2.6s linear infinite;

        }



        /* ── TELEGRAM BTN ── */

        .telegram-btn {

            display: flex;

            align-items: center;

            justify-content: center;

            gap: 8px;

            background: var(--white);

            color: var(--text-primary);

            font-weight: 800;

            font-size: 1rem;

            padding: 13px 24px;

            border-radius: 12px;

            border: 2px solid var(--accent-primary);

            width: 100%;

            max-width: 420px;

            margin: 0 auto;

            animation: fadeUp .5s .56s both;

            transition: background .25s, color .25s, border-color .25s;

        }



        .telegram-btn i {

            color: #0088cc;

            font-size: 1.2rem;

            transition: color .25s;

        }



        .telegram-btn:hover {

            background: #0088cc;

            color: #fff;

            border-color: #0088cc;

        }



        .telegram-btn:hover i {

            color: #fff;

        }



        /* ── INFO BOX ── */

        .info-box {

            background: var(--white);

            border-radius: 14px;

            padding: 16px;

            margin: 0 0 16px;

            box-shadow: var(--card-shadow);

            border: 1.5px solid var(--border-color);

            border-top: 4px solid var(--accent-primary);

            animation: fadeUp .55s .18s both;

        }



        .info-box h2 {

            font-size: .85rem;

            font-weight: 800;

            color: var(--text-primary);

            margin-bottom: 7px;

            line-height: 1.45;

        }



        .info-box p {

            font-size: .78rem;

            color: var(--muted);

            line-height: 1.7;

        }



        .info-box p strong {

            color: var(--text-primary);

        }



        /* ── RELATED APPS HEADER ── */

        .related-header {

            background: var(--gradient-bg);

            color: #fff;

            font-size: 1.15rem;

            font-weight: 900;

            padding: 14px 20px;

            border-radius: 12px 12px 0 0;

            letter-spacing: .3px;

            display: flex;

            align-items: center;

            gap: 10px;

            position: relative;

            overflow: hidden;

            font-family: 'Bebas Neue', 'Arial Narrow', Arial, sans-serif;

        }



        .related-header::before {

            content: '';

            position: absolute;

            inset: 0;

            background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .12) 50%, transparent 70%);

            background-size: 200% 100%;

            animation: shimmer 3s linear infinite;

        }



        /* ── APP LIST ── */

        .app-list {

            list-style: none;

            padding: 0;

            display: flex;

            flex-direction: column;

            background: var(--white);

            border-radius: 0 0 14px 14px;

            box-shadow: var(--card-shadow);

            overflow: hidden;

            margin-bottom: 0;

            border: 1.5px solid var(--border-color);

            border-top: none;

        }



        .app-item {

            display: flex;

            align-items: center;

            padding: 12px 14px;

            gap: 10px;

            border-bottom: 1px solid #eff6ff;

            transition: background .18s, transform .18s;

            opacity: 0;

            animation: slideRight .4s ease forwards;

        }



        .app-item:last-child {

            border-bottom: none;

        }



        .app-item:hover {

            background: #eff6ff;

            transform: translateX(3px);

        }



        .app-num {

            font-size: .82rem;

            font-weight: 900;

            color: var(--accent-primary);

            min-width: 28px;

            height: 28px;

            display: flex;

            align-items: center;

            justify-content: center;

            background: rgba(29, 78, 216, .1);

            border-radius: 50%;

            flex-shrink: 0;

            font-family: 'Nunito', -apple-system, sans-serif;

        }



        .app-icon-wrap {

            flex-shrink: 0;

        }



        .app-icon {

            width: 60px;

            height: 60px;

            border-radius: 12px;

            object-fit: cover;

            border: 2px solid var(--border-color);

            transition: transform .25s, box-shadow .25s;

        }



        .app-item:hover .app-icon {

            transform: scale(1.07) rotate(2deg);

            box-shadow: 0 4px 14px rgba(29, 78, 216, .22);

        }



        .app-details {

            flex: 1;

            min-width: 0;

        }



        .app-title {

            font-size: 1rem;

            font-weight: 800;

            color: var(--text-primary);

            margin-bottom: 5px;

            white-space: nowrap;

            overflow: hidden;

            text-overflow: ellipsis;

        }



        .app-meta {

            display: flex;

            flex-direction: column;

            gap: 3px;

        }



        .meta-bonus {

            font-size: .82rem;

            font-weight: 700;

            color: var(--accent-dark);

        }



        .meta-bonus i {

            margin-right: 3px;

            color: var(--accent-yellow-dark);

        }



        .meta-withdraw {

            font-size: .82rem;

            font-weight: 700;

            color: var(--accent-primary);

        }



        .meta-withdraw i {

            margin-right: 3px;

        }



        .dl-btn {

            flex-shrink: 0;

            background: var(--gradient-yellow);

            color: #0d1b4b;

            padding: 9px 15px;

            border-radius: 8px;

            font-weight: 800;

            font-size: .86rem;

            white-space: nowrap;

            display: flex;

            align-items: center;

            gap: 5px;

            box-shadow: 0 2px 8px rgba(234, 179, 8, .35);

            transition: transform .15s, box-shadow .15s, filter .15s;

            position: relative;

            overflow: hidden;

        }



        .dl-btn:hover {

            transform: translateY(-2px);

            box-shadow: 0 5px 16px rgba(234, 179, 8, .5);

            filter: brightness(1.06);

        }



        /* ── SECTION CARDS ── */

        .section-card {

            background: var(--white);

            border-radius: 16px;

            margin: 0 0 16px;

            box-shadow: var(--card-shadow);

            overflow: hidden;

            border: 1.5px solid var(--border-color);

        }



        .section-hdr {

            display: flex;

            align-items: center;

            gap: 10px;

            padding: 14px 18px;

            border-bottom: 1px solid #eff6ff;

            background: linear-gradient(100deg, #eff6ff, #fff);

        }



        .section-hdr-icon {

            width: 36px;

            height: 36px;

            border-radius: 10px;

            display: flex;

            align-items: center;

            justify-content: center;

            font-size: .95rem;

            flex-shrink: 0;

        }



        .section-hdr-title {

            font-size: 1rem;

            font-weight: 900;

            color: var(--text-primary);

        }



        .section-hdr-sub {

            font-size: .75rem;

            color: var(--muted);

            margin-top: 1px;

        }



        .section-body {

            padding: 16px 18px;

        }



        /* ── ABOUT ── */

        .about-hdr-icon {

            background: linear-gradient(135deg, rgba(29, 78, 216, .13), rgba(29, 78, 216, .04));

            color: var(--accent-primary);

        }



        .about-text {

            font-size: .88rem;

            color: var(--muted);

            line-height: 1.75;

            margin-bottom: 12px;

        }



        .about-text:last-child {

            margin-bottom: 0;

        }



        .about-text strong {

            color: var(--text-primary);

        }



        /* ── KEY FEATURES ── */

        .features-hdr-icon {

            background: linear-gradient(135deg, rgba(234, 179, 8, .13), rgba(234, 179, 8, .04));

            color: var(--accent-yellow-dark);

        }



        .features-grid {

            display: grid;

            grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));

            gap: 10px;

        }



        .feature-item {

            display: flex;

            align-items: flex-start;

            gap: 11px;

            background: #eff6ff;

            border: 1px solid var(--border-color);

            border-radius: 12px;

            padding: 12px 13px;

            transition: transform .18s, box-shadow .18s;

        }



        .feature-item:hover {

            transform: translateY(-2px);

            box-shadow: 0 6px 18px rgba(29, 78, 216, .12);

        }



        .feature-icon {

            width: 36px;

            height: 36px;

            border-radius: 9px;

            display: flex;

            align-items: center;

            justify-content: center;

            font-size: .95rem;

            flex-shrink: 0;

        }



        .feature-title {

            font-size: .85rem;

            font-weight: 800;

            color: var(--text-primary);

            margin-bottom: 2px;

        }



        .feature-desc {

            font-size: .76rem;

            color: var(--muted);

            line-height: 1.5;

        }



        /* ── DOWNLOAD STEPS ── */

        .download-hdr-icon {

            background: linear-gradient(135deg, rgba(59, 130, 246, .13), rgba(59, 130, 246, .04));

            color: var(--blue);

        }



        .steps-list {

            display: flex;

            flex-direction: column;

            gap: 0;

        }



        .step-item {

            display: flex;

            align-items: flex-start;

            gap: 13px;

            padding: 13px 0;

            border-bottom: 1px solid #eff6ff;

        }



        .step-item:last-child {

            border-bottom: none;

            padding-bottom: 0;

        }



        .step-num-circle {

            width: 32px;

            height: 32px;

            border-radius: 50%;

            background: var(--gradient-bg);

            color: #fff;

            font-size: .82rem;

            font-weight: 900;

            display: flex;

            align-items: center;

            justify-content: center;

            flex-shrink: 0;

            margin-top: 1px;

            box-shadow: 0 3px 10px rgba(29, 78, 216, .3);

        }



        .step-content {

            flex: 1;

        }



        .step-title {

            font-size: .88rem;

            font-weight: 800;

            color: var(--text-primary);

            margin-bottom: 3px;

        }



        .step-desc {

            font-size: .79rem;

            color: var(--muted);

            line-height: 1.55;

        }



        .step-desc strong {

            color: var(--text-primary);

        }



        /* ── HINDI STEPS ── */

        .register-hdr-icon {

            background: linear-gradient(135deg, rgba(139, 92, 246, .13), rgba(139, 92, 246, .04));

            color: var(--purple);

        }



        .hindi-steps {

            display: flex;

            flex-direction: column;

            gap: 8px;

        }



        .hindi-step {

            display: flex;

            align-items: flex-start;

            gap: 10px;

            background: #eff6ff;

            border: 1px solid var(--border-color);

            border-radius: 10px;

            padding: 11px 12px;

        }



        .hindi-step-icon {

            width: 28px;

            height: 28px;

            border-radius: 7px;

            display: flex;

            align-items: center;

            justify-content: center;

            font-size: .8rem;

            flex-shrink: 0;

            color: #fff;

        }



        .hindi-step-icon.reg {

            background: linear-gradient(135deg, var(--purple), #a78bfa);

        }



        .hindi-step-icon.bon {

            background: var(--gradient-bg);

        }



        .hindi-step-text {

            font-size: .82rem;

            color: var(--muted);

            line-height: 1.6;

        }



        .hindi-step-text strong {

            color: var(--text-primary);

            font-size: .85rem;

        }



        /* ── BONUS ── */

        .bonus-hdr-icon {

            background: linear-gradient(135deg, rgba(29, 78, 216, .13), rgba(29, 78, 216, .04));

            color: var(--accent-primary);

        }



        .bonus-cards {

            display: grid;

            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));

            gap: 9px;

            margin-bottom: 12px;

        }



        .bonus-card {

            background: #eff6ff;

            border: 1px solid var(--border-color);

            border-radius: 11px;

            padding: 13px 10px;

            text-align: center;

            transition: transform .18s, box-shadow .18s;

        }



        .bonus-card:hover {

            transform: translateY(-2px);

            box-shadow: 0 6px 16px rgba(29, 78, 216, .12);

        }



        .bonus-card-icon {

            font-size: 1.4rem;

            margin-bottom: 6px;

        }



        .bonus-card-val {

            font-size: 1rem;

            font-weight: 900;

            color: var(--accent-dark);

            margin-bottom: 2px;

        }



        .bonus-card-lbl {

            font-size: .72rem;

            font-weight: 700;

            color: var(--muted);

        }



        /* ── SAFETY ── */

        .safety-hdr-icon {

            background: linear-gradient(135deg, rgba(29, 78, 216, .13), rgba(29, 78, 216, .04));

            color: var(--accent-primary);

        }



        .safety-grid {

            display: grid;

            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));

            gap: 9px;

        }



        .safety-item {

            display: flex;

            align-items: center;

            gap: 10px;

            background: #eff6ff;

            border: 1px solid #bfdbfe;

            border-radius: 10px;

            padding: 11px 13px;

        }



        .safety-item i {

            color: var(--accent-primary);

            font-size: .95rem;

            flex-shrink: 0;

            width: 16px;

            text-align: center;

        }



        .safety-item-text {

            font-size: .82rem;

            font-weight: 700;

            color: var(--accent-dark);

        }



        /* ── DISCLAIMER ── */

        .disclaimer-box {

            background: #fffbeb;

            border: 1px solid rgba(234, 179, 8, .4);

            border-left: 4px solid var(--accent-yellow-dark);

            border-radius: 12px;

            padding: 16px 18px;

            margin: 16px 0;

            font-size: .88rem;

            color: #555;

            line-height: 1.75;

        }



        .disclaimer-box strong {

            color: var(--accent-dark);

        }



        /* ══════════════════════════════════════════════════════

   AUTO-SCROLLING TAGS BAR

══════════════════════════════════════════════════════ */

        .tags-scroll-section {

            border-top: 2.5px dashed var(--accent-primary);

            border-bottom: 2.5px dashed var(--accent-primary);

            background: #eff6ff;

            overflow: hidden;

            display: flex;

            align-items: stretch;

            margin-top: 16px;

        }



        .tags-scroll-label {

            flex-shrink: 0;

            background: var(--gradient-bg);

            color: #fff;

            font-size: 10px;

            font-weight: 900;

            letter-spacing: .8px;

            text-transform: uppercase;

            padding: 0 14px;

            display: flex;

            align-items: center;

            gap: 5px;

            white-space: nowrap;

            border-right: 2px solid rgba(255, 255, 255, .25);

            box-shadow: 3px 0 10px rgba(29, 78, 216, .2);

            z-index: 2;

            position: relative;

        }



        .tags-scroll-track {

            flex: 1;

            overflow: hidden;

            display: flex;

            align-items: center;

            position: relative;

            min-width: 0;

        }



        .tags-scroll-track::before,

        .tags-scroll-track::after {

            content: '';

            position: absolute;

            top: 0;

            bottom: 0;

            width: 28px;

            z-index: 1;

            pointer-events: none;

        }



        .tags-scroll-track::before {

            left: 0;

            background: linear-gradient(to right, #eff6ff, transparent);

        }



        .tags-scroll-track::after {

            right: 0;

            background: linear-gradient(to left, #eff6ff, transparent);

        }



        .tags-scroll-belt {

            display: inline-flex;

            align-items: center;

            gap: 8px;

            padding: 8px 14px;

            white-space: nowrap;

            will-change: transform;

            animation: tagsBelt 25s linear infinite;

        }



        .tags-scroll-belt:hover {

            animation-play-state: paused;

        }



        @keyframes tagsBelt {

            from {

                transform: translateX(0);

            }



            to {

                transform: translateX(-50%);

            }

        }



        .tag-pill {

            display: inline-flex;

            align-items: center;

            gap: 5px;

            background: #fff;

            border: 1.5px solid rgba(29, 78, 216, .3);

            border-radius: 999px;

            padding: 5px 13px;

            font-size: 11.5px;

            font-weight: 700;

            color: var(--accent-dark);

            white-space: nowrap;

            flex-shrink: 0;

            cursor: default;

            transition: background .2s, color .2s, transform .15s, border-color .2s;

            user-select: none;

            box-shadow: 0 1px 4px rgba(29, 78, 216, .10);

        }



        .tag-pill:hover {

            background: var(--accent-primary);

            color: #fff;

            border-color: var(--accent-primary);

            transform: scale(1.07);

        }



        .tag-pill i {

            font-size: 9px;

            opacity: .6;

        }



        /* ── FOOTER ── */

        footer {

            background: linear-gradient(to top, #eff6ff, #fff);

            border-top: 3px solid var(--accent-primary);

            text-align: center;

            padding: 20px 12px;

            color: #555;

            font-size: .87rem;

            margin-top: 10px;

            animation: fadeIn .6s .5s both;

        }



        footer a {

            color: var(--accent-primary);

            font-weight: 700;

            transition: color .2s;

        }



        footer a:hover {

            color: var(--accent-dark);

        }



        footer strong {

            color: var(--text-primary);

        }



        /* ── SCROLL REVEAL ── */

        .js-reveal {

            opacity: 0;

            transform: translateY(22px);

            transition: opacity .5s ease, transform .5s ease;

        }



        .js-reveal.visible {

            opacity: 1;

            transform: translateY(0);

        }



        @media(max-width:580px) {

            .features-grid {

                grid-template-columns: 1fr;

            }



            .bonus-cards {

                grid-template-columns: repeat(2, 1fr);

            }



            .safety-grid {

                grid-template-columns: 1fr;

            }

        }



        @media(max-width:480px) {

            .hero-app-logo {

                width: 100px;

                height: 100px;

            }



            .hero-app-name {

                font-size: 1.65rem;

            }



            .app-icon {

                width: 52px;

                height: 52px;

            }



            .dl-btn {

                padding: 8px 11px;

                font-size: .8rem;

            }

        }



        /* Navigation and Footer CSS for App.php */

        .header {

            background: var(--gradient-hero, linear-gradient(135deg, #0d1b4b 0%, #1e3a8a 40%, #1d4ed8 100%));

            border-bottom: 3px solid var(--accent-yellow, #facc15);

            color: #fff;

            display: flex;

            justify-content: space-between;

            align-items: center;

            padding: 10px 12px;

            box-shadow: 0 4px 18px rgba(29, 78, 216, .4);

            position: sticky;

            top: 0;

            z-index: 999;

            overflow: hidden;

        }



        .header::after {

            content: '';

            position: absolute;

            right: -30px;

            top: -30px;

            width: 140px;

            height: 140px;

            border-radius: 50%;

            background: radial-gradient(circle, rgba(250, 204, 21, .25), transparent 70%);

            pointer-events: none;

        }



        .logo-top {

            width: 38px;

            height: 38px;

            border-radius: 12px;

            border: 2.5px solid var(--accent-yellow, #facc15);

            box-shadow: 0 2px 10px rgba(0, 0, 0, .3);

        }



        .header-text {

            flex-grow: 1;

            margin: 0 10px;

            font-weight: 900;

            font-size: 24px;

            font-family: 'Bebas Neue', 'Arial Narrow', Arial, sans-serif;

            color: #fff !important;

            letter-spacing: 1.5px;

            text-shadow: 0 2px 8px rgba(0, 0, 0, .35);

        }



        .icon {

            display: block;

            text-align: right;

            color: #fff;

            font-size: 15px;

            font-weight: 800;

            cursor: pointer;

            background: rgba(250, 204, 21, .18);

            border-radius: 8px;

            border: 1px solid rgba(250, 204, 21, .35);

            padding: 5px 10px;

        }



        .menu-container {

            display: none;

            background: linear-gradient(135deg, #0d1b4b 0%, #1e3a8a 100%);

            padding: 16px;

            border-bottom: 1px solid rgba(250, 204, 21, .2);

        }



        .menu-item {

            background: rgba(255, 255, 255, .12);

            border: 1px solid rgba(250, 204, 21, .25);

            color: #fff;

            padding: 9px 14px;

            margin: 5px;

            display: inline-block;

            width: 30%;

            border-radius: 12px;

            font-family: 'Nunito', -apple-system, sans-serif;

            font-weight: 700;

            font-size: 11px;

            box-sizing: border-box;

            transition: background .15s;

            text-align: center;

            text-decoration: none;

        }



        .menu-item:hover,

        .menu-item.active,

        .menu-item.menu-active {

            background: rgba(250, 204, 21, .3);

            border-color: var(--accent-yellow, #facc15);

        }



        .menu-row {

            display: flex;

            justify-content: space-around;

        }



        .navbar {

            display: flex;

            justify-content: flex-start;

            flex-wrap: nowrap;

            border-top: 1px solid rgba(29, 78, 216, .15);

            border-bottom: 2px solid rgba(29, 78, 216, .2);

            overflow-x: auto;

            overflow-y: hidden;

            -webkit-overflow-scrolling: touch;

            scrollbar-width: none;

            background: linear-gradient(90deg, #eff6ff 0%, #fff 50%, #fffbeb 100%);

        }



        .navbar::-webkit-scrollbar {

            display: none;

        }



        .navbar a {

            white-space: nowrap;

            color: var(--text-secondary, #1e40af);

            padding: 7px 8px;

            border-right: 1px solid rgba(29, 78, 216, .12);

            font-family: 'Nunito', -apple-system, sans-serif;

            font-size: 12px !important;

            font-weight: 700;

            transition: background .15s, color .15s;

            text-decoration: none;

        }



        .navbar a:last-child {

            border-right: none;

        }



        .navbar a.active,

        .navbar a:hover {

            background: rgba(29, 78, 216, .10);

            color: var(--accent-primary, #1d4ed8) !important;

        }



        .navbar a.active {

            border-bottom: 2px solid var(--accent-primary, #1d4ed8);

        }



        .group-card,

        .group-card1 {

            margin-bottom: 20px;

            position: relative;

            align-items: center;

            padding: 7px;

            overflow: hidden;

        }



        .group-card {

            border: 2px solid transparent;

            border-radius: 12px;

            background: #eff6ff;

            display: flex;

            justify-content: space-between;

        }



        .group-card1 {

            border: 2px solid transparent;

            border-radius: 12px;

            background: #fffbeb;

            display: flex;

            justify-content: space-between;

        }



        .join-text {

            margin-left: 10px;

            font-weight: 800;

            color: var(--accent-dark, #1e3a8a);

            font-size: .9rem !important;

        }



        .join-text1 {

            margin-left: 10px;

            font-weight: 800;

            color: #92400e;

            font-size: 1rem !important;

        }



        .icon-telegram {

            font-size: 24px;

            color: var(--accent-dark, #1e3a8a);

        }



        .seoquake-nofollow {

            display: inline-flex;

            align-items: center;

            justify-content: center;

            font-weight: bold;

            font-size: 1rem;

            text-decoration: none;

            padding: 10px 20px;

            border-radius: 50px;

            flex-shrink: 0;

            color: white !important;

        }



        .seoquake-nofollow i {

            margin-right: 5px;

        }



        .share-btn-footer {

            display: inline-flex;

            align-items: center;

            justify-content: center;

            font-weight: bold;

            font-size: 1rem;

            padding: 10px 20px;

            border-radius: 50px;

            flex-shrink: 0;

            color: #0d1b4b !important;

            background: var(--gradient-yellow, linear-gradient(135deg, #eab308 0%, #facc15 60%, #fde047 100%));

            border: none;

            cursor: pointer;

            font-family: 'Nunito', -apple-system, sans-serif;

        }



        .telegram-card .seoquake-nofollow {

            background: var(--gradient-bg, linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #3b82f6 100%));

        }



        @keyframes tba {

            0% {

                border-color: transparent

            }



            50% {

                border-color: var(--accent-primary, #1d4ed8)

            }



            100% {

                border-color: transparent

            }

        }



        .telegram-card {

            animation: tba 1s infinite;

        }



        @keyframes tba1 {

            0% {

                border-color: transparent

            }



            50% {

                border-color: var(--accent-yellow-dark, #eab308)

            }



            100% {

                border-color: transparent

            }

        }



        .telegram-card1 {

            animation: tba1 1s infinite;

        }



        .main-background {

            background: linear-gradient(to top, #eff6ff 0%, #fff 100%);

            color: var(--text-primary, #0d1b4b);

            border-top: 3px solid var(--accent-primary, #1d4ed8);

        }



        .center-text {

            font-size: .95rem;

            font-weight: 700;

            line-height: 2;

            text-align: center;

        }



        .small-center-text {

            font-size: .7rem;

            font-weight: 700;

            line-height: 1.8;

            text-align: center;

        }



        .link-style {

            color: var(--accent-primary, #1d4ed8);

            text-decoration: underline;

        }



        .footer-link {

            color: var(--accent-primary, #1d4ed8);

            text-decoration: none;

        }



        .back-to-top {

            position: fixed;

            bottom: 20px;

            right: 14px;

            z-index: 8999;

            width: 46px;

            height: 46px;

            border-radius: 50%;

            background: var(--gradient-bg, linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #3b82f6 100%));

            border: 2px solid var(--accent-yellow, #facc15);

            cursor: pointer;

            display: flex;

            align-items: center;

            justify-content: center;

            opacity: 0;

            pointer-events: none;

            transform: translateY(14px);

            transition: opacity .25s, transform .25s;

            box-shadow: 0 4px 14px rgba(29, 78, 216, .4);

        }



        .back-to-top.visible {

            opacity: 1;

            pointer-events: auto;

            transform: translateY(0);

        }



        .back-to-top i {

            color: #fff;

            font-size: 1rem;

        }



        .sr-only {

            position: absolute;

            width: 1px;

            height: 1px;

            padding: 0;

            margin: -1px;

            overflow: hidden;

            clip: rect(0, 0, 0, 0);

            border: 0;

        }

/* Feature Strip - Modern Layout & Design */
.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 16px 0 20px;
    width: 100%;
}

.feat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.feat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(29, 78, 216, 0.06);
    border-color: rgba(29, 78, 216, 0.12);
    background: #fafcfd;
}

.feat-item i {
    font-size: 16px;
    color: #10b981; /* Premium Emerald/Green for verified */
    transition: transform 0.25s ease;
}

.feat-item:hover i {
    transform: scale(1.18);
}

.feat-item:nth-child(2) i {
    color: #3b82f6; /* Modern Blue for UPI */
}

.feat-item:nth-child(3) i {
    color: #f97316; /* Modern Orange for Support */
}

.feat-item span {
    font-size: 13px;
    font-weight: 700;
    color: #4b5563; /* Cool gray text */
    font-family: 'Nunito', -apple-system, sans-serif;
}

@media (max-width: 768px) {
    .feature-strip {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 12px 0 16px;
    }
    .feat-item {
        padding: 12px 16px;
        justify-content: flex-start;
    }
}
