/* =========================
   GLOBAL
========================= */
body {
  background: #0b0f14;
  color: #e6e9ee;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   KIOSK LAYOUT
========================= */
.kiosk-wrap {
  min-height: 100vh;
  padding: 2.5rem;
}

.kiosk-title {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 1;
  color: #ffffff;
}

/* =========================
   BOUNTY CARDS
========================= */
.bounty-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.07),
    rgba(255,255,255,0.03)
  );
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.bounty-card .card-body {
  color: #e6e9ee;
}

/* Title */
.bounty-card .h3 {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.03em;
}

/* Description */
.bounty-card .text-white-50 {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 1rem;
}

/* Prize */
.prize {
  font-weight: 800;
  font-size: 1.15rem;
  color: #ffffff;
}

/* =========================
   MYSTERY STATE
========================= */
.mystery {
  opacity: 0.78;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  filter: none;
}

/* =========================
   BADGES
========================= */
.badge-soft {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
}

/* OPEN */
.badge.text-bg-warning {
  background-color: #ffc107 !important;
  color: #000 !important;
  font-weight: 900;
  letter-spacing: 0.05em;
}

/* CLAIMED */
.badge.text-bg-success {
  background-color: #198754 !important;
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* MYSTERY TAG */
.badge.text-bg-secondary {
  background-color: rgba(255,255,255,0.25) !important;
  color: #ffffff !important;
  font-weight: 700;
}

/* UNVEILED TAG */
.badge.text-bg-info {
  background-color: #0dcaf0 !important;
  color: #000 !important;
  font-weight: 800;
}

/* =========================
   ADMIN VIEW
========================= */
.admin-wrap {
  min-height: 100vh;
  padding: 2rem 0;
}

.table thead th {
  white-space: nowrap;
}

/* =========================
   TV / DISTANCE OPTIMIZATION
========================= */
@media (min-width: 1200px) {
  .bounty-card .h3 {
    font-size: 1.6rem;
  }

  .bounty-card .text-white-50 {
    font-size: 1.05rem;
  }

  .prize {
    font-size: 1.25rem;
  }
}
