.shot-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: var(--r-lg);
  transition: background 0.3s;
  min-height: 200px;
  background: linear-gradient(135deg, #667eea, #764ba2);
}
.shot-window {
  background: #282c34;
  border-radius: 12px;
  box-shadow: 0 20px 68px rgba(0,0,0, 0.55), 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  width: 100%;
  max-width: 720px;
  transition: background 0.3s, box-shadow 0.3s;
}
.shot-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.25);
}
.shot-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.shot-dot--red { background: #ff5f57; }
.shot-dot--yellow { background: #febc2e; }
.shot-dot--green { background: #28c840; }
.shot-titlebar__name {
  flex: 1;
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-mono);
}
.shot-titlebar__brand {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-mono);
  white-space: nowrap;
}
.shot-code {
  padding: 20px 24px;
  font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'SF Mono', monospace;
  font-size: 14px;
  line-height: 1.7;
  overflow-x: auto;
  tab-size: 2;
  color: #fff;
}
.shot-code pre {
  margin: 0;
  background: transparent !important;
  padding: 0 !important;
}
.shot-code code {
  background: transparent !important;
  font-family: inherit;
  font-size: inherit;
}
.settings-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}
.bg-preset {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--t), transform var(--t);
}
.bg-preset:hover { transform: scale(1.12); }
.bg-preset.active { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-dim); }
.share-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
  align-items: center;
}

.cs-input {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  line-height: 1.6;
  resize: vertical;
}

.cs-bg-label {
  margin-bottom: 8px;
  display: block;
}

.cs-bg-presets {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cs-padding-group {
  max-width: 300px;
}

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

.cs-info-h2 { font-size: 1.2rem; margin-bottom: 12px; }
.cs-info-h3 { font-size: 1rem; margin: 20px 0 8px; }

.shot-titlebar__name.is-light { color: rgba(0,0,0,0.4); }