body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background-color: #111;
  color: #fff;
  padding-top: 0;
}

header {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  min-height: 80px;
}

.hamburger {
  display: none !important;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 10000;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a.cta {
  background: linear-gradient(to right, #ff00cc, #3333ff);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: #fff;
}

.logo img {
  animation: laserGlow 2.5s infinite ease-in-out;
  max-height: 180px;
  height: auto;
  width: auto;
}

@keyframes laserGlow {
  0% {
    filter: drop-shadow(0 0 5px #ff00cc) drop-shadow(0 0 10px #3333ff);
  }
  50% {
    filter: drop-shadow(0 0 15px #ff00cc) drop-shadow(0 0 25px #3333ff);
  }
  100% {
    filter: drop-shadow(0 0 5px #ff00cc) drop-shadow(0 0 10px #3333ff);
  }
}

.logo img:hover {
  animation: bounceLogo 0.6s ease;
}

@keyframes bounceLogo {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-10px); }
  50%  { transform: translateY(5px); }
  70%  { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.hero {
  text-align: center;
  padding: 60px 20px 40px 20px;
  background: linear-gradient(135deg, #ff00cc, #3333ff);
  color: white;
  margin-top: 220px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  margin: 0 0 10px 0;
}

.hero .tagline {
  font-size: 1.2rem;
  margin: 0;
}

.order-page {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
}

.order-intro {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.order-intro h2 {
  text-align: center;
  color: #ff00cc;
  margin-bottom: 2rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.step {
  text-align: center;
  padding: 1.5rem;
  background: #222;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: linear-gradient(135deg, #ff00cc, #3333ff);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.step h3 {
  color: #fff;
  margin: 1rem 0 0.5rem 0;
  font-size: 1.1rem;
}

.step p {
  color: #ccc;
  font-size: 0.9rem;
  margin: 0;
}

.order-form {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
}

.order-form h2 {
  text-align: center;
  color: #ff00cc;
  margin-bottom: 2rem;
}

.form-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section h3 {
  color: #ff00cc;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.order-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #f0f0f0;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #333;
  border-radius: 5px;
  font-size: 1rem;
  background: #222;
  color: #fff;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: none;
  border-color: #ff00cc;
}

.order-form small {
  display: block;
  color: #999;
  font-size: 0.85rem;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

.upload-note {
  background: #222;
  padding: 1rem;
  border-radius: 5px;
  border-left: 3px solid #3333ff;
  margin: 0.5rem 0;
  color: #f0f0f0;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(to right, #ff00cc, #3333ff);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 0, 204, 0.5);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.order-info {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.order-info h3 {
  color: #ff00cc;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.order-info h3:first-child {
  margin-top: 0;
}

.order-info ul {
  list-style: none;
  padding: 0;
}

.order-info li {
  margin: 0.5rem 0;
  color: #f0f0f0;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #000;
  font-size: 0.9rem;
  margin-top: 3rem;
}

footer img {
  animation: laserGlow 2.5s infinite ease-in-out;
  max-height: 180px;
  height: auto;
  width: auto;
  display: block;
  margin: 0 auto 1rem auto;
}

footer img:hover {
  animation: bounceLogo 0.6s ease;
}

@media screen and (max-width: 768px) {
  header {
    padding: 1rem;
  }

  .logo img {
    max-height: 120px !important;
  }

  .hamburger {
    display: flex !important;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #000;
    transition: right 0.3s ease;
    padding-top: 100px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 2rem;
  }

  nav li {
    border-bottom: 1px solid #333;
    padding: 1rem 0;
  }

  nav a {
    display: block;
    font-size: 1.2rem;
  }

  nav a.cta {
    margin-top: 1rem;
    text-align: center;
  }

  .hero {
    margin-top: 120px;
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .order-page {
    padding: 0.5rem;
  }

  .order-form,
  .order-intro,
  .order-info {
    padding: 1.5rem;
  }
}
