/* ==========================================================================
   BONDED OFFICIAL WEBSITE - MASTER STYLESHEET
   Midnight & Burgundy Luxury Editorial Design System
   ========================================================================== */

:root {
  /* Color System - Exact specifications */
  --bg-midnight: #0A030E;
  --bg-burgundy: #2B0B18;
  --bg-card: rgba(23, 8, 20, 0.7);
  --bg-card-hover: rgba(35, 12, 29, 0.85);
  
  --border-subtle: rgba(193, 78, 116, 0.15);
  --border-accent: rgba(193, 78, 116, 0.35);
  --border-gold: rgba(212, 175, 55, 0.25);

  --accent-rose: #C14E74;
  --accent-rose-soft: rgba(193, 78, 116, 0.2);
  --accent-gold: #D4AF37;
  --accent-gold-soft: rgba(212, 175, 55, 0.12);

  --text-ivory: #FBF7F5;
  --text-muted: #B3A1AA;
  --text-dim: #7A636F;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width: 1240px;
  --nav-height: 84px;
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-full: 9999px;

  /* Transitions */
  --tr-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-midnight);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-midnight);
  color: var(--text-ivory);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Canvas Particle Layer & Halo Vignettes */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}

.halo-vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at 50% 15%, rgba(43, 11, 24, 0.85) 0%, rgba(10, 3, 14, 1) 75%);
}

.burgundy-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  opacity: 0.3;
}

.burgundy-orb-1 {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: var(--bg-burgundy);
}

.burgundy-orb-2 {
  top: 40%;
  right: -150px;
  width: 600px;
  height: 600px;
  background: var(--accent-rose);
  opacity: 0.15;
}

.burgundy-orb-3 {
  bottom: 15%;
  left: -150px;
  width: 650px;
  height: 650px;
  background: var(--bg-burgundy);
}

/* Container */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Typography Utilities */
h1, h2, h3, h4, .serif {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--text-ivory);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  text-align: center;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

p {
  color: var(--text-muted);
  font-size: 1.08rem;
  font-weight: 400;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-rose);
  margin-bottom: 1.2rem;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  background: rgba(193, 78, 116, 0.1);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}

.gold-sparkle {
  color: var(--accent-gold);
  font-size: 0.85em;
}

.editorial-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--text-ivory);
}

/* Buttons & Links */
a {
  color: var(--accent-rose);
  text-decoration: none;
  transition: color var(--tr-fast);
}

a:hover {
  color: var(--text-ivory);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 2.2rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--tr-smooth);
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #A83B5E 0%, var(--accent-rose) 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(193, 78, 116, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(193, 78, 116, 0.5);
  color: #FFFFFF;
}

.btn-secondary {
  background: rgba(43, 11, 24, 0.6);
  color: var(--text-ivory);
  border: 1px solid var(--border-accent);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(43, 11, 24, 0.9);
  border-color: var(--accent-rose);
  color: var(--text-ivory);
  transform: translateY(-3px);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(10, 3, 14, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(193, 78, 116, 0.1);
  transition: all var(--tr-fast);
}

header.scrolled {
  background: rgba(10, 3, 14, 0.92);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(193, 78, 116, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-ivory);
  letter-spacing: 0.04em;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  object-fit: cover;
  border: 1px solid var(--border-accent);
  box-shadow: 0 4px 15px rgba(193, 78, 116, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-ivory);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-ivory);
  font-size: 1.6rem;
  cursor: pointer;
}

/* 4. HERO SECTION */
.hero {
  padding-top: calc(var(--nav-height) + 1.8rem);
  padding-bottom: 2rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
}

.hero-content {
  max-width: 100%;
  margin: 0;
  text-align: left;
  font-family: 'Inter', var(--font-sans);
}

.hero-content h1 {
  font-family: 'Inter', var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.hero-content h1 .editorial-italic {
  font-family: 'Inter', var(--font-sans);
  font-style: normal;
  font-weight: 700;
}

.hero-subtitle {
  font-family: 'Inter', var(--font-sans);
  font-size: 1.08rem;
  max-width: 100%;
  margin: 1rem 0 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: left;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: 'Inter', var(--font-sans);
}

.hero .playstore-pill-tag {
  font-family: 'Inter', var(--font-sans);
  margin-bottom: 0.8rem;
}

/* Premium Floating Smartphone Mockup - Positioned on Right */
.hero-mockup-container {
  position: relative;
  max-width: 340px;
  width: 100%;
  margin: 0 0 0 auto;
}

.hero-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 78, 116, 0.25) 0%, rgba(43, 11, 24, 0.1) 60%, transparent 80%);
  filter: blur(50px);
  pointer-events: none;
}

.phone-mockup {
  position: relative;
  width: 100%;
  border-radius: 46px;
  padding: 10px;
  background: linear-gradient(150deg, rgba(65, 20, 39, 0.9) 0%, rgba(20, 7, 16, 0.95) 100%);
  border: 1px solid var(--border-accent);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 50px rgba(193, 78, 116, 0.25);
  animation: floatPhone 7s ease-in-out infinite;
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.phone-screen-frame {
  width: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: var(--bg-midnight);
  aspect-ratio: 9 / 19.5;
  position: relative;
}

.phone-screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Subtle Glass Reflection Overlay */
.phone-glass-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 40%, rgba(255, 255, 255, 0.03) 100%);
  pointer-events: none;
}

/* 5. HERO STATISTICS */
.hero-stats-section {
  padding: 1rem 0 2rem;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 1.4rem 1.8rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.stat-item {
  text-align: center;
  padding: 0 0.8rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-accent), transparent);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--text-ivory);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* 6. SECTION — WHAT IS BONDED? */
.section-what-is {
  padding: 2.2rem 0;
  position: relative;
}

.what-is-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
}

.what-is-text {
  max-width: 760px;
}

.what-is-text p {
  font-size: 1.08rem;
  line-height: 1.65;
  margin-top: 0.8rem;
}

.what-is-media {
  max-width: 360px;
  width: 100%;
}

/* 7. FOUR CORE FEATURES */
.features-section {
  padding: 2.2rem 0;
  position: relative;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 1.8rem;
}

.feature-block {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2.2rem;
  backdrop-filter: blur(16px);
  transition: border-color var(--tr-fast), transform var(--tr-smooth);
}

.feature-block:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.feature-block:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-info {
  flex: 1;
}

.feature-num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent-rose);
  margin-bottom: 0.4rem;
  display: block;
}

.feature-title {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.feature-desc {
  font-size: 1rem;
  line-height: 1.6;
}

.feature-visual {
  flex: 0 0 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-subtle);
}

.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 8. SECTION — HOW BONDED GUIDES YOU */
.section-journey {
  padding: 2.2rem 0;
  text-align: center;
}

.journey-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.journey-step {
  flex: 1;
  min-width: 160px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  transition: all var(--tr-smooth);
}

.journey-step:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.journey-step-num {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--accent-rose);
  margin-bottom: 0.3rem;
}

.journey-step-name {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--text-ivory);
}

.journey-step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.journey-arrow {
  color: var(--accent-rose);
  opacity: 0.5;
  font-size: 1.2rem;
}

/* 9. RELATIONSHIP INSIGHTS SECTION */
.section-insights {
  padding: 2.2rem 0;
  position: relative;
}

.insights-box {
  background: linear-gradient(160deg, rgba(43, 11, 24, 0.8) 0%, rgba(10, 3, 14, 0.95) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(193, 78, 116, 0.2);
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  text-align: left;
}

.insights-text {
  text-align: left;
}

.insights-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-top: 0.6rem;
  margin-bottom: 0.8rem;
}

.insights-text p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.insights-visual {
  max-width: 320px;
  width: 100%;
  margin: 0 0 0 auto;
  position: relative;
}

/* 10. BEFORE → AFTER SECTION */
.section-before-after {
  padding: 2.2rem 0;
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.8rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.transform-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.8rem;
}

.transform-card.after {
  border-color: var(--border-accent);
  background: linear-gradient(145deg, rgba(43, 11, 24, 0.4) 0%, rgba(23, 8, 20, 0.7) 100%);
}

.transform-header {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.transform-card.after .transform-header {
  color: var(--accent-rose);
  border-bottom-color: var(--border-accent);
}

.transform-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.transform-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.transform-card.after .transform-list li {
  color: var(--text-ivory);
}

.bullet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
}

.transform-card.after .bullet-dot {
  background: var(--accent-rose);
  box-shadow: 0 0 10px var(--accent-rose);
}

/* 11. APP EXPERIENCE (HORIZONTAL GALLERY) */
.section-experience {
  padding: 2.2rem 0;
  overflow: hidden;
}

.horizontal-gallery {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding: 1.2rem 0 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-rose) var(--bg-midnight);
}

.gallery-card {
  flex: 0 0 260px;
  scroll-snap-align: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition: all var(--tr-smooth);
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--border-accent);
  box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 13. FINAL CTA */
.section-final-cta {
  padding: 2.5rem 0;
  text-align: center;
}

.final-cta-box {
  background: linear-gradient(180deg, rgba(43, 11, 24, 0.9) 0%, rgba(10, 3, 14, 1) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 3rem 1.8rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85);
}

.cta-brand-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 1.8rem;
  border: 1px solid var(--border-accent);
  box-shadow: 0 8px 25px rgba(193, 78, 116, 0.4);
}

/* 14. FOOTER */
footer {
  background: #060209;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2.5rem;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-info p {
  font-size: 0.98rem;
  margin-top: 0.5rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: var(--accent-rose);
}

.footer-copyright {
  border-top: 1px solid rgba(193, 78, 116, 0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 1rem;
}

/* 15. RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-mockup-container {
    margin: 0 auto;
    max-width: 340px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    padding: 2.5rem 1.8rem;
  }

  .insights-text {
    text-align: center;
  }

  .insights-visual {
    margin: 0 auto;
    max-width: 330px;
  }

  .feature-block, .feature-block:nth-child(even) {
    flex-direction: column;
    gap: 2.5rem;
    padding: 2.5rem;
    text-align: center;
  }

  .feature-visual {
    flex: initial;
    width: 100%;
    max-width: 340px;
  }

  .journey-flow {
    flex-direction: column;
    gap: 1.5rem;
  }

  .journey-arrow {
    transform: rotate(90deg);
  }

  .transformation-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    right: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: rgba(10, 3, 14, 0.98);
    backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transition: right var(--tr-smooth);
  }

  .nav-links.open {
    right: 0;
  }

  .mobile-toggle {
    display: block;
  }

  .footer-layout {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   OFFICIAL GOOGLE PLAY STORE PROMOTIONAL BUTTONS & BADGES
   ========================================================================== */

.playstore-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 1.7rem;
  background: #000000;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  text-decoration: none;
  transition: all var(--tr-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.playstore-badge-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.playstore-badge-btn:hover::before {
  left: 100%;
}

.playstore-badge-btn:hover {
  background: #140612;
  border-color: var(--accent-rose);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(193, 78, 116, 0.45);
  color: #FFFFFF;
}

.playstore-badge-btn svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.playstore-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.playstore-btn-text .sub-text {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  line-height: 1.2;
}

.playstore-btn-text .main-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  font-family: var(--font-sans);
}

.playstore-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(193, 78, 116, 0.15);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-ivory);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.rating-stars {
  color: #FFB800;
  font-size: 0.95rem;
}

