/* ============================================
   No, Don't Do It Page
   ============================================ */

/* Per-page subnav bottom shadow override */
.page-no-dont-do-it .subnav::after {
  background: linear-gradient(to bottom, #B84A00, #FB6601);
}

.nddi-dark {
  background: linear-gradient(to bottom, #FB6601 0%, #FFB070 100%);
  color: #FFFFFF;
  padding: 24px 24px 64px;
  text-align: center;
}

.nddi-dark__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.nddi-hero__title {
  font-family: var(--font-body);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 4px;
  color: #FFFFFF;
}

.nddi-hero__subtitle {
  font-family: var(--font-cursive);
  font-size: 28px;
  color: #FFFFFF;
  margin-bottom: 32px;
}

.nddi-hero__free {
  color: #FFFFFF;
  text-transform: uppercase;
}

.nddi-hero__video {
  max-width: 360px;
  aspect-ratio: 9 / 16;
  margin: 0 auto 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  background: #000;
}

.nddi-hero__video video,
.nddi-hero__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.nddi-hero__cta {
  display: inline-block;
  background: #007AFF;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 48px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  margin-bottom: 24px;
  transition: background var(--transition);
}

.nddi-hero__cta:hover {
  background: #0062CC;
}

.nddi-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.nddi-download__icon {
  border-radius: 14px;
}

.nddi-download__label {
  font-size: 14px;
  color: #FFFFFF;
}

.nddi-download__store {
  width: 140px;
}

.nddi-download__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.nddi-download__qr-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.nddi-reviews {
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.8;
}

.nddi-reviews p {
  margin-bottom: 2px;
}

.nddi-reviews em {
  color: rgba(255, 255, 255, 0.6);
}

.nddi-reviews__stars {
  color: #FFD700;
}

.nddi-body {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  font-size: 15px;
  line-height: 1.7;
}

.nddi-body p {
  margin-bottom: 14px;
}

.nddi-body__quote {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
}

.nddi-body__heading {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 32px 0 12px;
  color: #FFFFFF;
}

.nddi-body__features {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.nddi-body__features li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.nddi-card {
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
}

.nddi-card > :first-child {
  margin-top: 0;
}

.nddi-card > :last-child {
  margin-bottom: 0;
}

.nddi-body__link {
  color: #64B5F6;
  text-decoration: underline;
}

.nddi-body__link:hover {
  color: #90CAF9;
}

.nddi-screenshots {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 40px auto;
  max-width: 960px;
}

.nddi-screenshots__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 120px;
  max-width: 180px;
}

.blog-article__body .nddi-screenshots__caption {
  color: var(--color-text);
}

.nddi-screenshots__caption {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.3;
  color: #FFFFFF;
}

.nddi-screenshots__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* ============================================
   Media Queries — 480px (Small Mobile)
   ============================================ */
@media (max-width: 480px) {
  .nddi-hero__title {
    font-size: 28px;
  }

  .nddi-hero__subtitle {
    font-size: 18px;
  }

  .nddi-screenshots__figure {
    min-width: 80px;
    max-width: 120px;
  }

  .nddi-screenshots__caption {
    font-size: 10px;
  }
}
