/* style.css — Layout und Design für die Anzeige */
:root {
  --bg: #f6f8fb;
  --card: #ffffff;
  --text: #1e293b;
  --muted: #64748b;
  --accent: #ff8c12;
/*  zander: #ff8c12				#64748b;				 */
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 40px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
}

h1 {
  text-align: center;
  color: var(--accent);
  margin-bottom: 24px;
  font-size: 28px;
}

.rules-list {
  counter-reset: item;
  list-style: none;
  padding: 0;
}

.rules-list li {
  position: relative;
  margin-bottom: 14px;
  padding: 14px 16px 14px 48px;
  background: #f9fafb;
  border-left: 6px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  line-height: 1.5;
  transition: transform 0.1s ease-in-out;
}

.rules-list li:hover {
  transform: translateY(-2px);
  background: #f1f5ff;
}

.rules-list li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px #e0e7ff;
}
