/* =========================================================
   PAGE-SPECIFIC STYLES: /website-to-playstore-app
   Depends on: mymain.css (base site styles), Poppins font
   ========================================================= */

/* ---------- HERO SECTION ---------- */
.hero-section {
  background: linear-gradient(135deg, #0b1a30 0%, #16294a 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.15);
  color: #C9A227;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.75rem;
  color: #ffffff;
  margin: 0 0 18px 0;
  font-weight: 800;
  line-height: 1.25;
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  color: #c7d0dd;
  max-width: 600px;
  margin: 0 auto 32px auto;
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta {
  display: inline-block;
  background: #C9A227;
  color: #0b1a30;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(201, 162, 39, 0.4);
}

.hero-note {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #8c98a5;
  margin-top: 18px;
}

/* ---------- ARTICLE LAYOUT ---------- */
.blog-post-wrapper {
  background-color: #ffffff;
  min-height: 70vh;
  padding: 60px 0;
  margin-top: 0;
  display: block;
}

.blog-post-container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}

.blog-post-meta {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #8c98a5;
  margin-bottom: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-post-banner {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.blog-post-body {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #333333;
}

.blog-post-body p {
  margin-bottom: 20px;
}

.blog-post-body h3 {
  font-size: 1.5rem;
  color: #0b1a30;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 700;
}

.blog-post-body ul,
.blog-post-body ol {
  margin: 0 0 20px 0;
  padding-left: 22px;
}

.blog-post-body li {
  margin-bottom: 10px;
}

.blog-post-body li:last-child {
  margin-bottom: 0;
}

.blog-post-body pre {
  background: #020b18;
  color: #38ef7d;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  font-family: monospace;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 25px;
  border: 1px solid #1a2a40;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-section {
    padding: 56px 16px;
  }
}
