/*
Theme Name: Radhe - Yono Games & APK Portal
Theme URI: https://radheyonogames.com
Author: Radhe Developer Team
Author URI: https://radheyonogames.com
Description: Professional Emerald Green & Gold UI with Exact Rummybonus.app Top 3 Rank Podium Showcase & Advanced SEO.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: radhe
Tags: allyonoapps, yono-games, apk-download, gaming-portal, emerald-green, gold-accent, rummybonus, mobile-first, seo-optimized
*/

/* ==========================================================================
   Professional Emerald Green & Gold Color System
   ========================================================================== */
:root {
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  
  /* Deep Emerald Green Palette */
  --grad-start: #0b3c26;
  --grad-end: #006837;
  --gradient: linear-gradient(135deg, #0b3c26 0%, #006837 100%);
  --bg-header: rgba(7, 41, 26, 0.94);
  
  /* High CTR Green & Gold Buttons */
  --gradient-btn: linear-gradient(135deg, #00c853 0%, #009624 100%);
  
  /* Shiny Gold Accents */
  --gold: #ffb800;
  --gold-dark: #e6a100;
  --gold-gradient: linear-gradient(135deg, #ffe066 0%, #f5af19 100%);
  
  /* Tags & Status Colors */
  --bonus-color: #d97706;
  --withdraw-color: #059669;
  --teal: #006837;
  --green: #059669;
  
  --white: #ffffff;
  --bg-main: #f3f6f4;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --text: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  
  --notice-bg: #ecfdf5;
  --notice-border: #a7f3d0;
  
  --radius-card: 14px;
  --radius-btn: 10px;
  --shadow: 0 4px 16px rgba(0, 104, 55, 0.08);
  --container: 1000px;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font);
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text);
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  background-color: var(--bg-main);
}

a {
  color: var(--green);
  text-decoration: none;
}

/* Main Container */
.radhe-container, .main-content {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 10px;
}

/* ==========================================================================
   Modern Floating Pill Header (Glassmorphism & Gold Accent)
   ========================================================================== */
.floating-pill-header-wrap {
  position: sticky;
  top: 10px;
  z-index: 200;
  padding: 0 10px;
  margin-bottom: 14px;
}

.radhe-pill-header {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--bg-header);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 184, 0, 0.4);
  border-radius: 9999px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(7, 41, 26, 0.25);
}

.pill-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.pill-logo-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #07291a;
  font-weight: 900;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 184, 0, 0.4);
  flex-shrink: 0;
}

.pill-logo-badge img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.pill-brand-text {
  display: flex;
  flex-direction: column;
}

.pill-brand-title {
  font-size: 17px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

.pill-brand-title span {
  color: var(--gold);
}

.pill-brand-tagline {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Inline Desktop Navigation */
.pill-nav {
  display: flex;
  align-items: center;
}

.pill-nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.pill-nav-list a {
  color: rgba(255,255,255,0.9);
  font-size: 13.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.pill-nav-list a:hover, .pill-nav-list a.active {
  background: var(--gold-gradient);
  color: #07291a;
  font-weight: 800;
}

/* Right Actions */
.pill-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill-btn-telegram {
  background: linear-gradient(135deg, #0088cc 0%, #00a8ff 100%);
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(0, 136, 204, 0.4);
  transition: transform 0.15s ease;
  text-decoration: none !important;
}

.pill-btn-telegram:hover {
  transform: scale(1.03);
}

.pill-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 6px;
}

.pill-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu Panel */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 300;
}

.mobile-menu-overlay.open {
  display: block;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -280px;
  width: 260px;
  height: 100vh;
  background: var(--white);
  z-index: 400;
  transition: right 0.3s ease;
  padding: 20px 0;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu-panel.open {
  right: 0;
}

.mobile-menu-panel .close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-muted);
}

.mobile-menu-panel ul {
  list-style: none;
  margin-top: 20px;
}

.mobile-menu-panel ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid #f5f5f5;
}

.mobile-menu-panel ul li a i {
  font-size: 16px;
  color: var(--green);
}

/* Premium Site Description Banner */
.site-description {
  max-width: var(--container);
  margin: 10px auto 16px;
  padding: 0 10px;
}

.site-desc-inner {
  background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 100%);
  border: 1.5px solid #a7f3d0;
  border-left: 4px solid var(--green);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.06);
}

.site-desc-inner .desc-icon {
  font-size: 20px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

  .store-app-card {
    padding: 14px 12px;
    border-radius: 14px;
  }
  .store-card-header {
    gap: 12px;
    margin-bottom: 12px;
  }
  .store-app-icon {
    width: 68px;
    height: 68px;
    border-radius: 15px;
  }
  .store-app-title {
    font-size: 18px;
    margin-bottom: 2px;
  }
  .store-app-developer {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .store-stats-bar {
    gap: 8px;
    padding: 6px 10px;
    width: 100%;
    max-width: 100%;
    justify-content: space-around;
  }
  .stat-value {
    font-size: 12px;
  }
  .stat-label {
    font-size: 9.5px;
  }
  .store-highlights-bar {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 12px;
  }
  .store-hl-item {
    padding: 6px 10px;
  }
  .store-action-buttons {
    flex-direction: column;
    gap: 8px;
  }
  .store-btn-download {
    width: 100%;
    padding: 10px 14px;
  }
  .store-btn-download i {
    font-size: 22px;
  }
  .store-btn-text strong {
    font-size: 13.5px;
  }
  .store-btn-text span {
    font-size: 10px;
  }
  .store-btn-telegram {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
    font-size: 13px;
  }

.site-desc-inner .desc-text {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.6;
  font-weight: 500;
}

.site-desc-inner .desc-text strong {
  color: var(--green);
  font-weight: 900;
}

/* ==========================================================================
   EXACT RUMMYBONUS.APP TOP 3 PODIUM SHOWCASE & HINDI NOTICE BANNER
   ========================================================================== */
.rummybonus-showcase-container {
  margin-bottom: 30px;
}

/* Top Blue Notice Banner */
.rummybonus-notice-banner {
  background: linear-gradient(135deg, #071f38 0%, #0d3866 100%);
  border: 2px solid #ffb800;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 6px 20px rgba(7, 31, 56, 0.3);
  margin-bottom: 24px;
}

.notice-sign-box {
  flex-shrink: 0;
  border: 3px solid #ffffff;
  background: #ffffff;
  border-radius: 8px;
  padding: 6px 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.notice-sign-text {
  font-size: 15px;
  font-weight: 900;
  color: #0d3866;
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.notice-hindi-text {
  flex: 1;
  color: #ffffff;
  font-size: 12.5px;
  line-height: 1.5;
  font-weight: 500;
}

.notice-watermark-logo {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 900;
  color: #ffb800;
}

.notice-watermark-logo span span {
  color: #fff;
}

/* Top 3 Podium Grid (2nd Left | 1st Center Elevated | 3rd Right) */
/* =============================================
   TOP 3 PODIUM – Rummybonus Style (Exact Match)
   ============================================= */
.rummybonus-podium-grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr 1fr;
  gap: 10px;
  align-items: flex-end;
  margin-top: 6px;
  padding-bottom: 4px;
}

.rummybonus-podium-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 52px 10px 18px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  border: 2px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

/* Center Card – Rank 1 elevated */
.podium-rank-1 {
  transform: translateY(-18px);
  border: 2.5px solid rgba(168, 85, 247, 0.35);
  box-shadow: 0 12px 32px rgba(168, 85, 247, 0.18);
  z-index: 5;
  padding-top: 58px;
}

.podium-rank-2 {
  border: 2px solid rgba(251, 191, 36, 0.35);
}

.podium-rank-3 {
  border: 2px solid rgba(249, 115, 22, 0.35);
}

/* ---- Hexagonal Rank Badges ---- */
.ribbon-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 20;
}

/* Hexagon shape via clip-path */
.ribbon-circle {
  width: 42px;
  height: 42px;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Rank 1 – Purple hexagon (at very top, bigger) */
.ribbon-1 {
  top: -28px;
}

.ribbon-1 .ribbon-circle {
  width: 50px;
  height: 50px;
  font-size: 24px;
  background: linear-gradient(160deg, #c026d3 0%, #7c3aed 100%);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.45);
}

/* Rank 2 – Gold/amber hexagon */
.ribbon-2 .ribbon-circle {
  background: linear-gradient(160deg, #fde047 0%, #f59e0b 60%, #d97706 100%);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.5);
}

/* Rank 3 – Orange/bronze hexagon */
.ribbon-3 .ribbon-circle {
  background: linear-gradient(160deg, #fb923c 0%, #ea580c 60%, #c2410c 100%);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.5);
}

/* No ribbon tail — clean hexagon only */
.ribbon-tail {
  display: none;
}

/* ---- App Icons ---- */
.podium-app-logo {
  display: block;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.13);
  margin-top: 0;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.podium-rank-1 .podium-app-logo {
  width: 120px;
  height: 120px;
  border-radius: 26px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.podium-rank-2 .podium-app-logo,
.podium-rank-3 .podium-app-logo {
  width: 100px;
  height: 100px;
}

.podium-app-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Star Rating ---- */
.podium-stars {
  color: #ffb800;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.12);
  line-height: 1.2;
}

.podium-rank-1 .podium-stars {
  font-size: 22px;
}

/* ---- Safe & Secure Badge ---- */
.podium-safe-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 800;
  color: #1d4ed8;
  margin-bottom: 12px;
  white-space: nowrap;
}

.podium-safe-badge i {
  font-size: 15px;
  color: #2563eb;
  flex-shrink: 0;
}

/* ---- Red Download Button ---- */
.podium-red-btn {
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  color: #ffffff !important;
  font-weight: 900;
  font-size: 16px;
  padding: 12px 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  box-shadow: 0 5px 18px rgba(239, 68, 68, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none !important;
  letter-spacing: 0.3px;
}

.podium-red-btn:hover {
  transform: scale(1.03);
  opacity: 0.95;
}

/* ==========================================================================
   Tab Switcher & App Card Listing
   ========================================================================== */
.tab-switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.tab-btn {
  padding: 13px 10px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background-color: var(--white);
  color: var(--text-muted);
  transition: all 0.22s ease;
  font-family: var(--font);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--gradient-btn);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(0, 200, 83, 0.35);
}

/* Apps List & App Card */
.apps-list, .radhe-apps-grid {
  display: grid;
  gap: 12px;
}

.app-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 150, 36, 0.15);
  border-color: rgba(0, 200, 83, 0.4);
}

.app-card-num {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gold-gradient);
  color: #07291a;
  font-size: 11px;
  font-weight: 900;
  width: 24px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 10px 0;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.12);
}

.app-card-badge-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  padding: 2px 8px 2px 4px;
  display: flex;
  align-items: center;
  gap: 3px;
  border-radius: 0 0 10px 0;
  box-shadow: 1px 2px 6px rgba(0,0,0,0.18);
  z-index: 10;
}

.app-card-badge-ribbon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.app-card-badge-ribbon span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.rank-1-badge {
  background: linear-gradient(135deg, #ffe066 0%, #f5af19 100%);
  color: #07291a;
  border-right: 1px solid #e6a100;
  border-bottom: 1px solid #e6a100;
}

.rank-2-badge {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  color: #0f172a;
  border-right: 1px solid #94a3b8;
  border-bottom: 1px solid #94a3b8;
}

.rank-3-badge {
  background: linear-gradient(135deg, #fdba74 0%, #c2410c 100%);
  color: #ffffff;
  border-right: 1px solid #9a3412;
  border-bottom: 1px solid #9a3412;
}

.app-card-logo {
  flex-shrink: 0;
  margin-left: 6px;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid #e8e8e8;
  background: #f5f5f5;
  display: block;
}

.app-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.app-card-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-card-name a {
  color: var(--text);
}

.app-card-name a:hover {
  color: var(--green);
}

.app-badge-new {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 900;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

.app-badge-trending {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 900;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.3);
}

.app-card-bonus {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 800;
  color: var(--bonus-color);
  margin-bottom: 3px;
}

.app-card-withdraw {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 800;
  color: var(--withdraw-color);
}

.app-card-btn, .radhe-btn-download {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--gradient-btn);
  color: var(--white) !important;
  text-decoration: none !important;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  min-width: 100px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 200, 83, 0.35);
  transition: opacity 0.15s, transform 0.15s;
}

.app-card-btn:hover, .radhe-btn-download:hover {
  opacity: 0.95;
  transform: scale(1.02);
}

/* Footer Text & Bottom Links Bar */
.site-footer-text {
  text-align: center;
  padding: 20px 16px 12px;
  font-size: 14px;
  font-weight: 800;
  color: var(--green);
}

.site-footer-links {
  text-align: center;
  padding: 14px 10px;
  font-size: 14px;
  font-weight: 800;
  background: var(--bg-header);
  color: var(--white);
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 2px solid var(--gold);
}

.site-footer-links a {
  color: var(--white);
}

.site-footer-links a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* Homepage Article */
.homepage-article {
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  padding: 28px;
  margin: 30px 0;
  line-height: 1.75;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.homepage-article h1 {
  font-size: 26px;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 16px;
  line-height: 1.3;
}

.homepage-article h2 {
  font-weight: 800;
  font-size: 22px;
  margin: 22px 0 12px;
  color: var(--green);
  line-height: 1.3;
}

.homepage-article h3 {
  font-weight: 800;
  font-size: 18px;
  margin: 20px 0 10px;
  color: var(--text);
}

.homepage-article p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 16px;
}

/* Single App Page Styles – Mobile-First Native APK Showcase */
.radhe-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.radhe-breadcrumbs a {
  color: var(--text-muted);
}

.radhe-breadcrumbs a:hover {
  color: var(--green);
}

/* Mobile-First Native APK Showcase Card */
.m-app-showcase {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px 14px;
  margin-bottom: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

/* Top Header Block */
.m-app-top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.m-app-icon-wrap {
  position: relative;
  flex-shrink: 0;
}

.m-app-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  border: 1.5px solid #cbd5e1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  display: block;
}

.m-verified-tag {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #059669;
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 800;
  padding: 1.5px 6px;
  border-radius: 8px;
  white-space: nowrap;
  border: 1.5px solid #ffffff;
  box-shadow: 0 2px 5px rgba(5, 150, 105, 0.25);
}

.m-app-title-block {
  flex: 1;
  min-width: 0;
}

.m-app-title {
  font-size: 19px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 3px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.m-app-dev {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.m-app-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ecfdf5;
  color: #059669;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 5px;
  border: 1px solid #a7f3d0;
}

/* Responsive App Description Box */
.m-app-description-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 3.5px solid var(--green);
  border-radius: 8px;
  padding: 9px 12px;
  margin-bottom: 12px;
}

.m-app-description-box p {
  font-size: 13px;
  color: #475569;
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
}

/* 4-Grid Compact Metric Pills */
.m-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px 6px;
  margin-bottom: 12px;
  text-align: center;
}

.m-metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.m-metric-val {
  font-size: 13px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
}

.m-metric-val.star {
  color: #d97706;
}

.m-metric-val.star i {
  font-size: 11px;
}

.m-metric-lbl {
  font-size: 9.5px;
  color: #64748b;
  font-weight: 600;
  margin-top: 1px;
}

/* Highlight Strip: Signup Bonus & Min Cashout */
.m-bonus-strip {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1.5px dashed #fde047;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.m-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.m-strip-item i.bonus-icon {
  color: #d97706;
  font-size: 20px;
}

.m-strip-item i.withdraw-icon {
  color: #059669;
  font-size: 20px;
}

.strip-lbl {
  font-size: 10px;
  color: #64748b;
  font-weight: 600;
  display: block;
}

.strip-val {
  font-size: 13.5px;
  font-weight: 900;
  display: block;
}

.strip-val.bonus-text {
  color: #b45309;
}

.strip-val.withdraw-text {
  color: #047857;
}

.m-strip-divider {
  width: 1px;
  height: 28px;
  background: #cbd5e1;
}

/* Action CTA Block */
.m-action-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.m-btn-download-apk {
  background: linear-gradient(135deg, #00c853 0%, #009624 100%);
  color: #ffffff !important;
  border-radius: 11px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(0, 200, 83, 0.35);
  transition: transform 0.15s ease;
  text-decoration: none !important;
  text-align: center;
}

.m-btn-download-apk i {
  font-size: 24px;
}

.m-btn-download-apk:hover {
  transform: translateY(-1.5px);
}

.m-btn-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-main-text {
  font-size: 14.5px;
  font-weight: 900;
  letter-spacing: 0.2px;
  line-height: 1.25;
}

.btn-sub-text {
  font-size: 10.5px;
  opacity: 0.92;
  font-weight: 600;
  margin-top: 1px;
}

.m-btn-telegram-channel {
  background: linear-gradient(135deg, #0088cc 0%, #00a8ff 100%);
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none !important;
}

/* Play Store Style Premium APK Showcase Card */
.store-app-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-top: 4.5px solid #00c853;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.store-card-header {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.store-app-icon-wrap {
  position: relative;
  flex-shrink: 0;
}

.store-app-icon {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  object-fit: cover;
  border: 1.5px solid #cbd5e1;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  display: block;
}

.store-verified-pill {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: #059669;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(5, 150, 105, 0.3);
  border: 1.5px solid #ffffff;
}

.store-app-main-info {
  flex: 1;
  min-width: 0;
}

.store-app-title {
  font-size: 23px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.store-app-developer {
  font-size: 12.5px;
  color: #059669;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Key Stats Bar */
.store-stats-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px 14px;
  max-width: fit-content;
}

.store-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 13.5px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
}

.stat-value.star-val {
  color: #d97706;
}

.stat-value.star-val i {
  font-size: 11px;
}

.stat-label {
  font-size: 10.5px;
  color: #64748b;
  font-weight: 600;
  margin-top: 2px;
}

.store-stat-divider {
  width: 1px;
  height: 24px;
  background: #cbd5e1;
}

/* Bonus & Cashout Highlights Bar */
.store-highlights-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.store-hl-item {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.store-hl-item.hl-bonus {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-color: #fde047;
}

.store-hl-item.hl-bonus i {
  color: #d97706;
  font-size: 18px;
}

.store-hl-item.hl-bonus .hl-val {
  color: #b45309;
}

.store-hl-item.hl-withdraw {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  border-color: #a7f3d0;
}

.store-hl-item.hl-withdraw i {
  color: #059669;
  font-size: 18px;
}

.store-hl-item.hl-withdraw .hl-val {
  color: #047857;
}

.store-hl-item.hl-deposit i {
  color: #2563eb;
  font-size: 18px;
}

.hl-title {
  font-size: 10.5px;
  color: #64748b;
  font-weight: 600;
  display: block;
}

.hl-val {
  font-size: 13.5px;
  font-weight: 900;
  display: block;
}

/* Action CTA Buttons */
.store-action-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.store-btn-download {
  flex: 1;
  background: linear-gradient(135deg, #00c853 0%, #009624 100%);
  color: #ffffff !important;
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 18px rgba(0, 200, 83, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none !important;
}

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

.store-btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 200, 83, 0.5);
}

.store-btn-text {
  display: flex;
  flex-direction: column;
}

.store-btn-text strong {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.store-btn-text span {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 600;
}

.store-btn-telegram {
  background: linear-gradient(135deg, #0088cc 0%, #00a8ff 100%);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0, 136, 204, 0.3);
}

.store-btn-telegram i {
  font-size: 18px;
}

.pro-hero-top {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pro-hero-logo-box {
  position: relative;
  flex-shrink: 0;
}

.pro-hero-icon {
  width: 76px;
  height: 76px;
  border-radius: 16px;
  object-fit: cover;
  border: 1.5px solid #cbd5e1;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  display: block;
}

.pro-hero-badge {
  position: absolute;
  bottom: -3px;
  right: -3px;
  background: #059669;
  color: #ffffff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.pro-hero-body {
  flex: 1;
  min-width: 0;
}

.pro-hero-title {
  font-size: 21px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.pro-hero-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  font-size: 11.5px;
}

.pro-pill-gold {
  background: #fff8e1;
  color: #d97706;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 5px;
  border: 1px solid #fef3c7;
}

.pro-pill-gray {
  background: #f1f5f9;
  color: #475569;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 5px;
  border: 1px solid #e2e8f0;
}

.pro-pill-green {
  background: #ecfdf5;
  color: #059669;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 5px;
  border: 1px solid #a7f3d0;
}

.pro-hero-bonus-bar {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  border: 1.5px dashed #a7f3d0;
  border-radius: 8px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  font-size: 12.5px;
  color: #334155;
}

.pro-hero-bonus-bar i {
  color: #d97706;
  font-size: 16px;
}

.pro-hero-bonus-bar strong {
  color: #d97706;
  font-weight: 900;
}

.pro-hero-cashout {
  margin-left: auto;
  color: #059669;
}

.pro-hero-cashout strong {
  color: #059669;
  font-weight: 900;
}

.pro-hero-btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pro-btn-download {
  background: var(--gradient-btn);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 200, 83, 0.3);
  transition: transform 0.15s ease;
  text-decoration: none !important;
}

.pro-btn-download:hover {
  transform: translateY(-1.5px);
}

.pro-btn-telegram {
  background: linear-gradient(135deg, #0088cc 0%, #00a8ff 100%);
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none !important;
}

.hero-v2-backdrop {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.25) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.hero-v2-content {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.hero-v2-logo-wrap {
  position: relative;
  flex-shrink: 0;
}

.hero-v2-icon {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  object-fit: cover;
  border: 2.5px solid var(--gold);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  display: block;
}

.hero-v2-verified-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: #00c853;
  color: #ffffff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  border: 2px solid #07291a;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

.hero-v2-main-details {
  flex: 1;
  min-width: 0;
}

.hero-v2-title {
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-v2-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hero-v2-tag {
  font-size: 11.5px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tag-rating {
  background: rgba(255, 184, 0, 0.18);
  color: #ffe066;
  border: 1px solid rgba(255, 184, 0, 0.35);
}

.tag-downloads {
  background: rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.tag-size, .tag-version {
  background: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.tag-safe {
  background: rgba(0, 200, 83, 0.2);
  color: #69f0ae;
  border: 1px solid rgba(0, 200, 83, 0.35);
}

/* Gold Bonus Card inside Hero */
.hero-v2-bonus-card {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1.5px solid #fde047;
  border-radius: 10px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.15);
}

.bonus-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #d97706;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.bonus-card-text {
  display: flex;
  flex-direction: column;
}

.bonus-label {
  font-size: 11px;
  color: #92400e;
  font-weight: 700;
}

.bonus-val {
  font-size: 14.5px;
  color: #b45309;
  font-weight: 900;
}

.hero-v2-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-v2-btn-download {
  background: linear-gradient(135deg, #00c853 0%, #009624 100%);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 900;
  padding: 11px 22px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(0, 200, 83, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none !important;
}

.hero-v2-btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 200, 83, 0.55);
}

.hero-v2-btn-telegram {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 800;
  padding: 11px 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  transition: background 0.15s ease;
  text-decoration: none !important;
}

.hero-v2-btn-telegram:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Quick App Key Specs Grid v2 */
.radhe-app-specs-v2 {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.specs-v2-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.specs-v2-title i {
  color: var(--green);
}

.specs-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.specs-v2-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.specs-v2-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #e2e8f0;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.specs-v2-lbl {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
  display: block;
}

.specs-v2-val {
  font-size: 13.5px;
  color: var(--text);
  font-weight: 800;
  display: block;
  word-break: break-word;
}

/* Sharp Single App Hero Card (Compact & Ultra Sharp) */
.sharp-single-app-card {
  background: var(--white);
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.sharp-app-hero-top {
  display: flex;
  gap: 16px;
  align-items: center;
}

.sharp-app-icon-lg {
  width: 82px;
  height: 82px;
  border-radius: 16px;
  object-fit: cover;
  border: 1.5px solid #cbd5e1;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

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

.sharp-app-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.sharp-app-meta-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  font-size: 11.5px;
}

.sharp-pill-rating {
  background: #fff8e1;
  color: #d97706;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 5px;
  border: 1px solid #fef3c7;
}

.sharp-pill-downloads {
  background: #f1f5f9;
  color: #475569;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 5px;
  border: 1px solid #e2e8f0;
}

.sharp-pill-verified {
  background: #ecfdf5;
  color: #059669;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 5px;
  border: 1px solid #a7f3d0;
}

.sharp-pill-eeat {
  background: #eef2ff;
  color: #4f46e5;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 5px;
  border: 1px solid #c7d2fe;
}

.sharp-bonus-banner {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  border: 1.5px dashed #a7f3d0;
  border-radius: 8px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
}

.sharp-bonus-banner i {
  font-size: 18px;
  color: #d97706;
}

.sharp-bonus-banner span {
  font-size: 11px;
  color: #475569;
  display: inline;
  margin-right: 4px;
}

.sharp-bonus-banner strong {
  font-size: 14px;
  color: #d97706;
  font-weight: 900;
}

.sharp-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sharp-btn-download-main {
  background: var(--gradient-btn);
  color: var(--white) !important;
  font-weight: 900;
  font-size: 14.5px;
  padding: 10px 20px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 200, 83, 0.3);
  transition: transform 0.15s ease;
  text-decoration: none !important;
}

.sharp-btn-download-main:hover {
  transform: translateY(-1.5px);
}

.sharp-btn-telegram {
  background: linear-gradient(135deg, #0088cc 0%, #00a8ff 100%);
  color: var(--white) !important;
  font-weight: 800;
  font-size: 13.5px;
  padding: 10px 16px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none !important;
}

/* Sharp Technical Information Specs Card */
.sharp-specs-card {
  background: var(--white);
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 16px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.03);
}

.sharp-card-heading {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sharp-card-heading i {
  color: var(--green);
}

.sharp-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.sharp-spec-item {
  background: #f8fafc;
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 8px;
}

.sharp-spec-item span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2px;
}

.sharp-spec-item strong {
  font-size: 15px;
  color: var(--text);
  font-weight: 800;
}

/* Step by Step Numbered Guide */
.sharp-steps-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 24px;
}

.sharp-step-item {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.sharp-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sharp-features-list {
  margin-left: 20px;
  margin-bottom: 20px;
}

.sharp-features-list li {
  margin-bottom: 10px;
}

/* FAQ Accordion Box */
.single-faq-wrapper {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.single-faq-item {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  border-left: 4px solid var(--green);
}

.single-faq-q {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.single-faq-a {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Pros & Cons */
.radhe-pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 10px;
}

.radhe-pros-box, .radhe-cons-box {
  background: #f8fafc;
  border-radius: 10px;
  padding: 16px;
  border: 1px solid var(--border);
}

.radhe-pros-box { border-left: 4px solid var(--withdraw-color); }
.radhe-cons-box { border-left: 4px solid #ff4d4f; }

.radhe-pros-box h4 { color: var(--withdraw-color); margin-bottom: 10px; font-weight: 800; }
.radhe-cons-box h4 { color: #ff4d4f; margin-bottom: 10px; font-weight: 800; }

/* Sticky Bottom Mobile Bar */
.radhe-sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--gold);
  padding: 10px 16px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
}

.radhe-sticky-app-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.radhe-sticky-app-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.radhe-sticky-app-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}

.radhe-sticky-app-bonus {
  font-size: 12px;
  color: var(--withdraw-color);
  font-weight: 800;
}

/* Safety Box for Single App Page */
.single-safety-box {
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
  border: 1.5px solid #fed7aa;
  border-left: 4px solid #f97316;
  border-radius: 12px;
  padding: 18px 20px;
  margin: 20px 0;
}

.single-safety-box h3 {
  font-size: 17px;
  font-weight: 800;
  color: #c2410c;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.single-safety-box h3 i {
  font-size: 18px;
  color: #ea580c;
}

/* Final Words Box for Single App Page */
.single-final-words {
  background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 100%);
  border: 1.5px solid var(--notice-border);
  border-left: 4px solid var(--green);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 24px;
}

.single-final-words h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 10px;
}

.single-final-words p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

/* ==========================================================================
   COMPREHENSIVE MOBILE-FIRST RESPONSIVE DESIGN & TOUCH OPTIMIZATIONS
   ========================================================================== */

/* Universal Touch & Mobile Performance Improvements */
button, a, input, select, textarea, .tab-btn, .podium-red-btn, .app-card-btn, .pill-hamburger, .close-btn {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  overflow-x: hidden;
}

/* Sticky Bottom Mobile Bar – Safe Area Inset for iOS / Modern Android */
.radhe-sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2.5px solid var(--gold);
  padding: 10px 16px max(10px, env(safe-area-inset-bottom));
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Large Screens (Desktops >= 1200px) */
@media (min-width: 1200px) {
  .radhe-container, .main-content {
    max-width: 1080px;
  }
}

/* Medium Tablets & Small Laptops (max-width: 992px) */
@media (max-width: 992px) {
  .pill-nav-list a {
    padding: 6px 10px;
    font-size: 13px;
  }
  .sharp-specs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets & Mobile Landscape (max-width: 880px) */
@media (max-width: 880px) {
  .pill-nav {
    display: none;
  }
  .pill-hamburger {
    display: flex;
  }
  .rummybonus-notice-banner {
    padding: 12px 14px;
  }
}

/* Mobile Portrait & Small Tablets (max-width: 768px) */
@media (max-width: 768px) {
  .radhe-container, .main-content {
    padding: 10px 8px;
  }
  .radhe-pill-header {
    padding: 6px 12px;
  }
  .pill-brand-title {
    font-size: 15px;
  }
  .pill-brand-tagline {
    font-size: 9px;
  }
  .pill-btn-telegram span {
    display: none;
  }
  .pill-btn-telegram {
    padding: 7px 10px;
  }
  .site-desc-inner {
    padding: 12px 14px;
    gap: 8px;
  }
  .sharp-pro-hero {
    padding: 12px 14px;
    border-radius: 12px;
  }
  .pro-hero-top {
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
  }
  .pro-hero-icon {
    width: 62px;
    height: 62px;
    border-radius: 13px;
  }
  .pro-hero-title {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .pro-hero-bonus-bar {
    padding: 5px 8px;
    font-size: 11.5px;
    gap: 6px;
  }
  .pro-hero-cashout {
    margin-left: 0;
  }
  .pro-btn-download, .pro-btn-telegram {
    width: 100%;
    justify-content: center;
    padding: 9px 12px;
  }
  .radhe-app-hero-v2 {
    padding: 14px 14px;
    border-radius: 14px;
  }
  .hero-v2-content {
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
  }
  .hero-v2-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
  }
  .hero-v2-verified-badge {
    width: 20px;
    height: 20px;
    font-size: 11px;
    bottom: -2px;
    right: -2px;
  }
  .hero-v2-title {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .hero-v2-bonus-card {
    padding: 6px 10px;
    gap: 8px;
  }
  .bonus-card-icon {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
  .bonus-val {
    font-size: 13px;
  }
  .hero-v2-btn-download {
    font-size: 13px;
    padding: 9px 14px;
    width: 100%;
    justify-content: center;
  }
  .hero-v2-btn-telegram {
    font-size: 12.5px;
    padding: 9px 12px;
    width: 100%;
    justify-content: center;
  }
  .specs-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .specs-v2-box {
    padding: 8px 10px;
    gap: 8px;
  }
  .specs-v2-icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  .specs-v2-lbl {
    font-size: 10px;
  }
  .specs-v2-val {
    font-size: 12px;
  }
  .sharp-single-app-card {
    padding: 12px 14px;
    border-radius: 12px;
  }
  .sharp-app-hero-top {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 12px;
  }
  .sharp-app-icon-lg {
    width: 64px;
    height: 64px;
    border-radius: 13px;
  }
  .sharp-app-title {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .sharp-app-meta-pills, .sharp-hero-actions {
    justify-content: flex-start;
  }
  .sharp-btn-download-main {
    font-size: 13px;
    padding: 8px 14px;
    width: 100%;
    justify-content: center;
  }
  .sharp-btn-telegram {
    font-size: 12.5px;
    padding: 8px 12px;
    width: 100%;
    justify-content: center;
  }
  .sharp-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .sharp-spec-item {
    padding: 6px 8px;
  }
  .sharp-spec-item span {
    font-size: 10.5px;
  }
  .sharp-spec-item strong {
    font-size: 12.5px;
  }
  .radhe-pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .rummybonus-notice-banner {
    flex-direction: column;
    text-align: center;
    padding: 12px;
    gap: 10px;
  }
  .notice-sign-box {
    align-self: center;
  }
  .notice-hindi-text {
    font-size: 11.5px;
  }
}

/* Compact Smartphones (max-width: 576px) */
@media (max-width: 576px) {
  .rummybonus-podium-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
  .rummybonus-podium-card {
    padding: 34px 3px 10px;
    border-radius: 14px;
  }
  .podium-rank-1 {
    transform: translateY(-8px);
    padding-top: 40px;
  }
  .podium-rank-1 .podium-app-logo {
    width: 68px;
    height: 68px;
    border-radius: 15px;
  }
  .podium-rank-2 .podium-app-logo, .podium-rank-3 .podium-app-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }
  .podium-stars {
    font-size: 11px;
    letter-spacing: 0px;
    margin-bottom: 2px;
  }
  .podium-safe-badge {
    font-size: 8.5px;
    gap: 2px;
    margin-bottom: 6px;
  }
  .podium-safe-badge i {
    font-size: 10px;
  }
  .podium-red-btn {
    font-size: 11px;
    padding: 8px 2px;
    border-radius: 8px;
    gap: 3px;
    font-weight: 900;
  }
  .podium-red-btn i {
    font-size: 12px;
  }
  .ribbon-badge {
    top: -16px;
  }
  .ribbon-1 {
    top: -20px;
  }
  .ribbon-circle {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  .ribbon-1 .ribbon-circle {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  .app-card {
    padding: 10px 10px;
    gap: 8px;
    border-radius: 12px;
  }
  .app-card-logo {
    width: 52px;
    height: 52px;
    border-radius: 11px;
    flex-shrink: 0;
  }
  .app-card-name {
    font-size: 14.5px;
    line-height: 1.25;
  }
  .app-card-bonus, .app-card-withdraw {
    font-size: 11px;
  }
  .app-card-btn {
    padding: 9px 12px;
    font-size: 13px;
    min-width: 82px;
    border-radius: 9px;
    font-weight: 800;
  }
  .tab-btn {
    padding: 11px 8px;
    font-size: 14px;
  }
}

/* Narrow Budget Smartphones (max-width: 380px) */
@media (max-width: 380px) {
  .radhe-container, .main-content {
    padding: 8px 6px;
  }
  .pill-brand-title {
    font-size: 13px;
  }
  .pill-brand-tagline {
    display: none;
  }
  .podium-red-btn {
    font-size: 9.5px;
    padding: 7px 1px;
  }
  .podium-red-btn span, .podium-safe-badge span {
    font-size: 7.5px;
  }
  .app-card {
    padding: 8px 8px;
  }
  .app-card-logo {
    width: 46px;
    height: 46px;
  }
  .app-card-name {
    font-size: 13.5px;
  }
  .app-card-btn {
    padding: 7px 8px;
    font-size: 12px;
    min-width: 72px;
  }
}
