:root {
  --bg-color: #0b0b0b;
  --card-bg: #121212;
  --border-color: #222222;
  --text-main: #ededed;
  --text-muted: #52525b;
  --accent-color: #3f3f46;
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-family);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.container {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}

/* Branding */
.branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.icon-wrapper {
  position: relative;
}

.icon {
  width: 96px;
  height: 96px;
  /* Removed: background-color, border, padding, and box-shadow */
  object-fit: cover;
}

.title-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.title {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-main);
}

.accent {
  color: var(--text-muted);
}

.status {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* Divider */
.divider {
  width: 40px;
  height: 1px;
  background-color: var(--border-color);
}

/* Links Section */
.links-section {
  width: 100%;
  display: flex;
  flex-direction: flex-col;
  flex-direction: column;
  gap: 0.75rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-align: left;
  padding-left: 0.25rem;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.btn-disabled {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  background-color: rgba(18, 18, 18, 0.6);
  border: 1px solid var(--border-color);
  color: #3f3f46;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: not-allowed;
  user-select: none;
}

.badge {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #52525b;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

/* Footer */
.footer {
  font-size: 0.75rem;
  color: #27272a;
  margin-top: 1rem;
}