/* ===== Base Styles ===== */
body {
  background: #000000;
  margin: 0;
  padding: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #ffffff;
  line-height: 1.8;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ===== Headings and Text ===== */
h1, h2, h3, h4, p {
  text-align: center;
  margin: 15px auto;
  padding: 0 15px;
  max-width: 95vw;
  word-wrap: break-word;
}

h1 {
  font-size: clamp(2.4em, 6vw, 3.4em);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #e8b3ff, #b47fff, #a966ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(180, 100, 255, 0.3));
}

h2 {
  font-size: clamp(1.8em, 4.5vw, 2.5em);
  font-weight: 600;
  color: #e8b3ff;
}

h3 {
  font-size: clamp(1.5em, 3.5vw, 2em);
  font-weight: 500;
  color: #d9b8ff;
}

/* Keep space for h4 but hide text */
h4 {
  visibility: hidden;
  font-size: clamp(1.2em, 2.5vw, 1.6em);
  font-weight: 600;
  margin: 20px 0;
}

p {
  font-size: clamp(1.2em, 4vw, 1.6em);
  max-width: 750px;
  margin: 10px auto 30px;
  line-height: 1.9;
  color: #f2f2f2;
}

/* ===== Images ===== */
img {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(150, 0, 255, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

@media (hover: hover) {
  img:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 35px rgba(220, 150, 255, 0.35);
  }
}

/* ===== Links / Buttons ===== */
a {
  display: inline-block;
  background: linear-gradient(135deg, #b47fff, #e8b3ff);
  padding: clamp(12px, 3vw, 20px) clamp(30px, 6vw, 40px);
  color: #000000;
  text-decoration: none;
  font-size: clamp(1.2em, 4vw, 1.6em);
  border-radius: 14px;
  transition: all 0.35s ease;
  margin: 10px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(200, 150, 255, 0.3);
}

a:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #cfa8ff, #f0ccff);
  box-shadow: 0 8px 25px rgba(230, 180, 255, 0.4);
}

/* ===== Container Layout ===== */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-bottom: 80px;
}

/* ===== Decorative Elements ===== */
hr {
  width: 60%;
  margin: 40px auto;
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cfa8ff, transparent);
  opacity: 0.6;
}

/* ===== Subtle Fade-In Animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeIn 0.9s ease forwards;
}

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

/* ===== Glow Box (Optional) ===== */
.glow-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(220, 180, 255, 0.2);
  box-shadow: 0 0 20px rgba(200, 150, 255, 0.1);
  border-radius: 16px;
  padding: 25px;
  transition: box-shadow 0.4s ease, transform 0.3s ease;
  backdrop-filter: blur(6px);
}

.glow-box:hover {
  box-shadow: 0 0 35px rgba(220, 180, 255, 0.3);
  transform: translateY(-5px);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  h1 { font-size: 2em; }
  h2 { font-size: 1.7em; }
  h3 { font-size: 1.3em; }
  p { font-size: 1.2em; }
  a { font-size: 1.2em; padding: 14px 24px; }
  img { max-width: 95%; }
}

@media (max-width: 480px) {
  body {
    font-size: 18px;
    line-height: 1.9;
    padding: 0 10px;
  }

  a {
    display: block;
    width: 90%;
    margin: 16px auto;
    font-size: 1.5em;
    padding: 20px 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #b47fff, #e8b3ff);
  }

  a:hover {
    transform: none;
  }
}

}