body {
  margin: 0;
  font-family: Arial;
  background: black;
  color: white;
  text-align: center;
}

.hero {
  padding: 60px;
}

.order-form {
  background: #111;
  padding: 20px;
  max-width: 500px;
  margin: 20px auto;
  border-radius: 10px;
}

input, textarea, select {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  background: black;
  color: white;
  border: 1px solid #333;
}

button {
  width: 100%;
  padding: 10px;
  background: white;
  color: black;
  border: none;
  cursor: pointer;
}

#intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeOut 0.8s ease forwards;
  animation-delay: 2.2s;
}

#intro-logo {
  width: 160px;
  animation: zoomIn 1s ease;
}

#intro h2 {
  margin-top: 20px;
  font-size: 22px;
  opacity: 0;
  animation: fadeInText 1s ease forwards;
  animation-delay: 0.6s;
}

@keyframes zoomIn {
  0% { transform: scale(0.3); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInText {
  to { opacity: 1; }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

#intro {
  position: fixed;
  inset: 0;
  background: black;
  overflow: hidden;
  z-index: 99999;
}

#particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.intro-content {
  position: absolute;
  width: 100%;
  top: 45%;
  transform: translateY(-50%);
  text-align: center;
}

#logo {
  width: 160px;
  animation: logoIn 1.2s ease forwards;
  opacity: 0;
}

@keyframes logoIn {
  0% { transform: scale(0.3); opacity: 0; filter: blur(10px); }
  100% { transform: scale(1); opacity: 1; filter: blur(0); }
}

/* GLITCH TEXT */
.glitch {
  font-size: 26px;
  color: white;
  position: relative;
  margin-top: 20px;
  animation: fadeInText 1.5s ease forwards;
  opacity: 0;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.glitch::before {
  animation: glitchTop 1.5s infinite linear;
  color: #ff004c;
}

.glitch::after {
  animation: glitchBottom 1.5s infinite linear;
  color: #00fff2;
}

@keyframes fadeInText {
  to { opacity: 1; }
}

@keyframes glitchTop {
  0% { transform: translate(0,0); }
  20% { transform: translate(-2px,-2px); }
  40% { transform: translate(2px,0); }
  60% { transform: translate(-1px,1px); }
  100% { transform: translate(0,0); }
}

@keyframes glitchBottom {
  0% { transform: translate(0,0); }
  20% { transform: translate(2px,2px); }
  40% { transform: translate(-2px,0); }
  60% { transform: translate(1px,-1px); }
  100% { transform: translate(0,0); }
}

.reel-hero {
  padding: 60px 20px;
  text-align: center;
}

.reel-container {
  position: relative;
  width: 300px;
  height: 520px;
  margin: 30px auto;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #333;
  background: black;
}

.reel {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.reel.active {
  opacity: 1;
}