html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background: #020617;
}

/* NAVBAR */
.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
}

.logo {
  font-family: 'Luckiest Guy', cursive;
  font-size: 26px;
  color: #3aa9ff;
  text-shadow: 0 0 6px rgba(58,169,255,0.6);
}

.nav-links a {
  margin-left: 25px;
  color: #3aa9ff;
  text-decoration: none;
  font-weight: bold;
}

/* HERO */
.hero {
  position: relative;
  z-index: 2;
  height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 72px;
  color: #3aa9ff;
  text-shadow:
    0 0 8px rgba(58,169,255,0.6),
    0 0 16px rgba(58,169,255,0.35);
}

.hero p {
  font-size: 22px;
  color: #b9dcff;
  margin-top: 10px;
}

/* PARTICLE CANVAS */
#particles {
  position: fixed;
  inset: 0;
  z-index: 1;
}

/* VISION HUB */
.vision {
  position: relative;
  z-index: 2;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vision h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 60px;
  color: #3aa9ff;
  margin-bottom: 50px;
  text-shadow: 0 0 8px rgba(58,169,255,0.45);
}

.vision-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.vision-card {
  width: 260px;
  background: rgba(15, 25, 60, 0.6);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vision-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.vision-card span {
  display: block;
  padding: 16px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.vision-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(58,169,255,0.45);
}

/* SCRIPTS PAGE */
.scripts {
  position: relative;
  z-index: 2;
  padding: 120px 40px 80px;
}

.scripts h1 {
  font-family: 'Luckiest Guy', cursive;
  text-align: center;
  font-size: 60px;
  color: #3aa9ff;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(58,169,255,0.45);
}

.category {
  margin: 60px 0 20px;
  font-size: 26px;
  color: #b9dcff;
}

.script-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.script-card {
  background: rgba(15, 25, 60, 0.6);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.script-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.script-card span {
  display: block;
  padding: 14px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.script-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(58,169,255,0.45);
}

.scripts-description {
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.scripts-description h1 {
  color: #4aa3ff;
  margin-bottom: 15px;
}

.scripts-description p {
  color: #cfd8ff;
  line-height: 1.6;
}

/* ===================== SCRIPTS PAGE CONTENT FIX ===================== */

.scripts-description {
  max-width: 900px;
  margin: 0 auto 60px auto;
  text-align: center;
}

/* Content title */
.scripts-description h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 42px;
  color: #3aa9ff;
  margin-bottom: 18px;
  text-shadow:
    0 0 8px rgba(58,169,255,0.55),
    0 0 16px rgba(58,169,255,0.35);
}

/* Content paragraphs */
.scripts-description p {
  color: #cfe6ff;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ===================== ABOUT PAGE ===================== */

.about {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 140px 40px 80px;
  text-align: center;
}

.about h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 58px;
  color: #3aa9ff;
  margin-bottom: 35px;
  text-shadow:
    0 0 8px rgba(58,169,255,0.55),
    0 0 16px rgba(58,169,255,0.35);
}

.about p {
  color: #cfe6ff;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ===================== LEGAL PAGES (PRIVACY + TERMS) ===================== */

.legal {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 140px 40px 80px;
  text-align: center;
}

.legal h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 56px;
  color: #3aa9ff;
  margin-bottom: 35px;
  text-shadow:
    0 0 8px rgba(58,169,255,0.55),
    0 0 16px rgba(58,169,255,0.35);
}

.legal p {
  color: #cfe6ff;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* HOME CONTENT */
.home-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 30px 80px;
  text-align: center;
}

.home-content h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 64px;
  color: #3aa9ff;
  margin-bottom: 25px;
  text-shadow: 0 0 10px rgba(58,169,255,0.6);
}

.home-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #4aa3ff;
  margin: 60px 0 15px;
  text-shadow: 0 0 6px rgba(58,169,255,0.4);
}

.home-content p {
  font-size: 18px;
  color: #cfd8ff;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* FORCE HOME TEXT COLORS */
.home-content,
.home-content p {
  color: #cfd8ff;
}

.home-content h1,
.home-content h2 {
  color: #3aa9ff;
}

/* SCRIPT CARD CONTENT */
.script-info {
  padding: 14px 16px 18px;
  text-align: left;
}

.script-info h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #4aa3ff;
  text-align: center;
}

.script-desc {
  font-size: 14px;
  color: #cfd8ff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.script-features {
  list-style: disc;
  padding-left: 18px;
  margin-bottom: 10px;
}

.script-features li {
  font-size: 13px;
  color: #b9dcff;
  margin-bottom: 4px;
}

.script-usage {
  font-size: 13px;
  color: #d6e4ff;
}

/* VISION CONTENT TEXT */
.vision-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 40px 30px;
  text-align: center;
}

.vision-content h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 58px;
  color: #3aa9ff;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(58,169,255,0.6);
}

.vision-content h2 {
  font-size: 34px;
  font-weight: 800;
  color: #4aa3ff;
  margin: 55px 0 15px;
  text-shadow: 0 0 6px rgba(58,169,255,0.4);
}

.vision-content p {
  font-size: 18px;
  color: #cfd8ff;
  line-height: 1.7;
}

.vision-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.vision-list li {
  font-size: 17px;
  color: #b9dcff;
  margin: 8px 0;
}


/* 🔥 Ad Container Styling */
.ad-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 15px;
  margin: 25px 0;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  transition: 0.3s;
}

.ad-card:hover {
  transform: scale(1.02);
}

/* Label above ads */
.ad-label {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Make ads centered */
.ad-center {
  display: flex;
  justify-content: center;
}
