/* Burnbox - Theme Variables */

:root {
  --bg: #0a0a0b;
  --bg-card: #111113;
  --bg-hover: #1a1a1d;
  --border: #2a2a2e;
  --text: #e4e4e7;
  --text-muted: #71717a;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

[data-theme="light"] {
  --bg: #f8fafc;
  --bg-card: #ffffff;
  --bg-hover: #f1f5f9;
  --border: #e2e8f0;
  --text: #1e293b;
  --text-muted: #64748b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

header h1 {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.tagline {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.sub-tagline {
  color: var(--text-muted);
  font-size: 0.875rem;
  max-width: 400px;
  margin: 0.5rem auto 0;
}

/* Theme Toggle */
.theme-toggle {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--text);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  display: block;
}

.theme-toggle .icon-moon {
  display: none;
}

[data-theme="light"] .theme-toggle .icon-sun {
  display: none;
}

[data-theme="light"] .theme-toggle .icon-moon {
  display: block;
}

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Drop Zone */
.drop-zone {
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.drop-zone:hover,
.drop-zone.dragover {
  border-color: var(--accent);
  background: rgba(59, 130, 246, 0.05);
}

.drop-zone.has-file {
  border-style: solid;
  border-color: var(--success);
  background: rgba(34, 197, 94, 0.05);
}

.drop-zone-content .icon {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.drop-zone-content p {
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.drop-zone-content .link {
  color: var(--accent);
  text-decoration: underline;
}

.drop-zone-content .hint {
  font-size: 0.8125rem;
}

/* File Info */
.file-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-hover);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}

.file-info.hidden {
  display: none;
}

.file-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow: hidden;
}

.file-name {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-size {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.btn-icon {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
}

.btn-icon:hover {
  color: var(--error);
}

/* File List (multiple files) */
.file-list {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  max-height: 150px;
  overflow-y: auto;
}

.file-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.375rem 0;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--border);
  gap: 0.5rem;
}

.file-list-item:last-child {
  border-bottom: none;
}

.file-list-item .file-icon {
  flex-shrink: 0;
  font-size: 1rem;
}

.file-list-item .name {
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.file-list-item .size {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

/* Options */
.options {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.option-group label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.option-group select {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  background: var(--bg-hover);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  color: var(--text);
  cursor: pointer;
}

.option-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9375rem;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1.5rem;
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  border: none;
  color: white;
}

.btn-primary:hover:not(:disabled) {
  background: var(--accent-hover);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.btn-secondary:hover {
  background: var(--bg-hover);
}

.btn-danger {
  background: var(--error);
  color: white;
}

.btn-danger:hover {
  background: #dc2626;
}

.btn-danger:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.button-group {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.button-group button {
  flex: 1;
}

.warning-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.warning-header h2 {
  margin: 0;
}

.warning-icon {
  width: 48px;
  height: 48px;
  color: var(--warning);
}

.confirm-text {
  text-align: center;
  color: var(--text-muted);
}

.btn-text.hidden,
.btn-loading.hidden {
  display: none;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Spinner */
.spinner {
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

.spinner.large {
  width: 48px;
  height: 48px;
}

.spinner circle {
  stroke: var(--accent);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Success Section */
.success-header,
.ready-header,
.error-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.success-header h2,
.ready-header h2,
.error-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
}

.success-icon {
  color: var(--success);
}

.error-icon {
  color: var(--error);
}

.icon {
  width: 48px;
  height: 48px;
}

/* Link Box */
.link-box {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.link-box input {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem;
  color: var(--text);
}

.link-box input:focus {
  outline: none;
  border-color: var(--accent);
}

.btn-copy {
  background: var(--bg-hover);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-copy svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
}

.btn-copy:hover {
  border-color: var(--accent);
}

.btn-copy:hover svg {
  color: var(--accent);
}

.btn-copy.copied {
  background: var(--success);
  border-color: var(--success);
}

.btn-copy.copied svg {
  color: white;
}

/* Share Options */
.share-options {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn-share {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-share svg {
  width: 16px;
  height: 16px;
}

.btn-share:hover {
  border-color: var(--accent);
  color: var(--text);
}

.btn-share.active {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

/* QR Code Section */
.qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.qr-section #qrCode {
  display: flex;
  justify-content: center;
}

.qr-section #qrCode canvas {
  border-radius: 4px;
}

.qr-section .hint {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #666;
}

/* Hash Box */
.hash-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.hash-box label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hash-box code {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text);
  word-break: break-all;
  margin-top: 0.5rem;
}

.hash-box .hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Drop Meta */
.drop-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.drop-meta p {
  margin-bottom: 0.25rem;
}

.drop-meta strong {
  color: var(--text);
}

/* Delete Section (Kill Switch) */
.delete-section {
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.delete-section summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
  background: var(--bg);
  transition: all 0.2s;
}

.delete-section summary:hover {
  color: var(--error);
}

.delete-section summary svg {
  width: 16px;
  height: 16px;
}

.delete-section[open] summary {
  border-bottom: 1px solid var(--border);
}

.delete-content {
  padding: 1rem;
}

.delete-content p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.delete-content .warning-text {
  color: var(--warning);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.link-box.small {
  margin-bottom: 0;
}

.link-box.small input {
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
}

/* Security Note */
.security-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  padding: 1rem;
}

.security-note svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
}

.security-note p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Warning Box */
.warning-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.warning-box svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--warning);
}

.warning-box p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.warning-box strong {
  color: var(--warning);
}

.warning-box .warning-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  opacity: 0.9;
}

/* Expiry Info */
.expiry-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.expiry-info svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
}

.expiry-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.expiry-info #countdown {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--accent);
}

/* Burned Notice */
.burned-notice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.burned-notice svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--error);
}

.burned-notice p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Loading */
.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
}

/* Error */
.error-message {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.error-reasons {
  background: var(--bg);
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.875rem;
}

.error-reasons p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.error-reasons ul {
  color: var(--text-muted);
  padding-left: 1.25rem;
}

.error-reasons li {
  margin-bottom: 0.25rem;
}

/* File Result */
.file-result {
  background: var(--bg);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.file-result p {
  margin-bottom: 0.25rem;
}

.file-result strong {
  color: var(--text-muted);
}

/* Info Section */
.info-section {
  margin-top: 2rem;
}

.info-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.steps {
  list-style: none;
  counter-reset: steps;
}

.steps li {
  counter-increment: steps;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.25rem;
}

.steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

.steps li strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.steps li p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Features Section */
.features-section {
  margin: 2rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature {
  text-align: center;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.feature strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.feature p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Progress Bar */
.progress-section {
  margin-top: 1.5rem;
}

.progress-bar {
  height: 8px;
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--success));
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-align: center;
}

/* Custom Expiry Section */
.custom-expiry-section {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
}

.custom-expiry-section label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.custom-expiry-section input[type="number"] {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--font-mono);
}

.custom-expiry-section input[type="number"]:focus {
  outline: none;
  border-color: var(--accent);
}

.custom-expiry-section .hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Password Section */
.password-section {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
}

.password-section label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.password-section input[type="password"] {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--font-mono);
}

.password-section input[type="password"]:focus {
  outline: none;
  border-color: var(--accent);
}

.password-section .hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Password Prompt (retrieve page) */
.password-prompt {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
}

.password-prompt-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.password-prompt-header svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.password-prompt-header p {
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
}

.password-prompt input[type="password"] {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--font-mono);
}

.password-prompt input[type="password"]:focus {
  outline: none;
  border-color: var(--accent);
}

.password-error {
  color: var(--error);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 3rem;
}

footer .divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

footer .footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

footer .footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

footer .footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

footer .footer-nav a:hover {
  color: var(--text);
}

footer .footer-cta {
  display: inline-block;
  width: auto;
  margin-bottom: 2rem;
  padding: 0.875rem 2rem;
  text-decoration: none;
}

footer p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

footer .legal {
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--text);
}

.footer-link {
  margin-top: 1rem;
}

.footer-link a {
  color: var(--accent);
  font-size: 0.875rem;
}

.footer-link a:hover {
  text-decoration: underline;
}

/* Back Navigation */
.back-nav {
  margin-bottom: 1.5rem;
}

.back-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
}

.back-nav a:hover {
  color: var(--text);
}

/* Security Page */
.logo-link {
  text-decoration: none;
  color: inherit;
}

.security-section {
  margin-bottom: 2rem;
}

.security-section h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.security-item {
  margin-bottom: 1.5rem;
}

.security-item:last-child {
  margin-bottom: 0;
}

.security-item strong {
  display: block;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.security-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.security-table {
  width: 100%;
  border-collapse: collapse;
}

.security-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.security-table tr:last-child td {
  border-bottom: none;
}

.security-table td:last-child {
  text-align: right;
  font-weight: 500;
}

.security-table .yes {
  color: var(--success);
}

.security-table .partial {
  color: var(--warning);
}

.security-table .no {
  color: var(--text-muted);
}

.security-table.tech td:last-child {
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.table-footnote {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  line-height: 1.5;
}

.security-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.security-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-size: 0.875rem;
  position: relative;
}

.security-list li::before {
  position: absolute;
  left: 0;
  font-weight: bold;
}

.security-list.protected li::before {
  content: "✓";
  color: var(--success);
}

.security-list.unprotected li::before {
  content: "✗";
  color: var(--error);
}

.security-note {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--accent);
}

/* Contact Email */
.contact-email {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  color: var(--accent);
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-top: 0.5rem;
}

/* PGP Section */
.pgp-fingerprint {
  margin: 1rem 0;
}

.pgp-fingerprint code {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  word-break: break-all;
}

.pgp-download {
  display: inline-block;
  margin-bottom: 1rem;
}

/* Inline Email (for legal pages) */
.inline-email {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--accent);
  background: var(--bg);
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
}

.cta-section {
  text-align: center;
  margin: 2rem 0;
}

/* Legal/Privacy Page */
.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.legal-section p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-list {
  margin: 0.75rem 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.legal-list li {
  margin-bottom: 0.375rem;
}

.legal-section a {
  color: var(--accent);
}

sup {
  font-family: inherit !important;
  font-size: 0.75em;
}

/* Utilities */
.hidden {
  display: none !important;
}

.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Comparison Page */
.highlight-quote {
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.6;
  color: var(--text-muted);
}

.highlight-quote strong {
  color: var(--primary);
}

.table-card {
  padding: 0;
  overflow: hidden;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 600px;
}

.compare-table th,
.compare-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  background: var(--card-bg);
  font-weight: 600;
  color: var(--text);
  position: sticky;
  top: 0;
}

.compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.compare-table .highlight-col {
  background: rgba(99, 102, 241, 0.1);
}

.compare-table th.highlight-col {
  color: var(--primary);
}

.yes {
  color: #22c55e;
}

.no {
  color: #ef4444;
}

.warn {
  color: #eab308;
}

.section-intro {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.competitor-desc {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.burnbox-answer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--primary);
}

.security-table .good {
  color: #22c55e;
}

.security-table .warn {
  color: #eab308;
}

.security-table .bad {
  color: #ef4444;
}

.cta-box {
  text-align: center;
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.cta-box h2 {
  margin-bottom: 0.5rem;
}

.cta-box p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.cta-box .btn-primary {
  display: inline-block;
  width: auto;
  color: white;
  text-decoration: none;
  padding: 0.875rem 2rem;
}

/* Responsive */
@media (max-width: 480px) {
  .container {
    padding: 2rem 1rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .drop-zone {
    padding: 2rem 1rem;
  }
  
  .options {
    flex-direction: column;
    gap: 1rem;
  }
  
  header h1 {
    font-size: 1.5rem;
  }
}

/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  max-width: calc(100vw - 2rem);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast.error {
  border-color: var(--error);
  background: rgba(239, 68, 68, 0.1);
}

.toast.error #toastMessage {
  color: var(--error);
}
