* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  background: linear-gradient(135deg, #000000, #111111, #1a1a1a);
  color: #e5e5e5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(212, 175, 55, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(255, 215, 0, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.container {
  max-width: 1000px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Robot Animation */
.robot-container {
  margin-bottom: 40px;
  position: relative;
}

.robot {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.robot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #d4af37 0%, #aa8c2c 50%, #80691f 100%);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}

.robot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #fcf6ba 0%, #d4af37 100%);
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4);
}

.robot-eyes {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 40px;
}

.eye {
  position: absolute;
  width: 25px;
  height: 35px;
  background: radial-gradient(circle, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.eye.left {
  left: 10px;
  animation: blink 2s infinite;
}

.eye.right {
  right: 10px;
  animation: blink 2s infinite 0.1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes blink {
  0%,
  90%,
  100% {
    transform: scaleY(1);
  }
  95% {
    transform: scaleY(0.1);
  }
}

/* Header Content */
.header-content {
  margin-bottom: 50px;
}

.main-title {
  font-size: 3.5rem;
  font-weight: bold;
  background: linear-gradient(
    135deg,
    #bf953f,
    #fcf6ba,
    #b38728,
    #fbf5b7,
    #aa771c
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
  color: #d4af37;
  font-weight: 900;
}

.subtitle {
  font-size: 1.8rem;
  color: #e5e5e5;
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: 1px;
}

.description {
  font-size: 1.2rem;
  color: #a3a3a3;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.user-stats {
  font-size: 1rem;
  color: #737373;
  margin-bottom: 40px;
}

.stats-highlight {
  color: #d4af37;
  font-weight: bold;
}

/* Input Section */
.input-section {
  margin-bottom: 50px;
}

.stock-input {
  width: 100%;
  max-width: 500px;
  padding: 18px 25px;
  font-size: 1.1rem;
  border: 1px solid #d4af37;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.6);
  color: #d4af37;
  outline: none;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.stock-input:focus {
  border-color: #fcf6ba;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.stock-input::placeholder {
  color: #737373;
}

.start-button {
  background: linear-gradient(135deg, #bf953f, #aa771c);
  color: #000000;
  border: 1px solid #fcf6ba;
  padding: 20px 60px;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  min-width: 250px;
  position: relative;
  overflow: hidden;
}

.start-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.start-button:hover::before {
  left: 100%;
}

.start-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

/* Progress Bar */
.progress-container {
  display: none;
  margin: 40px 0;
  text-align: center;
}

.progress-bar {
  width: 100%;
  max-width: 400px;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 1px solid #333;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #bf953f, #fcf6ba, #b38728);
  width: 0%;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 1.1rem;
  color: #d4af37;
  font-weight: 500;
}

/* Progress Modal */
.progress-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.progress-modal-content {
  background: #111;
  border: 1px solid #d4af37;
  border-radius: 4px;
  padding: 50px 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.1);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #333;
}

.modal-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #bf953f, #aa771c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: #000;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  border: 2px solid #fcf6ba;
}

.modal-title {
  font-size: 2rem;
  font-weight: bold;
  color: #d4af37;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.modal-stock {
  font-size: 1.8rem;
  font-weight: bold;
  color: #e5e5e5;
  margin-bottom: 15px;
}

.modal-subtitle {
  color: #a3a3a3;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.contact-button {
  background: linear-gradient(135deg, #bf953f, #aa771c);
  color: #000;
  border: 1px solid #fcf6ba;
  padding: 20px 50px;
  border-radius: 4px;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  min-width: 300px;
}

.contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .main-title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.4rem;
  }

  .container {
    padding: 20px 15px;
  }

  .robot {
    width: 150px;
    height: 150px;
  }

  .robot::before {
    width: 130px;
    height: 130px;
  }

  .robot::after {
    width: 90px;
    height: 90px;
  }

  .start-button {
    padding: 15px 40px;
    font-size: 1.1rem;
  }

  .progress-modal-content {
    padding: 30px 20px;
  }

  .modal-title {
    font-size: 1.5rem;
  }
}
