* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #0a0c10;
  color: #e6e9ee;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

header {
  text-align: center;
  margin-bottom: 36px;
}

header h1 {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0;
  background: linear-gradient(180deg, #fff 0%, #ffe082 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

header .tagline {
  margin: 8px 0 0;
  color: #6c7480;
  letter-spacing: 0.05em;
  font-size: 14px;
  text-transform: uppercase;
}

.card {
  background: #11141a;
  border: 1px solid #1f2329;
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 20px;
}

.card h2 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #fff;
}

.card p {
  margin: 0 0 14px;
  color: #8b95a4;
  font-size: 14px;
  line-height: 1.5;
}

.card p.hint {
  margin-top: 14px;
  margin-bottom: 0;
  color: #6c7480;
  font-size: 13px;
}

form {
  display: flex;
  gap: 10px;
  align-items: center;
}

input[type='text'] {
  flex: 1;
  background: #0d1015;
  color: #fff;
  border: 1px solid #2a2f38;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s ease;
}

input[type='text']:focus {
  border-color: #1a5fff;
}

button {
  background: #1a5fff;
  color: #fff;
  border: 1px solid #2a6fff;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.15s ease;
}

button:hover {
  background: #2a6fff;
}

code {
  background: #1a1e26;
  color: #ffd54f;
  padding: 2px 7px;
  border-radius: 4px;
  font-family: ui-monospace, monospace;
  font-size: 13px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 4px;
}

table th,
table td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid #1a1e26;
}

table th {
  color: #6c7480;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

table td:first-child {
  color: #8b95a4;
  width: 36%;
}

table td code {
  word-break: break-all;
  background: transparent;
  color: #38bdf8;
  padding: 0;
}

#recent-shows {
  margin-top: 16px;
}

#recent-shows p {
  margin: 0 0 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6c7480;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  background: #1a1e26;
  border: 1px solid #2a2f38;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  color: #e6e9ee;
  text-decoration: none;
  font-family: ui-monospace, monospace;
  transition: background 0.12s ease, border-color 0.12s ease;
}

.chip:hover {
  background: #232832;
  border-color: #3a414c;
  color: #fff;
}

#notice {
  background: rgba(255, 42, 42, 0.08);
  border: 1px solid rgba(255, 42, 42, 0.3);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  color: #ff8a8a;
  font-size: 14px;
}
