* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow-y: auto;
}

.background-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(120, 119, 198, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 119, 198, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(120, 219, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.floating-items {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-item {
  position: absolute;
  font-size: 24px;
  opacity: 0.15;
  animation: float-around var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
}

.floating-item:nth-child(1) {
  top: 10%;
  left: 10%;
}
.floating-item:nth-child(2) {
  top: 20%;
  left: 80%;
}
.floating-item:nth-child(3) {
  top: 60%;
  left: 15%;
}
.floating-item:nth-child(4) {
  top: 70%;
  left: 85%;
}
.floating-item:nth-child(5) {
  top: 30%;
  left: 50%;
}
.floating-item:nth-child(6) {
  top: 80%;
  left: 40%;
}
.floating-item:nth-child(7) {
  top: 15%;
  left: 60%;
}
.floating-item:nth-child(8) {
  top: 50%;
  left: 25%;
}

@keyframes float-around {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -30px) rotate(10deg);
  }
  50% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
  75% {
    transform: translate(20px, 10px) rotate(5deg);
  }
}

.container {
  max-width: 700px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.logo-section {
  margin-bottom: 40px;
}

.logo-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.logo-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.tagline {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cta-section {
  margin-bottom: 32px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.cta-button svg {
  width: 20px;
  height: 20px;
}

.coding-animation {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: #ff5f57;
}

.dot.yellow {
  background: #febc2e;
}

.dot.green {
  background: #28c840;
}

.terminal-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Inter", monospace;
}

.terminal-content {
  padding: 20px;
  font-family: "Fira Code", "Consolas", monospace;
  font-size: 13px;
  line-height: 1.8;
}

.code-line {
  display: flex;
  align-items: center;
  min-height: 24px;
}

.code-keyword {
  color: #c792ea;
}

.code-variable {
  color: #82aaff;
}

.code-string {
  color: #c3e88d;
}

.code-comment {
  color: #546e7a;
  font-style: italic;
}

.code-indent {
  margin-left: 20px;
}

.code-cursor {
  color: #667eea;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.delivery-animation {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.delivery-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.delivery-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: rgba(102, 126, 234, 0.2);
  border: 2px solid rgba(102, 126, 234, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.step-1 .step-icon {
  background: rgba(102, 126, 234, 0.4);
  border-color: #667eea;
  animation: pulse-step 2s infinite;
}

.step-2 .step-icon {
  animation: pulse-step 2s infinite 0.5s;
}

.step-3 .step-icon {
  animation: pulse-step 2s infinite 1s;
}

.step-4 .step-icon {
  animation: pulse-step 2s infinite 1.5s;
}

@keyframes pulse-step {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
  }
}

.step-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.delivery-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 8px;
  position: relative;
  overflow: hidden;
}

.delivery-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #667eea, transparent);
  animation: line-flow 3s infinite;
}

@keyframes line-flow {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.bike-animation {
  position: relative;
  height: 60px;
  overflow: hidden;
}

.bike {
  position: absolute;
  font-size: 32px;
  animation: bike-ride 4s linear infinite;
}

@keyframes bike-ride {
  0% {
    left: -50px;
    transform: scaleX(-1);
  }
  45% {
    left: calc(100% + 50px);
    transform: scaleX(-1);
  }
  50% {
    left: calc(100% + 50px);
    transform: scaleX(1);
  }
  95% {
    left: -50px;
    transform: scaleX(1);
  }
  100% {
    left: -50px;
    transform: scaleX(-1);
  }
}

.road {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.road::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.3) 0px,
    rgba(255, 255, 255, 0.3) 20px,
    transparent 20px,
    transparent 40px
  );
  transform: translateY(-50%);
  animation: road-move 1s linear infinite;
}

@keyframes road-move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 0;
  }
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(102, 126, 234, 0.2);
  border: 1px solid rgba(102, 126, 234, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  color: #a5b4fc;
  font-size: 14px;
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #667eea;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.message {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.feature-icon {
  font-size: 28px;
}

.feature-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.contact-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}

.contact-title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.contact-link svg {
  width: 18px;
  height: 18px;
}

.footer {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
  .content {
    padding: 40px 24px;
  }

  h1 {
    font-size: 32px;
  }

  .features {
    gap: 20px;
  }

  .contact-links {
    flex-direction: column;
  }
}
