/* ============================================================
   Funtoosh Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --yellow:  #FFD93D;
  --orange:  #FF6B35;
  --pink:    #FF6B9D;
  --purple:  #A855F7;
  --teal:    #06D6A0;
  --blue:    #4CC9F0;
  --dark:    #1A1A2E;
  --white:   #FFFFFF;
}

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

body {
  font-family: 'Nunito', sans-serif;
  background: #FFF9F0;
  color: var(--dark);
  overflow-x: hidden;
}

/* ---- NAVBAR ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--yellow);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  text-decoration: none;
}

.nav-links {
  display: flex; gap: 1.75rem; list-style: none; align-items: center;
}
.nav-links a {
  text-decoration: none; color: var(--dark);
  font-weight: 700; font-size: 0.92rem;
  transition: color 0.2s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2.5px; background: var(--orange); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--orange); }

.nav-cta {
  background: var(--orange); color: white;
  border: none; border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 0.92rem;
  cursor: pointer; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 0 #c94c1a;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #c94c1a; }
.nav-cta:active { transform: translateY(2px); box-shadow: 0 2px 0 #c94c1a; }

/* ---- HAMBURGER ---- */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 3px;
  background: var(--dark); border-radius: 3px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---- MOBILE NAV DRAWER ---- */
.mobile-nav {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: white;
  border-bottom: 2px solid var(--yellow);
  padding: 1.5rem 5%;
  z-index: 99;
  flex-direction: column; gap: 1.1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-10px); opacity: 0;
  transition: transform 0.25s, opacity 0.25s;
  pointer-events: none;
}
.mobile-nav.open {
  display: flex; transform: translateY(0); opacity: 1; pointer-events: auto;
}
.mobile-nav a {
  text-decoration: none; color: var(--dark);
  font-weight: 700; font-size: 1.05rem; transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .nav-cta { text-align: center; margin-top: 0.4rem; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 120px 5% 70px;
  text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #FFF9F0 0%, #FFF0E0 60%, #F0F4FF 100%);
}
.page-hero-blob {
  position: absolute; border-radius: 50%;
  opacity: 0.12; filter: blur(70px); pointer-events: none;
}
.page-hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1; margin-bottom: 1.2rem;
}
.page-hero p {
  font-size: 1.15rem; color: #555; font-weight: 600;
  max-width: 600px; margin: 0 auto 2rem; line-height: 1.7;
}

/* ---- SECTION UTILITIES ---- */
.section { padding: 80px 5%; }
.section-center { text-align: center; }

.section-tag {
  display: inline-block;
  font-weight: 800; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--orange); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15; margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: #555; font-weight: 600;
  max-width: 560px; line-height: 1.7; margin-bottom: 3rem;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--orange); color: white;
  text-decoration: none; font-weight: 800;
  font-size: 1.05rem; padding: 0.9rem 2rem;
  border-radius: 50px;
  box-shadow: 0 5px 0 #c94c1a;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none; cursor: pointer; font-family: 'Nunito', sans-serif;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 0 #c94c1a; }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 #c94c1a; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; color: var(--dark);
  text-decoration: none; font-weight: 800;
  font-size: 1.05rem; padding: 0.9rem 2rem;
  border-radius: 50px; border: 2.5px solid var(--dark);
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--dark); color: white; transform: translateY(-3px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--orange);
  text-decoration: none; font-weight: 800;
  font-size: 0.95rem; padding: 0.7rem 1.75rem;
  border-radius: 50px; border: 2.5px solid var(--orange);
  transition: transform 0.2s, background 0.2s, color 0.2s;
  cursor: pointer; font-family: 'Nunito', sans-serif;
}
.btn-outline:hover { background: var(--orange); color: white; transform: translateY(-2px); }

.play-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: white; color: var(--dark);
  text-decoration: none; font-weight: 800;
  font-size: 1rem; padding: 0.9rem 2rem;
  border-radius: 14px; transition: transform 0.2s;
}
.play-btn:hover { transform: scale(1.05); }
.play-icon { width: 28px; }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--dark);
  padding: 2rem 5%;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 3rem;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Fredoka One', cursive;
  font-size: 2.5rem; color: var(--yellow);
}
.stat-label { color: #aaa; font-weight: 600; font-size: 0.9rem; margin-top: 0.2rem; }

/* ---- FEATURE CARDS ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: white; border-radius: 20px;
  padding: 1.75rem; border: 2px solid transparent;
  transition: transform 0.3s, border-color 0.3s;
}
.feature-card:hover { transform: translateY(-5px); }
.feature-card:nth-child(1):hover { border-color: var(--yellow); }
.feature-card:nth-child(2):hover { border-color: var(--teal); }
.feature-card:nth-child(3):hover { border-color: var(--pink); }
.feature-card:nth-child(4):hover { border-color: var(--purple); }
.feature-card:nth-child(5):hover { border-color: var(--blue); }
.feature-card:nth-child(6):hover { border-color: var(--orange); }

.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.fi-yellow  { background: #FFF3CD; }
.fi-teal    { background: #D4F7EE; }
.fi-pink    { background: #FCE4F0; }
.fi-purple  { background: #EDE7F6; }
.fi-blue    { background: #E3F4FD; }
.fi-orange  { background: #FFF0E6; }
.fi-green   { background: #E8F5E9; }
.fi-red     { background: #FFEBEE; }

.feature-title { font-weight: 800; font-size: 1.05rem; margin-bottom: 0.4rem; }
.feature-desc  { font-size: 0.9rem; color: #666; line-height: 1.6; }

/* ---- CONTACT CARDS ---- */
.contact-cards {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 1.5rem; margin-top: 2.5rem;
}
.contact-card {
  background: white; border-radius: 20px;
  border: 2px solid #E8E8E8;
  padding: 1.75rem 2.5rem; min-width: 220px;
  transition: transform 0.3s, border-color 0.3s;
  text-align: center;
}
.contact-card:hover { transform: translateY(-5px); border-color: var(--orange); }
.contact-icon  { font-size: 2rem; margin-bottom: 0.75rem; }
.contact-label { font-weight: 700; font-size: 0.85rem; color: #999; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.4rem; }
.contact-value { font-weight: 800; font-size: 1rem; color: var(--dark); word-break: break-all; }
.contact-value a { color: var(--orange); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }

/* ---- CTA SECTION ---- */
.cta-section {
  background: var(--dark);
  padding: 80px 5%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-blob { position: absolute; border-radius: 50%; opacity: 0.1; }
.cta-blob-1 { width: 400px; height: 400px; background: var(--purple); top: -100px; left: -100px; }
.cta-blob-2 { width: 300px; height: 300px; background: var(--yellow); bottom: -80px; right: -80px; }
.cta-section h2 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white; position: relative; z-index: 2;
}
.cta-section h2 span { color: var(--yellow); }
.cta-section p {
  color: #aaa; font-size: 1.05rem; font-weight: 600;
  margin: 1rem auto 2.5rem; max-width: 500px; position: relative; z-index: 2;
}
.cta-btns {
  display: flex; justify-content: center; gap: 1rem;
  flex-wrap: wrap; position: relative; z-index: 2;
}

/* ---- FAQ ACCORDION ---- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: white; border-radius: 16px; border: 2px solid #F0F0F0;
  overflow: hidden; transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--orange); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem;
  color: var(--dark); text-align: left; gap: 1rem;
}
.faq-q svg { flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  padding: 0 1.5rem; max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.95rem; color: #555; line-height: 1.7; font-weight: 600;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.5rem 1.25rem; }

/* ---- APP BADGE ---- */
.app-badge {
  display: inline-block; padding: 0.4rem 1.1rem;
  border-radius: 50px; font-weight: 800; font-size: 0.8rem;
}
.badge-live { background: var(--orange); color: white; }
.badge-soon { background: #E8E8E8; color: #777; }

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  padding: 3rem 5% 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #2a2a4a;
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  display: block; text-decoration: none;
}
.footer-tagline { color: #777; font-size: 0.9rem; font-weight: 600; line-height: 1.65; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: #2a2a4a; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none; transition: background 0.2s, transform 0.2s;
}
.footer-social a:hover { background: var(--orange); transform: translateY(-2px); }

.footer-col-title {
  font-weight: 800; color: white; font-size: 0.88rem;
  margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1.5px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: #777; text-decoration: none; font-weight: 600;
  font-size: 0.9rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-contact-info { margin-top: 1.2rem; }
.footer-contact-info a {
  display: block; text-decoration: none; font-weight: 600;
  font-size: 0.875rem; margin-bottom: 0.3rem; transition: color 0.2s;
}
.footer-contact-info a:hover { color: var(--yellow); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy  { color: #555; font-size: 0.85rem; font-weight: 600; }
.footer-badge { color: #555; font-size: 0.85rem; font-weight: 600; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 700; flex-wrap: wrap;
  margin-bottom: 1.5rem; position: relative; z-index: 2;
}
.breadcrumb a { text-decoration: none; transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { opacity: 0.6; }

/* ---- APP HERO ---- */
.app-hero {
  padding: 90px 5% 60px; position: relative; overflow: hidden;
  min-height: 460px; display: flex; align-items: center;
}
.app-hero-inner { max-width: 680px; position: relative; z-index: 2; }
.app-hero-blob {
  position: absolute; border-radius: 50%;
  opacity: 0.14; filter: blur(70px); pointer-events: none;
}
.app-icon-wrap {
  width: 88px; height: 88px; border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; margin-bottom: 1.25rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.app-hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1; margin-bottom: 0.6rem;
}
.app-hero-tagline {
  font-size: 1.1rem; color: rgba(255,255,255,0.75); font-weight: 600;
  margin-bottom: 1.5rem; line-height: 1.6;
}
.app-meta-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.5rem; }
.app-meta-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 1rem; border-radius: 50px;
  font-weight: 800; font-size: 0.8rem; border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
}
.app-rating-row {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem;
}
.app-stars { color: #FFD93D; font-size: 1.1rem; letter-spacing: 2px; }
.app-rating-num { font-weight: 800; font-size: 1rem; color: rgba(255,255,255,0.9); }
.app-rating-count { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.55); }
.app-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.app-hero-right {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; justify-content: center;
}

/* ---- SCREENSHOTS ---- */
.screenshots-section { padding: 60px 5%; background: #FFFCF7; }
.screenshots-gallery {
  display: flex; gap: 1.25rem; overflow-x: auto; padding-bottom: 1rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  margin-top: 2rem;
}
.screenshots-gallery::-webkit-scrollbar { height: 5px; }
.screenshots-gallery::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 50px; }
.screenshots-gallery::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 50px; }
.screenshot-slide { flex-shrink: 0; scroll-snap-align: start; text-align: center; }
.screenshot-frame {
  width: 190px; height: 338px; border-radius: 18px; overflow: hidden;
  border: 2px solid #E0E0E0; background: #F5F5F5; position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.screenshot-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.screenshot-ph {
  position: absolute; inset: 0; display: flex;
  flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
  background: linear-gradient(145deg, #f0f0f0, #e8e8e8);
}
.screenshot-ph .ph-icon { font-size: 2.2rem; opacity: 0.5; }
.screenshot-ph .ph-label { font-weight: 800; font-size: 0.78rem; color: #aaa; }
.screenshot-ph .ph-sub { font-size: 0.68rem; color: #bbb; font-weight: 600; }
.screenshot-caption { font-size: 0.78rem; font-weight: 700; color: #999; margin-top: 0.6rem; }
.screenshots-hint {
  text-align: center; margin-top: 1.25rem;
  font-size: 0.82rem; color: #bbb; font-weight: 600;
}

/* ---- PRICING SECTION ---- */
.pricing-section { padding: 80px 5%; background: linear-gradient(160deg, #FFF9F0, #FFF0F5); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.pricing-card {
  background: white; border-radius: 24px; padding: 2rem;
  border: 2px solid #F0F0F0; position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.pricing-card.featured { border-color: var(--orange); }
.pricing-card.featured::before {
  content: 'Most Popular'; position: absolute; top: 0; right: 0;
  background: var(--orange); color: white; font-weight: 800; font-size: 0.75rem;
  padding: 0.35rem 1rem; border-radius: 0 24px 0 14px;
}
.pricing-tier-name { font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; color: #999; margin-bottom: 0.5rem; }
.price-display { margin-bottom: 1.25rem; }
.price-currency { font-family: 'Fredoka One', cursive; font-size: 1.5rem; color: var(--dark); vertical-align: top; margin-top: 0.4rem; display: inline-block; }
.price-amount  { font-family: 'Fredoka One', cursive; font-size: 3.5rem; color: var(--dark); line-height: 1; }
.price-period  { font-size: 0.9rem; color: #999; font-weight: 600; }
.price-note    { font-size: 0.8rem; color: #bbb; font-weight: 600; margin-top: 0.3rem; }
.pricing-features { list-style: none; margin-bottom: 1.5rem; }
.pricing-features li {
  padding: 0.5rem 0; border-bottom: 1px solid #F8F8F8;
  font-size: 0.92rem; font-weight: 600; color: #555;
  display: flex; align-items: center; gap: 0.6rem;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--teal); font-weight: 800; font-size: 1rem; }
.iap-section { margin-top: 3rem; }
.iap-section h3 { font-weight: 800; font-size: 1.1rem; margin-bottom: 1rem; }
.iap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.iap-card {
  background: white; border-radius: 16px; padding: 1.25rem;
  border: 2px solid #F0F0F0; display: flex; gap: 1rem; align-items: flex-start;
  transition: border-color 0.3s;
}
.iap-card:hover { border-color: var(--orange); }
.iap-emoji { font-size: 1.75rem; flex-shrink: 0; }
.iap-info .iap-name  { font-weight: 800; font-size: 0.92rem; margin-bottom: 0.25rem; }
.iap-info .iap-desc  { font-size: 0.8rem; color: #888; font-weight: 600; line-height: 1.5; }
.iap-info .iap-price { font-weight: 800; font-size: 0.85rem; color: var(--orange); margin-top: 0.3rem; }

/* ---- TECH SPECS ---- */
.tech-specs-section { padding: 60px 5%; background: #FFFCF7; }
.tech-specs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.tech-spec {
  background: white; border-radius: 16px; padding: 1.25rem;
  border: 2px solid #F0F0F0; transition: border-color 0.3s;
}
.tech-spec:hover { border-color: var(--orange); }
.tech-spec-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #bbb; margin-bottom: 0.4rem; }
.tech-spec-value { font-weight: 800; font-size: 0.95rem; color: var(--dark); }

/* ---- RATINGS ---- */
.ratings-section { padding: 70px 5%; background: linear-gradient(160deg, #F0F4FF, #FFF0F5); }
.rating-summary {
  display: flex; align-items: center; gap: 3rem; flex-wrap: wrap;
  background: white; border-radius: 24px; padding: 2rem 2.5rem;
  border: 2px solid #F0F0F0; margin-bottom: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.rating-big { text-align: center; }
.rating-big-num { font-family: 'Fredoka One', cursive; font-size: 4rem; color: var(--dark); line-height: 1; }
.rating-big-stars { color: #FFD93D; font-size: 1.5rem; margin: 0.3rem 0; }
.rating-big-count { font-size: 0.85rem; font-weight: 600; color: #aaa; }
.rating-bars { flex: 1; min-width: 200px; }
.rating-bar-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.rating-bar-label { font-size: 0.8rem; font-weight: 700; color: #888; width: 12px; text-align: right; }
.rating-bar-track { flex: 1; height: 8px; background: #F0F0F0; border-radius: 50px; overflow: hidden; }
.rating-bar-fill  { height: 100%; background: var(--yellow); border-radius: 50px; }
.rating-bar-count { font-size: 0.78rem; font-weight: 600; color: #bbb; min-width: 30px; }
.review-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.review-card {
  background: white; border-radius: 20px; padding: 1.5rem;
  border: 2px solid #F0F0F0; transition: transform 0.3s;
}
.review-card:hover { transform: translateY(-4px); }
.review-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.reviewer-name  { font-weight: 800; font-size: 0.9rem; }
.reviewer-stars { color: #FFD93D; font-size: 0.85rem; }
.review-text { font-size: 0.88rem; color: #555; font-weight: 600; line-height: 1.65; }
.review-date { font-size: 0.75rem; color: #bbb; font-weight: 600; margin-top: 0.75rem; }

/* ---- COMING SOON ---- */
.coming-soon-hero {
  text-align: center; padding: 100px 5% 70px;
  position: relative; overflow: hidden;
}
.coming-soon-badge {
  display: inline-block; background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3); border-radius: 50px;
  padding: 0.5rem 1.5rem; font-weight: 800; font-size: 0.9rem;
  color: white; margin-bottom: 1.5rem; backdrop-filter: blur(4px);
}
.notify-form-wrap {
  max-width: 480px; margin: 2rem auto 0;
}
.notify-form {
  display: flex; gap: 0.75rem; background: white;
  border-radius: 50px; padding: 0.5rem; box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.notify-form input {
  flex: 1; border: none; outline: none; padding: 0.6rem 1.25rem;
  font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 0.95rem;
  color: var(--dark); background: transparent;
}
.notify-form button {
  flex-shrink: 0; border: none; border-radius: 50px;
  padding: 0.7rem 1.5rem; font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 0.9rem; cursor: pointer;
  transition: transform 0.2s;
}
.notify-form button:hover { transform: scale(1.04); }
.notify-sub-text { font-size: 0.8rem; color: rgba(255,255,255,0.55); font-weight: 600; margin-top: 0.75rem; }

/* ---- RELATED APPS ---- */
.related-apps-section { padding: 70px 5%; }
.related-apps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.related-app-card {
  border-radius: 20px; padding: 1.5rem; text-align: center;
  text-decoration: none; color: var(--dark);
  border: 2px solid #F0F0F0; background: white;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.related-app-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); border-color: var(--orange); }
.related-app-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.related-app-name { font-family: 'Fredoka One', cursive; font-size: 1.2rem; margin-bottom: 0.4rem; }
.related-app-badge { display: inline-block; font-size: 0.75rem; font-weight: 800; padding: 0.25rem 0.75rem; border-radius: 50px; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #FFF9F0; }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 50px; }

/* ---- ANIMATIONS ---- */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(5deg); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes phonefloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-15px) rotate(2deg); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

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

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

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

@media (max-width: 480px) {
  .section { padding: 60px 5%; }
  .page-hero { padding: 100px 5% 50px; }
}
