/* Danke-Seite nach Webinar-Anmeldung – eigenständig, keine Abhängigkeiten zum Hauptprojekt */

:root {
  --dw-blue: rgb(48, 111, 182);
  --dw-green: #25b562;
  --dw-ink: #1a1a1a;
  --dw-muted: #5c6b80;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dw-ink);
  background: #f5f7fa;
}

/* Header */

.dw-header {
  padding: 24px 20px;
  text-align: center;
  background: #ffffff;
}

.dw-logo {
  height: 40px;
  width: auto;
}

/* Bestätigung */

.dw-confirm {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 20px 24px;
  text-align: center;
}

.dw-checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dw-green);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.dw-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 16px;
}

.dw-title strong {
  color: var(--dw-blue);
}

.dw-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dw-muted);
  margin: 0 0 8px;
}

.dw-text strong {
  color: var(--dw-ink);
}

.dw-text-small {
  font-size: 0.85rem;
}

/* Video */

.dw-video-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 20px 8px;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.dw-video-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.dw-video-kicker {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dw-blue);
  margin: 0 0 16px;
}

.dw-video-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(18, 32, 58, 0.14);
}

.dw-video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: linear-gradient(160deg, #1a2230, #0d1420);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.dw-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--dw-blue);
  font-size: 1.6rem;
  padding-left: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}

.dw-video-placeholder:hover .dw-play-btn {
  transform: scale(1.08);
}

/* CTA */

.dw-cta-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 20px 56px;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.dw-cta-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.dw-cta-btn {
  display: inline-block;
  width: 100%;
  max-width: 420px;
  padding: 17px 24px;
  border-radius: 999px;
  background: var(--dw-green);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.dw-cta-btn:hover {
  opacity: 0.9;
}

/* Footer */

.dw-footer {
  text-align: center;
  padding: 20px;
  background: #ffffff;
  border-top: 1px solid #e5e9f0;
  font-size: 0.78rem;
  color: #9aa5b1;
}

/* Mobile */

@media (max-width: 480px) {
  .dw-title {
    font-size: 1.35rem;
  }

  .dw-play-btn {
    width: 64px;
    height: 64px;
    font-size: 1.3rem;
  }

  .dw-cta-btn {
    max-width: 100%;
  }
}
