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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #0f0f0f;
  color: #e0e0e0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 640px;
  width: 100%;
  padding: 2rem 1.5rem;
}

header {
  text-align: center;
  margin-bottom: 2.5rem;
}

header h1 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -2px;
  color: #fff;
  line-height: 1;
}

.accent {
  color: #e53e3e;
}

.subtitle {
  font-size: 1.1rem;
  color: #666;
  font-weight: 300;
  margin-top: 0.25rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}

.card {
  position: relative;
  width: 100%;
  padding: 1.75rem 1.5rem 1.75rem 1.5rem;
  border-radius: 12px;
  border: 1px solid #222;
  background: #181818;
  transition: border-color 0.3s ease;
}

.card:hover {
  border-color: #333;
}

.card-de {
  border-radius: 12px 12px 0 0;
  border-bottom: none;
}

.card-en {
  border-radius: 0 0 12px 12px;
}

.lang-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.card-de .lang-badge {
  background: #e53e3e22;
  color: #e53e3e;
}

.card-en .lang-badge {
  background: #3b82f622;
  color: #3b82f6;
}

.reason {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #ccc;
  font-style: italic;
  min-height: 2em;
}

.reason::before {
  content: '\201E';
  font-size: 1.5rem;
  color: #444;
  margin-right: 2px;
}

.reason::after {
  content: '\201C';
  font-size: 1.5rem;
  color: #444;
  margin-left: 2px;
}

.divider {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #181818;
  border-left: 1px solid #222;
  border-right: 1px solid #222;
  padding: 0;
  height: 1px;
  position: relative;
}

.divider-icon {
  position: absolute;
  background: #181818;
  color: #444;
  font-size: 0.8rem;
  padding: 0 8px;
}

#nein-btn {
  margin-top: 2rem;
  padding: 0.9rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: #e53e3e;
  color: #fff;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

#nein-btn:hover {
  background: #c53030;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px #e53e3e44;
}

#nein-btn:active {
  transform: translateY(0);
}

#nein-btn.loading {
  opacity: 0.6;
  cursor: wait;
}

footer {
  text-align: center;
  margin-top: 3rem;
  color: #444;
  font-size: 0.85rem;
}

footer code {
  background: #1e1e1e;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  color: #888;
  border: 1px solid #2a2a2a;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.fade-in {
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 3rem;
  }

  .container {
    padding: 1.5rem 1rem;
  }

  .reason {
    font-size: 1rem;
  }
}
