:root {
  --bg: #050608;
  --bg-card: #101218;
  --accent: #f2b705;
  --accent-soft: rgba(242, 183, 5, 0.16);
  --text-main: #f5f5f5;
  --text-muted: #9fa4b5;
  --border-soft: rgba(255, 255, 255, 0.06);
  --radius-lg: 18px;
  --radius-xl: 999px;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: radial-gradient(circle at top left, #171a24, #050608 50%, #050608);
  color: var(--text-main);
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 16px;
  max-width: 480px;
  margin: 0 auto;
}

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

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--accent), #ffdd55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #101218;
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.3), 0 10px 25px rgba(0,0,0,0.6);
}

.titles {
  display: flex;
  flex-direction: column;
}

.project-name {
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 13px;
  text-transform: uppercase;
}

.project-subtitle {
  font-size: 12px;
  color: var(--text-muted);
}

.card {
  background: linear-gradient(145deg, rgba(255,255,255,0.02), rgba(0,0,0,0.6));
  border-radius: var(--radius-lg);
  padding: 18px 16px 18px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  backdrop-filter: blur(16px);
}

.card-title {
  margin: 0 0 8px 0;
  font-size: 18px;
}

.card-text {
  margin: 0 0 14px 0;
  font-size: 14px;
  color: var(--text-muted);
}

.status {
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 13px;
  background: rgba(255,255,255,0.02);
  border: 1px dashed var(--border-soft);
  margin-bottom: 16px;
  min-height: 32px;
  display: flex;
  align-items: center;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  border: none;
  outline: none;
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn.primary {
  background: var(--accent);
  color: #14151b;
  box-shadow: 0 10px 25px rgba(0,0,0,0.55);
}

.btn.primary:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 3px 12px rgba(0,0,0,0.7);
}

.btn.secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text-main);
  border: 1px solid rgba(255,255,255,0.12);
}

.btn.secondary:active {
  transform: translateY(1px) scale(0.98);
}

.btn.ghost {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(242,183,5,0.35);
}

.btn.ghost:active {
  transform: translateY(1px) scale(0.98);
}

.full-width {
  width: 100%;
}

.hint {
  margin: 0 0 8px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.app-footer {
  margin-top: auto;
  padding-top: 16px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  opacity: 0.85;
}
