section {
  padding: 34px 0;
}

section[id] {
  scroll-margin-top: 90px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 2vw, 2.8rem);
  letter-spacing: -.03em;
  margin-bottom: 8px;
  color: #f7efdd;
  text-shadow: 0 2px 8px rgba(0,0,0,.14);
}

.section-head p {
  color: #f7efdd;
  max-width: 64ch;
}

.mini-note {
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.55;
}

.cards,
.podium-list {
  display: grid;
  gap: 18px;
}

.card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(233,185,73,0.24);
}

.card h2,
.card h3 {
  font-family: var(--font-ui);
}

.card h2 {
  margin-bottom: 16px;
  color: #f7efdd;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.65;
}

.card p {
  margin-bottom: 14px;
}

.card ul {
  padding-left: 0;
  margin: 0;
}

.missing-tips-card {
  border: 3px solid #e10600;
  box-shadow:
    0 0 0 4px rgba(192, 24, 24, 0.22),
    0 18px 38px rgba(0,0,0,.20);
  background: linear-gradient(180deg, rgba(42,21,18,0.96), rgba(42,21,18,0.98));
}

.missing-tips-card h3 {
  color: #ff9d94;
}

.missing-tips-card p {
  color: #ff9d94;
  font-weight: 700;
}

#missing-tips-text {
  white-space: pre-line;
}

#missing-tips-info {
  display: block;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #ff9d94;
  margin-bottom: 0.4rem;
}

#missing-tips-names {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5;
  color: #f7efdd;
}

.kicktipp-cards {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 18px;
  align-items: stretch;
}

.testimonials,
.faq-grid,
.winner-grid,
.contact-strip,
.sponsor-grid {
  display: grid;
  gap: 18px;
}

.testimonials { grid-template-columns: repeat(3, 1fr); }
.faq-grid { grid-template-columns: repeat(2, 1fr); }
.winner-grid { grid-template-columns: 1fr; }

.sponsor-grid {
  grid-template-columns: 1.2fr .8fr;
  align-items: stretch;
}

.contact-strip {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.team-section-card {
  margin-top: 18px;
}

.pot-box {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(233,185,73,0.25), rgba(233,185,73,0.18)),
    rgba(26,43,33,0.78);
  border: 2px solid rgba(233,185,73,0.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    0 10px 22px rgba(0,0,0,.10);
  text-align: center;
}

.pot-label {
  display: block;
  margin-bottom: 6px;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #e9b949;
  font-family: var(--font-ui);
}

.pot-value {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 400;
  color: #e9b949;
  text-shadow: 0 1px 0 rgba(255,255,255,.45);
  font-family: var(--font-display);
}

.pot-meta {
  margin-top: 8px;
  font-size: .9rem;
  color: #e9b949;
  font-family: var(--font-ui);
}

.top3-card {
  background: linear-gradient(rgba(26,43,33,0.9), rgba(26,43,33,0.96));
  border: 2px solid rgba(233,185,73,0.2);
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.podium-list {
  gap: 12px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.podium-rank {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-radius: 18px;
  padding: 16px 20px 16px 16px;
  color: #f7efdd;
  border: 1px solid rgba(255,255,255,.12);
  border-left: 5px solid rgba(255,255,255,.20);
  background: linear-gradient(135deg, rgba(20,32,26,0.88), rgba(20,32,26,0.96));
  box-shadow: 0 4px 20px rgba(0,0,0,.20);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.podium-rank:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
}

.podium-rank.gold {
  border-left-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,.16), inset 0 0 40px rgba(201,162,39,.06);
}

.podium-rank.silver {
  border-left-color: var(--silver);
}

.podium-rank.bronze {
  border-left-color: var(--bronze);
}

.trophy-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 1;
}

.trophy {
  font-size: 2.6rem;
  line-height: 1;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.30));
}

.trophy.gold { color: var(--gold); }
.trophy.silver { color: var(--silver); }
.trophy.bronze { color: var(--bronze); }

.place-chip,
.eternal-badge {
  background: rgba(26,43,33,0.92);
  color: #f7efdd;
  font-weight: 400;
  font-family: var(--font-display);
  box-shadow: 0 4px 10px rgba(0,0,0,.14);
}

.place-chip {
  min-width: 80px;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  line-height: 1.05;
  white-space: nowrap;
  font-size: .82rem;
}

.podium-content {
  z-index: 1;
  display: grid;
  gap: 10px;
  min-width: 0;
}

.podium-content h4 {
  margin: 0;
  padding-right: 4px;
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 1.22rem;
  letter-spacing: .01em;
}

.rank-stats,
.eternal-stats {
  display: grid;
  font-family: var(--font-ui);
}

.rank-stats {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  overflow: hidden;
}

.rank-stats span {
  display: grid;
  flex: 1;
  /* Ohne min-width: 0 schrumpfen Flex-Kinder nie unter ihre Wortbreite -
     lange Bezeichnungen wie "Spieltagspunkte" sprengen sonst die Karte. */
  min-width: 0;
  gap: 3px;
  justify-items: center;
  text-align: center;
  align-items: center;
  padding: 9px 6px;
  border-radius: 0;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255,255,255,.08);
}

.rank-stats span:last-child {
  border-right: none;
}

.rank-stats strong,
.eternal-stats strong {
  color: rgba(255,255,255,.58);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.rank-stats em,
.eternal-stats em {
  font-style: normal;
  font-weight: 900;
  color: #ffffff;
}

.rank-stats em { font-size: 1.08rem; }

footer {
  padding: 30px 0 60px;
  color: #f7efdd;
}

.footer-box {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(26,43,33,0.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  font-family: var(--font-ui);
}

.footer-box > :first-child {
  justify-self: start;
}

.footer-box > :last-child {
  justify-self: end;
}

.footer-legal-link {
  justify-self: center;
  padding: 8px 14px;
  border-radius: 999px;
  color: #f7efdd;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.footer-legal-link:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.24);
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: .7s ease;
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.floating {
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}