* {
  box-sizing: border-box;
  font-family: 'Orbitron', sans-serif;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #141a22, #05070b);
  color: #fff;
}

.app {
  max-width: 420px;
  margin: auto;
  padding: 20px;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
}

.logo span {
  color: #f5c77a;
}

.watermark {
  font-size: 11px;
  opacity: 0.7;
}

/* INPUT */
.input-panel {
  margin-top: 40px;
  text-align: center;
}

.input-panel h1 {
  margin-bottom: 8px;
}

.input-panel p {
  font-size: 12px;
  opacity: 0.7;
}

.input-panel input {
  width: 100%;
  padding: 14px;
  margin-top: 15px;
  border-radius: 10px;
  border: none;
  background: #0f141c;
  color: #fff;
  text-align: center;
  font-size: 14px;
}

.input-panel select {
  width: 100%;
  padding: 14px;
  margin-top: 15px;
  border-radius: 10px;
  border: none;
  background: #0f141c;
  color: #fff;
  text-align: center;
  font-size: 14px;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5c77a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.input-panel button {
  margin-top: 15px;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #f5c77a, #c8963e);
  font-weight: 700;
  cursor: pointer;
}

/* CARD */
.hidden { display: none; }

.card {
  margin-top: 35px;
  background: linear-gradient(135deg, #151b24, #0b0f14);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 30px rgba(245,199,122,0.15);
}

.card h2 {
  color: #f5c77a;
}

.sub {
  font-size: 12px;
  opacity: 0.7;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.stats div {
  background: #0f141c;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

.stats label {
  font-size: 10px;
  opacity: 0.6;
}

.stats span {
  display: block;
  font-size: 18px;
  margin-top: 4px;
}

/* STATUS */
.status {
  margin-top: 15px;
  font-size: 12px;
  color: #00ff9c;
}

/* FOOTER */
footer {
  margin-top: 40px;
  font-size: 11px;
  text-align: center;
  opacity: 0.6;
}

/* SAURABH */
.loading {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}

.dots::after {
  content: "";
  animation: dots 1.5s infinite;
}

@keyframes dots {
  0% { content: ""; }
  33% { content: "."; }
  66% { content: ".."; }
  100% { content: "..."; }
}