/* ===== CSS Variables & Reset ===== */
:root {
  --pink-light: #ffe4ef;
  --pink: #ff6b9d;
  --pink-deep: #e84393;
  --gold: #f9ca24;
  --gold-deep: #e1a91a;
  --lavender: #c3aed6;
  --mint: #a8e6cf;
  --sky: #87ceeb;
  --white: #ffffff;
  --dark: #2d1b36;
  --dark-soft: #4a3252;
  --gradient-hero: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 30%, #e8eaf6 60%, #e0f7fa 100%);
  --gradient-pink-gold: linear-gradient(135deg, #ff6b9d 0%, #f9ca24 100%);
  --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 228, 239, 0.6) 100%);
  --shadow-soft: 0 8px 32px rgba(232, 67, 147, 0.15);
  --shadow-card: 0 12px 40px rgba(232, 67, 147, 0.12);
  --shadow-glow: 0 0 40px rgba(255, 107, 157, 0.3);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-round: 50%;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Zen Maru Gothic', 'Rounded Mplus 1c', sans-serif;
  color: var(--dark);
  background: var(--pink-light);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ===== Header / Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 157, 0.15);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 20px rgba(232, 67, 147, 0.1);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--pink-deep);
}

.navbar-logo img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(232, 67, 147, 0.2);
}

.navbar-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-soft);
  transition: var(--transition);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-pink-gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.navbar-links a:hover {
  color: var(--pink-deep);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  background: var(--gradient-pink-gold);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--pink-deep);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 24px 80px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/hero_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.9) 0%, rgba(255, 107, 157, 0.6) 50%, transparent 70%);
  animation: sparkle-float 4s ease-in-out infinite;
  opacity: 0;
}

@keyframes sparkle-float {

  0%,
  100% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }

  25% {
    opacity: 1;
    transform: translateY(-30px) scale(1);
  }

  50% {
    opacity: 0.8;
    transform: translateY(-60px) scale(1.2);
  }

  75% {
    opacity: 0.4;
    transform: translateY(-90px) scale(0.8);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-title-logo {
  max-width: 480px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 12px rgba(232, 67, 147, 0.2));
  animation: title-pop 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes title-pop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-screenshot {
  max-width: 320px;
  margin: 0 auto 28px;
  border-radius: 24px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.15),
    0 0 0 4px rgba(255, 255, 255, 0.5);
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.3s;
  transition: var(--transition);
}

.hero-screenshot:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.2),
    0 0 0 4px rgba(255, 255, 255, 0.6);
}

.hero-tagline {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 36px;
  opacity: 0;
  animation: fade-up 0.6s ease forwards 0.5s;
  background: linear-gradient(135deg, var(--pink-deep) 0%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.6s ease forwards 0.7s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-pink-gold);
  color: white;
  padding: 16px 36px;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 157, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  color: var(--pink-deep);
  padding: 16px 36px;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid rgba(255, 107, 157, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--pink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

/* ===== Section Common ===== */
.section {
  padding: 100px 24px;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 50px;
  background: var(--gradient-pink-gold);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--dark-soft);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== Special (YouTube) Section ===== */
.special {
  background: linear-gradient(135deg, #fce4ec 0%, #f8e0f0 50%, #ede7f6 100%);
}

.special-video-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.special-video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 aspect ratio */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 16px 48px rgba(232, 67, 147, 0.2),
    0 0 0 4px rgba(255, 255, 255, 0.5);
  cursor: pointer;
  background: #000;
  transition: var(--transition);
}

.special-video-container:hover {
  transform: scale(1.02);
  box-shadow:
    0 20px 60px rgba(232, 67, 147, 0.3),
    0 0 0 4px rgba(255, 255, 255, 0.6);
}

.special-video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.special-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  pointer-events: none;
}

.special-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.15);
}

.special-play-btn svg {
  width: 72px;
  height: 52px;
}

.special-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== Features Section ===== */
.features {
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 107, 157, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-pink-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.feature-icon.pink {
  background: linear-gradient(135deg, #ffeef5 0%, #ffb8d4 100%);
}

.feature-icon.gold {
  background: linear-gradient(135deg, #fff8e1 0%, #ffd54f 100%);
}

.feature-icon.sky {
  background: linear-gradient(135deg, #e3f2fd 0%, #90caf9 100%);
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.feature-text {
  font-size: 0.95rem;
  color: var(--dark-soft);
  line-height: 1.7;
}

/* ===== Gameplay Section ===== */
.gameplay {
  background: var(--gradient-hero);
  overflow: hidden;
}

.gameplay-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.gameplay-visual {
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateX(-40px);
}

.gameplay-visual.visible {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gameplay-screenshot {
  max-width: 300px;
  width: 100%;
  border-radius: 24px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.15),
    0 0 0 4px rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.gameplay-screenshot:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.2),
    0 0 0 4px rgba(255, 255, 255, 0.6);
}

.gameplay-info {
  opacity: 0;
  transform: translateX(40px);
}

.gameplay-info.visible {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.gameplay-info .section-title {
  text-align: left;
  font-size: 2rem;
}

.gameplay-info .section-desc {
  text-align: left;
  margin: 0 0 32px 0;
}

.gameplay-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-round);
  background: var(--gradient-pink-gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.step-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}

.step-content p {
  font-size: 0.9rem;
  color: var(--dark-soft);
  line-height: 1.6;
}

/* ===== Screenshots Gallery ===== */
.screenshots {
  background: white;
  overflow: hidden;
}

.screenshots-track {
  display: flex;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}

.screenshot-item {
  width: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  opacity: 0;
  transform: scale(0.9);
}

.screenshot-item.visible {
  opacity: 1;
  transform: scale(1);
}

.screenshot-item:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: var(--shadow-glow);
}

.screenshot-item img {
  width: 100%;
  height: auto;
}

/* ===== Download CTA Section ===== */
.download-cta {
  background: linear-gradient(135deg, #2d1b36 0%, #4a3252 50%, #2d1b36 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/hero_bg.png');
  background-size: cover;
  opacity: 0.1;
}

.download-cta .section-title {
  color: white;
  position: relative;
  z-index: 2;
}

.download-cta .section-desc {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

/* ===== Install Section ===== */
.install-container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.install-icon-side {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
}

.install-app-icon {
  width: 160px;
  height: 160px;
  border-radius: 36px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.3),
    0 0 0 4px rgba(255, 255, 255, 0.3);
}

.install-info-side {
  text-align: left;
}

.install-heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.install-prereq {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 28px;
}

.prereq-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.prereq-list {
  list-style: none;
  padding: 0;
}

.prereq-list li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.prereq-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--pink);
}

.install-steps {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.install-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}

.install-step:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.install-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-round);
  background: var(--gradient-pink-gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.install-step-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.install-step-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.install-step-content a {
  color: var(--gold);
  font-weight: 600;
  transition: var(--transition);
  text-decoration: underline;
  text-decoration-color: rgba(249, 202, 36, 0.3);
  text-underline-offset: 3px;
}

.install-step-content a:hover {
  color: white;
  text-decoration-color: white;
}

.install-step-sub {
  font-size: 0.82rem !important;
  margin-top: 4px;
  opacity: 0.8;
}

/* ===== Floating Hearts Decoration ===== */
.floating-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.heart {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0;
  animation: float-heart 6s ease-in-out infinite;
}

@keyframes float-heart {
  0% {
    opacity: 0;
    transform: translateY(100%) scale(0.5) rotate(0deg);
  }

  20% {
    opacity: 0.6;
  }

  50% {
    opacity: 0.4;
    transform: translateY(-50vh) scale(1) rotate(180deg);
  }

  100% {
    opacity: 0;
    transform: translateY(-120vh) scale(0.3) rotate(360deg);
  }
}

/* ===== Footer ===== */
.footer {
  background: #1a1020;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 48px 24px;
}

.footer-logo {
  width: 120px;
  margin: 0 auto 16px;
  opacity: 0.7;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.footer-logo:hover {
  opacity: 1;
}

.footer-contact {
  font-size: 0.9rem;
  margin-bottom: 12px;
  opacity: 0.7;
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Mobile Menu Overlay ===== */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
}

.mobile-menu-overlay a {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  transition: var(--transition);
}

.mobile-menu-overlay a:hover {
  color: var(--pink-deep);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--dark);
}

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

  .gameplay-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .gameplay-info .section-title,
  .gameplay-info .section-desc {
    text-align: center;
  }

  .gameplay-info .section-desc {
    margin: 0 auto 32px;
  }

  .gameplay-steps {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .hero-title-logo {
    max-width: 320px;
  }

  .hero-screenshot {
    max-width: 260px;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 28px 20px;
  }

  .gameplay-screenshot {
    max-width: 240px;
  }

  .gameplay-info .section-title {
    font-size: 1.5rem;
  }

  .screenshots-track {
    gap: 16px;
  }

  .screenshot-item {
    width: 150px;
  }

  .install-container {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .install-icon-side {
    justify-content: center;
  }

  .install-app-icon {
    width: 120px;
    height: 120px;
  }

  .install-info-side {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero-icon {
    width: 90px;
    height: 90px;
    border-radius: 22px;
  }

  .hero-title-logo {
    max-width: 260px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .phone-mockup {
    width: 200px;
    height: 400px;
    border-radius: 28px;
    padding: 8px;
  }

  .phone-screen {
    border-radius: 22px;
  }
}