/* Cego – Kartentisch: Filzgrün und Gold */
:root {
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --paper: #f7f4ec; --ink: #1d2420; --muted: #5b6861; --card: #ffffff; --line: #e2ddd0;
  --accent: #b8912c;
  --bar-bg: #123a28; --bar-ink: #f3efe4;
  --hero-bg: radial-gradient(ellipse at 30% 0%, #25694a 0%, #1b5239 45%, #123a28 100%);
  --hero-ink: #ffffff; --hero-sub: #e3ece6;
  --footer-bg: #123a28; --footer-ink: #dfe8e2;
}
@media (prefers-color-scheme: dark) {
  :root { --paper: #0f1c16; --ink: #e9ece8; --muted: #a3b0a8; --card: #16271f; --line: #26392f; --accent: #d8b457; }
}

/* Motiv: drei Karten im Fächer */
.fan { position: relative; width: 300px; height: 250px; margin-bottom: 36px; }
.fan img { position: absolute; bottom: 0; left: 50%; width: 118px; height: auto; border-radius: 8px;
           box-shadow: 0 10px 24px rgba(0,0,0,.35); transform-origin: 50% 110%; image-rendering: auto; }
.fan img:nth-child(1) { transform: translateX(-50%) rotate(-16deg); }
.fan img:nth-child(2) { transform: translateX(-50%) rotate(0deg) translateY(-10px); }
.fan img:nth-child(3) { transform: translateX(-50%) rotate(16deg); }
@media (max-width: 759px) { .fan { width: 240px; height: 200px; transform: scale(.85); margin: -10px auto 16px; } }
