/* General Body Styling */
body {
  background: linear-gradient(135deg, #333, #111);
  color: #e0e0e0;
  font-family: 'Poppins', 'Arial', Helvetica, sans-serif;
  padding: 4rem;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Logo & About */
.logo {
  margin-bottom: 3rem;
  text-align: center;
}
.logo img {
  width: 500px;
  border-radius: 1rem;
  box-shadow: 0 0 25px rgba(102, 255, 0, 0.3);
}
.logo h1 {
  font-size: 2.5rem;
  color: #66ff00;
}
.logo h6 {
  font-size: 1rem;
  color: #ccc;
  margin-top: 0.5rem;
  font-weight: 400;
}

/* Section Styling */
#motto, #how-it-works, #dragon, #order {
  background: #111;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(255, 51, 204, 0.3), 0 0 15px rgba(102, 255, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#motto:hover, #how-it-works:hover, #dragon:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(255, 51, 204, 0.6), 0 0 25px rgba(102, 255, 0, 0.3);
}

#how-it-works, #dragon {
  color: #ff33cc;
}
#motto, #order {
  color: #66ff00;
}

/* Navigation */
.navigate {
  background: linear-gradient(90deg, #000, #66ff00, #ff33cc);
  color: #fff;
  padding: 1.25rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 15px rgba(255, 51, 204, 0.5);
  font-weight: 600;
  text-align: center;
}
.navigate ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.navigate li {
  display: inline;
}
.navigate a {
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.navigate a:hover {
  color: #66ff00;
}

/* Link Buttons */
a {
  display: inline-block;
  background: linear-gradient(90deg, #66ff00, #ff33cc, #66ff00);
  background-size: 200% auto;
  color: #000;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  box-shadow: 0 0 10px #66ff00a0, 0 0 20px #ff33cc80;
  transition: all 0.3s ease-in-out;
}
a:hover {
  background-position: right center;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 15px #66ff00, 0 0 30px #ff33cc;
}

/* Text & Paragraphs */
p {
  font-size: 1.1rem;
  margin: 1rem 0;
  color: #ccc;
}

/* Image Styling */
img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.left-img, .right-img {
  width: 48%;
  margin: 1%;
}
.left-img {
  float: left;
}
.right-img {
  float: right;
}

/* Text Containers */
.text-container, .text-container-2 {
  overflow: hidden;
  padding: 2rem;
  border-radius: 1rem;
  background: #1b1b1b;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.text-container-2 {
  background: #ff33cc;
  color: #000;
}

/* Scroll Reveal Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

/* Responsive Styling */
@media screen and (max-width: 768px) {
  body {
      padding: 2rem;
  }
  .left-img, .right-img {
      width: 100%;
      float: none;
      margin: 1rem 0;
  }
  .navigate ul {
      flex-direction: column;
      gap: 1rem;
  }
  .logo h1 {
      font-size: 1.8rem;
  }
}

form {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(255, 51, 204, 0.3);
  max-width: 600px;
  margin: auto;
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: none;
  margin-top: 0.5rem;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

button {
  background: linear-gradient(90deg, #66ff00, #ff33cc);
  color: #000;
  font-weight: bold;
  padding: 0.75rem 2rem;
  margin-top: 1rem;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  box-shadow: 0 0 10px #66ff00a0, 0 0 20px #ff33cc80;
  transition: all 0.3s ease-in-out;
}

button:hover {
  background-position: right center;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 15px #66ff00, 0 0 30px #ff33cc;
}
