*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #E50914;
  --red-dark: #B20710;
  --bg: #141414;
  --bg2: #1f1f1f;
  --bg3: #2a2a2a;
  --text: #ffffff;
  --text-muted: #a3a3a3;
  --border: #333;
  --radius: 6px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

.hidden { display: none !important; }

/* ===================== WELCOME SCREEN ===================== */
.welcome-screen {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.welcome-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  padding: 24px;
}

.welcome-logo { height: 48px; }

.welcome-content h1 {
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
}

.profile-input-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 320px;
}

.profile-input-wrap input {
  width: 100%;
  background: #333;
  border: 1px solid #555;
  border-radius: var(--radius);
  color: white;
  font-size: 18px;
  padding: 14px 18px;
  text-align: center;
  outline: none;
  transition: border-color 0.2s;
}

.profile-input-wrap input:focus { border-color: var(--text-muted); }

.profile-input-wrap button {
  width: 100%;
  background: var(--red);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.profile-input-wrap button:hover { background: var(--red-dark); }

/* ===================== INTRO SCREEN ===================== */
.intro-screen {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.intro-logo-wrap {
  animation: tadum 2.4s ease-in-out forwards;
}

.intro-logo {
  height: 80px;
  opacity: 0;
  transform: scale(0.6);
  animation: logoReveal 2.4s ease-in-out forwards;
}

@keyframes logoReveal {
  0%   { opacity: 0; transform: scale(0.6); }
  30%  { opacity: 1; transform: scale(1.15); }
  60%  { opacity: 1; transform: scale(1); }
  85%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.05); }
}

/* ===================== HEADER ===================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 16px 48px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, transparent 100%);
  transition: background 0.3s;
  gap: 32px;
}

.main-header.scrolled { background: rgba(20,20,20,0.98); }

.header-logo { height: 28px; flex-shrink: 0; }

.header-nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.header-nav span { cursor: pointer; transition: color 0.2s; }
.header-nav span:hover { color: white; }

.header-profile {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-name-badge {
  font-size: 14px;
  color: var(--text-muted);
}

.profile-avatar {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

/* ===================== HERO BANNER ===================== */
.hero-banner {
  position: relative;
  height: 100vh;
  min-height: 500px;
  background: #000;
  display: flex;
  align-items: flex-end;
  padding: 0 48px 80px;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg), transparent);
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-text h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 18px;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 28px;
}

.hero-actions { display: flex; gap: 12px; }

.btn-hero-play {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: black;
  border: none;
  border-radius: var(--radius);
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-hero-play svg { width: 24px; height: 24px; }
.btn-hero-play:hover { background: rgba(255,255,255,0.85); }

.btn-hero-info {
  background: rgba(109,109,110,0.7);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-hero-info:hover { background: rgba(109,109,110,0.5); }

/* ===================== CONTENT SECTIONS ===================== */
.content-section {
  padding: 0 48px 48px;
}

.section-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #e5e5e5;
}

/* ===================== MODEL BAR ===================== */
.model-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.model-label { font-size: 14px; color: var(--text-muted); }

.model-bar select {
  background: var(--bg2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 36px 8px 12px;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23a3a3a3' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.model-bar select:focus { outline: none; border-color: var(--red); }

/* ===================== MODE CARDS ===================== */
.mode-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 800px;
}

.mode-card-big {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
  min-height: 180px;
}

.mode-card-big:hover { transform: scale(1.02); border-color: rgba(255,255,255,0.3); }
.mode-card-big.selected { border-color: var(--red); }

.mode-card-bg {
  position: absolute;
  inset: 0;
}

.mode-card-content {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mode-icon-big { font-size: 32px; }
.mode-card-content h3 { font-size: 20px; font-weight: 700; }
.mode-card-content p { font-size: 14px; color: #ccc; }

.mode-tag {
  display: inline-block;
  background: rgba(229,9,20,0.3);
  border: 1px solid var(--red);
  color: #ff6b6b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-top: 4px;
  width: fit-content;
}

/* ===================== SERIES ROW ===================== */
.series-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.serie-card {
  flex-shrink: 0;
  width: 200px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  position: relative;
}

.serie-card:hover { transform: scale(1.05); z-index: 2; }
.serie-card.selected { border-color: var(--red); }

.serie-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.serie-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 10px 8px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  font-size: 13px;
  font-weight: 600;
}

/* ===================== STYLES ROW ===================== */
.styles-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 900px;
}

.style-card {
  background: var(--bg2);
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}

.style-card:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
.style-card.selected { border-color: var(--red); }

.style-card-body { padding: 16px; }
.style-card-body h3 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.style-card-body p { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

.scene-card {
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  aspect-ratio: 16/9;
}

.scene-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.2s; }
.scene-card:hover { border-color: rgba(255,255,255,0.3); }
.scene-card:hover img { transform: scale(1.04); }
.scene-card.selected { border-color: var(--red); box-shadow: 0 0 0 1px var(--red); }

/* ===================== PHOTO UPLOAD ===================== */
.photo-section {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.upload-area {
  width: 280px;
  aspect-ratio: 1;
  border: 2px dashed var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.upload-area:hover { border-color: var(--red); }

.upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  padding: 24px;
  text-align: center;
  color: var(--text-muted);
}

.upload-placeholder p { font-size: 15px; font-weight: 500; color: white; }
.upload-placeholder span { font-size: 13px; }

.photo-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.generate-wrap {
  display: flex;
  align-items: center;
  padding-top: 8px;
}

/* ===================== GENERATE BUTTON ===================== */
.btn-generate {
  background: var(--red);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  justify-content: center;
}

.btn-generate:hover { background: var(--red-dark); transform: scale(1.02); }
.btn-generate:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===================== RESULT ===================== */
.result-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
}

.result-image-wrap img {
  max-width: 100%;
  max-height: 65vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  display: block;
}

.result-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-action {
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
}

.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: var(--red-dark); }

.btn-dark { background: rgba(109,109,110,0.7); color: white; }
.btn-dark:hover { background: rgba(109,109,110,0.5); }
.btn-dark:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-outline { background: transparent; color: white; border: 1px solid var(--border); }
.btn-outline:hover { border-color: white; }

.video-result-wrap { display: flex; flex-direction: column; gap: 16px; }

.video-loader {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 15px;
  padding: 16px 0;
}

#resultVideo {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .main-header { padding: 12px 20px; }
  .header-nav { display: none; }
  .hero-banner { padding: 0 20px 60px; }
  .content-section { padding: 0 20px 40px; }
  .mode-row { grid-template-columns: 1fr; }
  .styles-row { grid-template-columns: 1fr 1fr; }
  .photo-section { flex-direction: column; }
  .upload-area { width: 100%; max-width: 320px; }
}

/* ===================== NETFLIX PLAYER FULLSCREEN ===================== */
.netflix-player {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Buffering --- */



































/* --- Intro ta-dum --- */
.player-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  height: 100%;
}

.tadum-logo {
  height: 70px;
  opacity: 0;
  transform: scale(0.5);
  animation: tadumReveal 2.5s ease-in-out forwards;
}

@keyframes tadumReveal {
  0%   { opacity: 0; transform: scale(0.5); }
  25%  { opacity: 1; transform: scale(1.1); }
  50%  { opacity: 1; transform: scale(1); }
  80%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.05); }
}

.tadum-name {
  font-size: clamp(20px, 4vw, 36px);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ccc;
  opacity: 0;
  animation: fadeInName 2.5s ease-in-out forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInName {
  0%   { opacity: 0; transform: translateY(10px); }
  30%  { opacity: 1; transform: translateY(0); }
  80%  { opacity: 1; }
  100% { opacity: 0; }
}

/* --- Video --- */
.netflix-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* --- Controls --- */
.player-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}

.player-close:hover { background: rgba(255,255,255,0.2); }

.player-download {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(0,0,0,0.7);
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
  transition: background 0.2s;
}

.player-download:hover { background: var(--red); }

/* ===================== AVATAR UPLOAD ===================== */
.avatar-upload {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 2px dashed #555;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.avatar-upload:hover { border-color: var(--red); }
.avatar-upload.has-photo { border-style: solid; border-color: var(--red); }

.avatar-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 100%;
  color: #888;
  font-size: 11px;
  text-align: center;
  padding: 8px;
}

.avatar-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.welcome-hint {
  font-size: 13px;
  color: var(--red);
  margin-top: -8px;
}

/* ===================== INTRO VIDEO ===================== */
.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================== HERO CAROUSEL ===================== */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-carousel-slide.active { opacity: 1; }

.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.2) 100%),
              linear-gradient(to top, rgba(20,20,20,1) 0%, transparent 40%);
  z-index: 1;
}

.hero-overlay { display: none; }

.hero-text { z-index: 2; }
.hero-actions { z-index: 2; position: relative; }

/* ===================== HEADER MI LISTA ===================== */
.header-profile-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-my-list-header {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-my-list-header:hover { color: white; border-color: white; }

.my-list-count {
  background: var(--red);
  color: white;
  border-radius: 10px;
  padding: 1px 7px;
  font-size: 11px;
  font-weight: 700;
}

/* ===================== SERIES CATALOG ===================== */
.series-catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.serie-catalog-card {
  background: var(--bg2);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s;
  position: relative;
}

.serie-catalog-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.2); }
.serie-catalog-card.selected { border-color: var(--red); }

.serie-catalog-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.serie-catalog-info {
  padding: 14px 16px 16px;
}

.serie-catalog-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.serie-catalog-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.serie-catalog-tag {
  display: inline-block;
  margin-top: 10px;
  background: rgba(229,9,20,0.15);
  border: 1px solid rgba(229,9,20,0.4);
  color: #ff6b6b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* ===================== MI LISTA ===================== */
.my-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.my-list-item {
  background: var(--bg2);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s;
}

.my-list-item:hover { transform: translateY(-3px); }

.my-list-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.my-list-info {
  padding: 10px 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.my-list-meta { flex: 1; min-width: 0; }
.my-list-serie { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.my-list-date { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.my-list-actions { display: flex; gap: 6px; flex-shrink: 0; }

.btn-play-list {
  background: var(--red);
  color: white;
  border: none;
  border-radius: 4px;
  width: 30px;
  height: 30px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.btn-play-list:hover { background: var(--red-dark); }

.btn-delete-list {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 4px;
  width: 30px;
  height: 30px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.btn-delete-list:hover { color: white; border-color: white; }

.my-list-empty {
  color: var(--text-muted);
  font-size: 15px;
  padding: 32px 0;
}

.my-list-count {
  background: var(--red);
  color: white;
  border-radius: 10px;
  padding: 1px 7px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 4px;
}

.header-nav span { cursor: pointer; transition: color 0.2s; }
.header-nav span:hover, .header-nav span.active { color: white; }

.player-buffering {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  height: 100%;
}

.netflix-spinner {
  position: relative;
  width: 72px;
  height: 72px;
}

.netflix-spinner-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 5px solid rgba(255,255,255,0.12);
  border-top-color: var(--red);
  border-right-color: var(--red);
  animation: netflixSpin 1s linear infinite;
}

@keyframes netflixSpin { to { transform: rotate(360deg); } }

.buffering-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.buffering-percent {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
}

/* ===================== SUBMIT OVERLAY ===================== */
.submit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  color: #fff;
}

.submit-overlay-content p {
  font-size: 18px;
  line-height: 1.6;
}

.submit-overlay-content small {
  color: var(--text-muted);
}

/* ===================== THANKS SCREEN ===================== */
.thanks-screen {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  text-align: center;
  padding: 24px;
}

.thanks-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.thanks-logo {
  height: 32px;
  margin-bottom: 32px;
  opacity: .7;
}

.thanks-screen h1 {
  font-size: clamp(36px, 8vw, 56px);
  color: #D82026;
  font-weight: 700;
}

.thanks-screen p {
  font-size: 18px;
  color: #ccc;
  line-height: 1.6;
}
