:root {
  --bg: #000000;
  --red: #e60000;
  --purple: #a259ff;
  --text: #ffffff;
  --muted: #aaaaaa;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Share Tech Mono', monospace;
  background: radial-gradient(circle at top, #1a1a1a 0, #000000 60%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app {
  width: 100%;
  max-width: 480px;
  padding: 24px 18px 16px;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.logo-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  box-shadow: 0 0 16px rgba(230, 0, 0, 0.6);
}

.logo-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}


.titles h1 {
  margin: 0;
  font-size: 1.6rem;
}

.subtitle {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.now-playing {
  margin-bottom: 28px;
}

.now-playing .label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.track {
  font-size: 1.1rem;
  font-weight: 600;
  min-height: 1.4em;
}

.controls {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.btn {
  border: none;
  outline: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--red), var(--purple));
  color: var(--text);
  box-shadow: 0 0 18px rgba(162, 89, 255, 0.5);
}

.btn.ghost {
  background: transparent;
  color: var(--purple);
  border: 1px solid var(--purple);
}

.btn.primary:active,
.btn.ghost:active {
  transform: scale(0.97);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}

.status is a {
  font-size: 0.85rem;
  color: var(--muted);
}

.status.small {
  font-size: 0.75rem;
}
.secret {
  margin-bottom: 32px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.secret-title {
  margin: 0 0 6px;
  font-size: 1rem;
}

.secret-text {
  margin: 0 0 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

.secret-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.secret-row input {
  flex: 1;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.5);
  color: var(--text);
  outline: none;
  font-size: 0.9rem;
}

.secret-row input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.secret-content {
  margin-top: 4px;
}

.hidden {
  display: none;
}

.footer {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.9;
}

/* Small screens */
@media (max-width: 480px) {
  .app {
    padding-top: 32px;
  }
}