:root {
  --hero-bg: url();
}
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}
.info-box {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--color-surface-light);
  border-radius: 0.5rem;
  font-size: 0.9rem;
}
.console {
  background: #1e1e1e;
  color: #d4d4d4;
  border-radius: 0.5rem;
  padding: 1rem;
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 0.85rem;
  max-height: 300px;
  overflow-y: auto;
}
.console .log {
  margin: 0.25rem 0;
  padding: 0.25rem 0;
  border-bottom: 1px solid #333;
}
.console .log:last-child {
  border-bottom: none;
}
.console .success {
  color: #4ade80;
}
.console .error {
  color: #f87171;
}
.console .warn {
  color: #fbbf24;
}
.console .info {
  color: #60a5fa;
}
.color-swatch {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  vertical-align: middle;
  margin-right: 0.5rem;
  border: 1px solid var(--color-border);
}
.variables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.75rem;
}
.variable-item {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  background: var(--color-surface-light);
  border-radius: 0.25rem;
  font-size: 0.85rem;
}
.variable-name {
  color: var(--color-text-muted);
  font-family: monospace;
}
.variable-value {
  color: var(--color-text);
  font-family: monospace;
  word-break: break-all;
}
.text-muted {
  color: var(--color-text-muted);
}
.test-section {
  border-top: 2px dashed var(--color-border);
  padding-top: 1.5rem;
}
.hero {
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}