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

body {
  font-family: "Fira Code", "Courier New", monospace;
  background: #0a0e27;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0e6ed;
  overflow-x: hidden;
}

.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s infinite;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.container {
  background: linear-gradient(135deg, #1a1f3a 0%, #16213e 100%);
  border: 1px solid #2d3561;
  border-radius: 12px;
  padding: 60px 50px;
  max-width: 700px;
  width: 90%;
  position: relative;
  z-index: 10;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(100, 200, 255, 0.1);
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #2d3561;
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red {
  background: #ff5f56;
}

.dot-yellow {
  background: #ffbd2e;
}

.dot-green {
  background: #27c93f;
}

.terminal-title {
  font-size: 0.9em;
  color: #888;
  margin-left: 10px;
}

h1 {
  font-size: 2.8em;
  margin-bottom: 5px;
  color: #64c8ff;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(100, 200, 255, 0.3);
  letter-spacing: -1px;
}

.subtitle {
  font-size: 1em;
  color: #888;
  margin-bottom: 35px;
  font-weight: 400;
}

.subtitle::before {
  content: "> ";
  color: #64c8ff;
}

.code-block {
  background: #0f1419;
  border: 1px solid #2d3561;
  border-radius: 8px;
  padding: 20px;
  margin: 25px 0;
  font-size: 0.95em;
  line-height: 1.6;
  overflow-x: auto;
}

.code-block .keyword {
  color: #ff79c6;
}

.code-block .string {
  color: #a1ff60;
}

.code-block .comment {
  color: #6272a4;
}

.code-block .function {
  color: #64c8ff;
}

.status-badge {
  display: inline-block;
  background: rgba(100, 200, 255, 0.1);
  border: 1px solid #64c8ff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85em;
  margin: 20px 0;
  color: #64c8ff;
}

.countdown {
  font-size: 1.2em;
  color: #a1ff60;
  font-weight: 600;
  margin: 20px 0;
  letter-spacing: 0.5px;
}

.countdown::before {
  content: "❯ ";
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #2d3561, transparent);
  margin: 35px 0;
}

.links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 35px;
}

.btn {
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #2d3561;
  background: #0f1419;
  color: #64c8ff;
  cursor: pointer;
  font-family: "Fira Code", monospace;
  font-size: 0.9em;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(100, 200, 255, 0.1);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  border-color: #64c8ff;
  color: #64c8ff;
  box-shadow:
    0 0 20px rgba(100, 200, 255, 0.2),
    inset 0 0 20px rgba(100, 200, 255, 0.05);
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #64c8ff 0%, #4a9eff 100%);
  color: #0a0e27;
  border: 1px solid #64c8ff;
}

.btn-primary:hover {
  color: #0a0e27;
  box-shadow: 0 0 30px rgba(100, 200, 255, 0.4);
}

@media (max-width: 600px) {
  .container {
    padding: 40px 25px;
  }
  h1 {
    font-size: 2em;
  }
  .links {
    gap: 8px;
  }
  .btn {
    padding: 8px 16px;
    font-size: 0.85em;
  }
}
