/* ===============================
   SEO HOMEPAGE
   =============================== */
.seo-home-page {
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 16px 12px;
  background: #020617;
  color: #d1d5db;
  font-family: 'Orbitron', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.seo-home-page section {
  width: 100%;
  max-width: 780px;
  margin-bottom: 40px;
  background: linear-gradient(180deg, #0b1220, #050914);
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.05), inset 0 0 25px rgba(255, 255, 255, 0.03);
  box-sizing: border-box;
  text-align: left;
}

.seo-home-page h1 {
  font-size: clamp(1.6rem, 4vw, 2rem);
  margin-bottom: 16px;
  color: var(--primary);
}

.seo-home-page h2 {
  font-size: 1.2rem;
  margin-top: 18px;
  margin-bottom: 12px;
  color: #ff9f1a;
}

.seo-home-page p {
  font-size: 14px;
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 1em;
}

.seo-home-page ul {
  list-style: disc inside;
  padding-left: 16px;
  margin-bottom: 1em;
  color: #d1d5db;
}

.seo-home-page a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

.seo-home-page a:hover { text-decoration: underline; }

/* HERO HOME */
.seo-home-page .hero {
  background: linear-gradient(180deg, #0b1025, #050814);
  color: #ffffff;
  text-align: center;
  padding: 29px 20px;
}

.seo-home-page .hero h1 { font-size: 1.5rem; margin-bottom: 20px; }
.seo-home-page .hero p { font-size: 1.0rem; margin-bottom: 30px; font-weight: 300; }

.seo-home-page .cta-button {
  background: linear-gradient(90deg, #ff7a18, #ffb347);
  color: #000;
  padding: 5px 20px;
  font-size: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(255, 159, 67, 0.6);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.seo-home-page .cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(255, 159, 67, 0.9);
}

/* =========================
   ABOUT PAGE
   ========================= */
.about-page {
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 16px 12px;
  background: #020617;
  color: #d1d5db;
  font-family: 'Orbitron', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.about-page section {
  width: 100%;
  max-width: 780px;
  margin-bottom: 40px;
  background: linear-gradient(180deg, #0b1220, #050914);
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.05), inset 0 0 25px rgba(255, 255, 255, 0.03);
  box-sizing: border-box;
  text-align: left;
}

.about-page h1 {
  font-size: clamp(1.6rem, 4vw, 2rem);
  margin-bottom: 16px;
  color: var(--primary);
}

.about-page h2 {
  font-size: 1.2rem;
  margin-top: 18px;
  margin-bottom: 12px;
  color: #ff9f1a;
}

.about-page p {
  font-size: 14px;
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 1em;
}

.about-page ul {
  list-style: disc inside;
  padding-left: 16px;
  margin-bottom: 1em;
  color: #d1d5db;
}

.about-page a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

.about-page a:hover { text-decoration: underline; }

/* =========================
   LEGAL PAGES (cookie/privacy/terms/refund)
   ========================= */
.legal {
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 16px 12px;
  background: #020617;
  color: #d1d5db;
  font-family: 'Orbitron', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.legal section {
  width: 100%;
  max-width: 780px;
  margin-bottom: 40px;
  background: linear-gradient(180deg, #0b1220, #050914);
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.05), inset 0 0 25px rgba(255, 255, 255, 0.03);
  box-sizing: border-box;
  text-align: left;
}

.legal h1 {
  font-size: clamp(1.6rem, 4vw, 2rem);
  margin-bottom: 16px;
  color: var(--primary);
}

.legal h2 {
  font-size: 1.2rem;
  margin-top: 18px;
  margin-bottom: 12px;
  color: #ff9f1a;
}

.legal p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1em;
}

.legal ul {
  list-style: disc inside;
  padding-left: 16px;
  margin-bottom: 1em;
}

.legal a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

.legal a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .seo-home-page section,
  .about-page section,
  .legal section {
    padding: 24px 18px;
  }

  .seo-home-page h1,
  .about-page h1,
  .legal h1 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    margin-bottom: 12px;
  }

  .seo-home-page h2,
  .about-page h2,
  .legal h2 {
    font-size: 1rem;
    margin-top: 16px;
    margin-bottom: 8px;
  }

  .seo-home-page p,
  .seo-home-page li,
  .about-page p,
  .about-page li,
  .legal p,
  .legal li {
    font-size: 13px;
    margin-bottom: 1em;
  }
}

@media (max-width: 600px) {
  .seo-home-page section,
  .about-page section,
  .legal section {
    padding: 16px 12px;
    border-radius: 16px;
  }

  .seo-home-page h1 {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
    margin-bottom: 10px;
  }

  .about-page h1 {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    margin-bottom: 10px;
  }

  .legal h1 {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
    margin-bottom: 10px;
  }

  .seo-home-page h2,
  .about-page h2,
  .legal h2 {
    font-size: 0.95rem;
    margin-top: 14px;
    margin-bottom: 6px;
  }

  .seo-home-page p,
  .seo-home-page li,
  .about-page p,
  .about-page li,
  .legal p,
  .legal li {
    font-size: 12px;
    margin-bottom: 1em;
  }
}