.hero {
  padding: 64px 24px 72px;
  position: relative;
  overflow: hidden;
}

.hero__stack {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  min-height: 220px;
}

.hero__card {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 32px;
  border: 1px solid var(--border);
}

.hero__card--back {
  position: absolute;
  top: 10px;
  left: 20px;
  right: -20px;
  background: #1A231C;
  z-index: 1;
}

.hero__card--back p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--muted);
  line-height: 1.6;
  max-width: 90%;
}

.hero__card--front {
  position: relative;
  z-index: 2;
  background: var(--surface);
  margin-right: 20px;
}

.hero__card--front h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  color: var(--text);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero__stack {
    min-height: auto;
  }

  .hero__card--back {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    display: none;
  }

  .hero__card--front {
    margin-right: 0;
  }

  .hero__card--front::after {
    content: attr(data-sub);
    display: block;
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--muted);
    font-weight: 400;
    line-height: 1.6;
  }
}

.offers-section {
  padding: 64px 24px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  position: relative;
}

.offers-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--glow-line);
}

.offers-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.offers-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  color: var(--text);
  margin-bottom: 8px;
}

.offers-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin-top: 12px;
  border-radius: var(--radius-pill);
  background: var(--glow-line);
  box-shadow: 0 0 12px rgba(163, 177, 138, 0.4);
}

.offers-section__lead {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 40px;
  max-width: 620px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.offer-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

.offer-card--bingo {
  background: linear-gradient(160deg, #1B4332 0%, #2D6A4F 50%, #081C15 100%);
}

.offer-card--lotto {
  background: linear-gradient(160deg, #004225 0%, #008751 50%, #003319 100%);
}

.offer-card--euro {
  background: linear-gradient(160deg, #14213D 0%, #1D3557 50%, #0B1320 100%);
}

.offer-card--zahlen {
  background: linear-gradient(160deg, #3D2C00 0%, #6B4E00 50%, #1A1200 100%);
}

.offer-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 12px;
}

.offer-card__logo-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
  flex-shrink: 0;
}

.offer-card__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
}

.offer-card__name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}

.offer-card__body {
  padding: 0 24px 20px;
  flex: 1;
}

.offer-card__bonus-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.offer-card__bonus {
  font-size: clamp(0.85rem, 2.5vw, 1.05rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-card__terms {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

.offer-card__desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.offer-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 24px 24px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  transition: transform 0.2s, background 0.2s;
  text-align: center;
}

.offer-card__cta:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.info-section {
  padding: 56px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.info-section:nth-child(odd) {
  background: var(--bg);
}

.info-section:nth-child(even) {
  background: var(--surface);
}

.info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.info-1 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}

.info-1__badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}

.info-1 h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--text);
  margin-bottom: 12px;
}

.info-1 h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 10px;
  border-radius: var(--radius-pill);
  background: var(--glow-line);
}

.info-1 p {
  color: var(--muted);
  font-size: 15px;
}

.info-2 {
  text-align: center;
  max-width: 820px;
}

.info-2 h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--text);
  margin-bottom: 16px;
}

.info-2 h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: var(--radius-pill);
  background: var(--glow-line);
}

.info-2 > p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
}

.info-2__wheel {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.info-2__chip {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px dashed var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--primary);
}

.info-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-3 h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--text);
  margin-bottom: 12px;
}

.info-3 h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 10px;
  border-radius: var(--radius-pill);
  background: var(--glow-line);
}

.info-3 p {
  color: var(--muted);
  font-size: 15px;
}

.info-3__shield {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  text-align: center;
}

.info-3__shield strong {
  display: block;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-3__shield span {
  font-size: 13px;
  color: var(--muted);
}

.info-4 {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.info-4__cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.info-4__card {
  aspect-ratio: 2/3;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
  box-shadow: var(--shadow-card);
}

.info-4__card:nth-child(odd) {
  transform: translateY(-8px);
}

.info-4__text {
  flex: 1;
}

.info-4__text h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--text);
  margin-bottom: 12px;
}

.info-4__text p {
  color: var(--muted);
  font-size: 15px;
}

.info-5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-5__tile {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform 0.2s;
}

.info-5__tile:hover {
  transform: translateY(-4px);
}

.info-5__tile h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-5__tile p {
  font-size: 14px;
  color: var(--muted);
}

.info-5__intro {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.info-5__intro h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--text);
  margin-bottom: 12px;
}

.info-5__intro p {
  color: var(--muted);
  font-size: 15px;
  max-width: 680px;
}

.info-6 {
  position: relative;
  padding-left: 48px;
  border-left: 4px solid var(--secondary);
}

.info-6 h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--text);
  margin-bottom: 12px;
}

.info-6 p {
  color: var(--muted);
  font-size: 15px;
  max-width: 680px;
}

.info-6__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.info-6__tag {
  padding: 6px 16px;
  background: var(--accent);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  border: 1px solid var(--border);
}

.info-7 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-7__box {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}

.info-7__box h2 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 10px;
}

.info-7__box p {
  font-size: 14px;
  color: var(--muted);
}

.info-8 {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.info-8__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(201, 74, 74, 0.15);
  border: 1px solid rgba(201, 74, 74, 0.35);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: #E8A0A0;
  margin-bottom: 16px;
}

.info-8__live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E85555;
  animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.info-8 h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--text);
  margin-bottom: 12px;
}

.info-8 p {
  color: var(--muted);
  font-size: 15px;
}

.info-9 {
  display: flex;
  gap: 48px;
  align-items: center;
}

.info-9__steps {
  flex: 1;
  counter-reset: step;
}

.info-9__step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.info-9__step::before {
  counter-increment: step;
  content: counter(step);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.info-9__step p {
  font-size: 14px;
  color: var(--muted);
  padding-top: 6px;
}

.info-9__head h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--text);
  margin-bottom: 12px;
}

.info-9__head > p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.info-10 {
  margin-right: -5vw;
  margin-left: 5vw;
  background: linear-gradient(135deg, var(--accent) 0%, var(--surface) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}

.info-10__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  box-shadow: var(--shadow-card);
}

.info-10 h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--text);
  margin-bottom: 12px;
}

.info-10 p {
  color: var(--muted);
  font-size: 15px;
}

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

  .info-3,
  .info-4,
  .info-7,
  .info-9 {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .info-4 {
    flex-direction: column-reverse;
  }

  .info-4__cards {
    grid-template-columns: repeat(5, 1fr);
  }

  .info-5 {
    grid-template-columns: 1fr;
  }

  .info-10 {
    margin: 0;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .info-10__icon {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .info-4__cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .offer-card__logo-wrap {
    width: 64px;
    height: 64px;
  }

  .offer-card__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
}
