body {
  font-family: Arial, sans-serif;
  background: #f7f3ef;
  color: #353B76;
  margin: 0;
  padding: 24px;
}

.card {
  max-width: 520px;
  margin: 40px auto;
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.eyebrow {
  color: #A0715F;
  font-weight: bold;
  margin-bottom: 6px;
}

h1 {
  margin-top: 0;
}

.button {
  display: block;
  text-align: center;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  margin-top: 12px;
  border: none;
  border-radius: 14px;
  background: #353B76;
  color: white;
  font-size: 16px;
}

.secondary {
  background: #A0715F;
}

.small {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.challenge-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.challenge-button {
  min-height: 64px;
  max-height: 72px;
  padding: 10px 12px;
  margin-top: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  line-height: 1.15;
  font-size: 15px;
  border-radius: 16px;

  overflow: hidden;
}

.challenge-button span {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;

  overflow: hidden;
  text-overflow: ellipsis;
  word-break: normal;
  overflow-wrap: anywhere;
}

@media (max-width: 360px) {
  .challenge-list {
    grid-template-columns: 1fr;
  }

  .challenge-button {
    max-height: none;
    min-height: 56px;
  }

  .challenge-button span {
    -webkit-line-clamp: 4;
  }
}

.upload-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 160px;
  padding: 24px;
  margin: 22px 0 14px;

  border: 2px dashed #A0715F;
  border-radius: 20px;
  background: #faf7f4;
  text-align: center;
  cursor: pointer;
}

.upload-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #353B76;
  color: white;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 14px;
}

.upload-title {
  font-size: 18px;
  font-weight: bold;
  color: #353B76;
}

.upload-subtitle {
  margin-top: 6px;
  font-size: 14px;
  color: #666;
}

.hidden-file-input {
  display: none;
}

.upload-submit {
  margin-top: 10px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 0 6px;
}

.preview-item {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-badge {
  font-size: 13px;
  font-weight: bold;
  color: #353B76;
}

.preview-more {
  font-weight: bold;
  color: #353B76;
  background: #f1e7e1;
}

.preview-item {
  position: relative;
}

.remove-preview {
  position: absolute;
  top: 5px;
  right: 5px;

  width: 26px;
  height: 26px;
  border: none;
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.65);
  color: white;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.upload-box {
  width: 100%;
  border: 2px dashed #A0715F;
}

.upload-choice {
  display: grid;
  gap: 10px;
  margin: 12px 0 16px;
}

.choice-button {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 14px;
  background: white;
  color: #353B76;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}

.choice-button:hover {
  background: #f7f3ef;
}

.camera-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;

  background: rgba(0, 0, 0, 0.92) !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 12px !important;
  box-sizing: border-box !important;
}

.camera-modal.hidden {
  display: none !important;
}

.camera-card {
  width: 100% !important;
  max-width: 640px !important;
  background: #111 !important;
  border-radius: 18px !important;
  padding: 12px !important;
  box-sizing: border-box !important;
}

#cameraVideo {
  display: block !important;
  width: 100% !important;
  min-height: 360px !important;
  max-height: 70vh !important;
  background: black !important;
  border-radius: 16px !important;
  object-fit: cover !important;
}

.camera-actions {
  display: flex !important;
  gap: 10px !important;
  margin-top: 12px !important;
}

.camera-actions button {
  flex: 1 !important;
  padding: 14px !important;
  border: none !important;
  border-radius: 14px !important;
  font-weight: bold !important;
}

.upload-choice-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.upload-choice-modal.hidden {
  display: none !important;
}

.upload-choice-card {
  width: 100%;
  max-width: 420px;
  background: white;
  border-radius: 22px;
  padding: 24px;
  box-sizing: border-box;
}

.choice-cancel {
  width: 100%;
  margin-top: 12px;
  padding: 14px;
  border: none;
  background: transparent;
  color: #555;
  font-size: 15px;
}

.hidden {
  display: none !important;
}

.upload-choice-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;

  background: rgba(0, 0, 0, 0.72);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 18px;
  box-sizing: border-box;
}

.upload-choice-card {
  width: 100%;
  max-width: 420px;

  background: white;
  border-radius: 22px;
  padding: 24px;
  box-sizing: border-box;
}

.choice-cancel {
  width: 100%;
  margin-top: 12px;
  padding: 14px;

  border: none;
  background: transparent;
  color: #555;

  font-size: 15px;
}

.camera-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  background: rgba(0, 0, 0, 0.92);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px;
  box-sizing: border-box;
}

.camera-card {
  width: 100%;
  max-width: 640px;

  background: #111;
  border-radius: 18px;
  padding: 12px;
  box-sizing: border-box;
}

#cameraVideo {
  display: block;
  width: 100%;
  min-height: 360px;
  max-height: 70vh;

  background: black;
  border-radius: 16px;
  object-fit: cover;
}

.camera-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.camera-actions button {
  flex: 1;

  padding: 14px;
  border: none;
  border-radius: 14px;

  font-weight: bold;
}

.success-card {
  text-align: center;
}

.success-icon {
  width: 72px;
  height: 72px;

  margin: 0 auto 18px;

  border-radius: 50%;
  background: #353B76;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 42px;
  font-weight: bold;
}

.success-summary {
  margin: 22px 0;
  padding: 18px;

  background: #f7f3ef;
  border-radius: 18px;
}

.success-summary strong {
  display: block;
  font-size: 32px;
  color: #353B76;
}

.success-summary span {
  display: block;
  margin-top: 4px;
  color: #555;
}

.success-actions {
  margin-top: 22px;
}

.gallery-page {
  max-width: 980px;
  margin: 0 auto;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.gallery-header h1 {
  margin-bottom: 0;
}

.small-upload-button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #353B76;
  color: white;
  text-decoration: none;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.media-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.media-card img,
.media-card video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #eee;
}

.media-info {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 10px;
  font-size: 13px;
  color: #555;
}

@media (min-width: 700px) {
  .media-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.like-button {
  border: none;
  background: #f7f3ef;
  color: #555;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  cursor: pointer;
}

.like-button.liked {
  background: #353B76;
  color: white;
}

.like-button:disabled {
  opacity: 0.6;
  cursor: wait;
}

.gallery-filters {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}

.gallery-filters select,
.filter-button {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  box-sizing: border-box;
}

.gallery-filters select {
  background: white;
  color: #353B76;
}

.filter-button {
  border: none;
  background: #353B76;
  color: white;
  font-weight: bold;
}

@media (min-width: 700px) {
  .gallery-filters {
    grid-template-columns: 1fr 1fr 1fr auto;
    align-items: center;
  }

  .filter-button {
    width: auto;
    min-width: 120px;
  }
}

.form-label {
  display: block;
  margin-top: 14px;
  font-weight: bold;
  color: #353B76;
}

.form-label input {
  width: 100%;
  margin-top: 6px;
  padding: 13px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
  box-sizing: border-box;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.4;
  color: #555;
}

.checkbox-row input {
  margin-top: 3px;
}

.privacy-note {
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  background: #f7f3ef;
  font-size: 13px;
  line-height: 1.45;
  color: #555;
}

.form-error {
  margin: 14px 0;
  padding: 12px;
  border-radius: 12px;
  background: #ffe8e8;
  color: #8a1f1f;
  font-size: 14px;
}

.form-success {
  margin: 14px 0;
  padding: 12px;
  border-radius: 12px;
  background: #e8f5e9;
  color: #1f6b2a;
  font-size: 14px;
}

.media-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.media-challenge {
  font-size: 13px;
  font-weight: bold;
  color: #353B76;
}

.media-author {
  font-size: 12px;
  color: #777;
}

.media-open-button {
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  display: block;
  position: relative;
  cursor: pointer;
}

.video-overlay-label {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.65);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.lightbox.hidden {
  display: none !important;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.76);
}

.lightbox-panel {
  position: relative;
  z-index: 1;

  width: calc(100% - 28px);
  max-width: 720px;
  max-height: calc(100vh - 40px);

  margin: 20px auto;
  background: white;
  border-radius: 22px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
}

.lightbox-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;

  width: 36px;
  height: 36px;

  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  color: white;

  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-media-wrap {
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;

  max-height: 72vh;
}

.lightbox-media {
  display: block;
  max-width: 100%;
  max-height: 72vh;
  width: auto;
  height: auto;
  object-fit: contain;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.lightbox-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;

  padding: 12px 14px;
}

.no-scroll {
  overflow: hidden;
}

.media-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px !important;
}

.media-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.media-open-button {
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  display: block;
  position: relative;
  cursor: pointer;
}

.gallery-thumb {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  object-fit: cover !important;
  display: block !important;
  background: #eee;
}

.media-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  padding: 10px;
  font-size: 13px;
  color: #555;
}

@media (min-width: 700px) {
  .media-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-stack label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  color: #353B76;
}

.form-stack input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(53, 59, 118, 0.2);
  border-radius: 14px;
  padding: 13px 14px;
  font-size: 16px;
  background: #ffffff;
}

.error-box {
  margin: 16px 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: #ffecec;
  color: #8a1f1f;
  font-weight: 600;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0;
}

.admin-stat-card {
  background: #f7f3ef;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}

.admin-stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #353B76;
}

.admin-stat-label {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #555;
}

.button-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.secondary-button {
  background: #A0715F;
}

.admin-media-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.admin-media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}

.admin-media-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.admin-media-card.is-muted {
  opacity: 0.65;
}

.admin-media-preview-link {
  position: relative;
  display: block;
  text-decoration: none;
  background: #eee;
}

.admin-media-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.admin-favorite-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #A0715F;
  color: #ffffff;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 800;
}

.admin-media-content {
  padding: 14px;
}

.admin-media-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
  color: #555;
}

.admin-media-meta strong {
  color: #353B76;
}

.admin-status-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #eee;
  color: #333;
}

.status-visible {
  background: #e8f7ed;
  color: #176b32;
}

.status-hidden {
  background: #eeeeee;
  color: #555555;
}

.status-rejected {
  background: #ffecec;
  color: #8a1f1f;
}

.status-duplicate {
  background: #fff4db;
  color: #855b00;
}

.status-needs_review {
  background: #eaf0ff;
  color: #2b3f8f;
}

.admin-media-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.admin-action-button {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 700;
  background: #353B76;
  color: #ffffff;
  cursor: pointer;
}

.admin-action-button.danger {
  background: #8a1f1f;
}

@media (min-width: 720px) {
  .admin-media-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.admin-bingo-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.admin-bingo-search {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-bingo-search input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(53, 59, 118, 0.2);
  border-radius: 14px;
  padding: 13px 14px;
  font-size: 16px;
  background: #ffffff;
}

.admin-guest-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.admin-guest-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border-radius: 14px;
  background: #f7f3ef;
  color: #353B76;
  text-decoration: none;
}

.admin-guest-row.active {
  background: #353B76;
  color: #ffffff;
}

.admin-guest-row span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.admin-guest-row small {
  font-size: 12px;
  opacity: 0.75;
}

.muted-text {
  color: #666;
}

.admin-bingo-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}

.admin-bingo-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.admin-bingo-card.fulfilled {
  border: 2px solid #2f9e44;
}

.admin-bingo-card.open {
  border: 2px solid rgba(53, 59, 118, 0.12);
}

.admin-bingo-card-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.admin-bingo-card-header div:first-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-bingo-card-header strong {
  color: #353B76;
}

.admin-bingo-card-header span {
  font-size: 13px;
  color: #666;
}

.admin-bingo-status {
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #353B76;
  color: #ffffff;
  font-weight: 800;
}

.admin-bingo-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.admin-bingo-thumb-link {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #eee;
}

.admin-bingo-thumb-link img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.admin-bingo-status-label {
  position: absolute;
  left: 6px;
  bottom: 6px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  border-radius: 999px;
  padding: 4px 7px;
  font-size: 10px;
  font-weight: 700;
}

@media (min-width: 720px) {
  .admin-bingo-search {
    flex-direction: row;
  }

  .admin-bingo-search input {
    flex: 1;
  }

  .admin-bingo-search .button {
    width: auto;
  }

  .admin-bingo-summary {
    grid-template-columns: repeat(2, 1fr);
  }
}

.access-card {
  text-align: left;
}

.access-card h1 {
  margin-bottom: 12px;
}

.language-switcher {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 100;
  display: flex;
  gap: 4px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(8px);
}

.language-button {
  min-width: 28px;
  height: 24px;
  padding: 0 7px;
  border: none;
  border-radius: 999px;
  background: #A0715F;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.language-button.is-active {
  background: #353B76;
}

.language-button:active {
  transform: scale(0.96);
}

@media (max-width: 480px) {
  .language-switcher {
    top: 8px;
    right: 8px;
    gap: 3px;
    padding: 3px;
  }

  .language-button {
    min-width: 26px;
    height: 22px;
    padding: 0 6px;
    font-size: 10px;
  }
}

.legal-links {
  margin-top: 22px;
  text-align: center;
  font-size: 10px;
  line-height: 1.4;
  opacity: 0.45;
}

.legal-links,
.legal-links a {
  color: #353B76;
}

.legal-links a {
  text-decoration: none;
}

.legal-links a:hover {
  text-decoration: underline;
  opacity: 0.85;
}

.admin-bulk-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  gap: 8px;
  margin: 14px 0;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.admin-bulk-bar select {
  flex: 1;
  border: 1px solid rgba(53, 59, 118, 0.2);
  border-radius: 12px;
  padding: 10px;
  font-size: 14px;
}

.admin-media-card {
  position: relative;
}

.admin-select-checkbox {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 14px rgba(0,0,0,0.16);
}

.admin-select-checkbox input {
  width: 18px;
  height: 18px;
}

.admin-media-actions {
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 720px) {
  .admin-media-actions {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.bingo-result-card {
  text-align: center;
}

.bingo-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 18px 0;
}

.bingo-score strong {
  font-size: 38px;
  color: #353B76;
}

.bingo-score span {
  font-size: 14px;
  color: #666;
}

.bingo-result-message {
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  margin: 14px 0;
}

.bingo-result-message.success {
  background: #e8f7ed;
  color: #176b32;
}

.bingo-result-message.warning {
  background: #fff4db;
  color: #855b00;
}

.bingo-two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 16px 0;
}

.bingo-check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bingo-check-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f7f3ef;
}

.bingo-check-row > span {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 900;
  color: white;
}

.bingo-check-row.fulfilled > span {
  background: #2f9e44;
}

.bingo-check-row.missing > span {
  background: #8a1f1f;
}

.bingo-check-row div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bingo-check-row strong {
  color: #353B76;
}

.bingo-check-row small {
  color: #666;
}

@media (min-width: 800px) {
  .bingo-two-column {
    grid-template-columns: 1fr 1fr;
  }
}

.download-card {
  margin: 14px 0 18px;
}

.download-actions {
  display: grid;
  gap: 10px;
}

.live-page {
  min-height: 100vh;
  padding: 32px;
  background: #f7f3ef;
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-stage {
  width: min(1400px, 100%);
  text-align: center;
}

.live-stage h1 {
  font-size: clamp(34px, 5vw, 72px);
  color: #353B76;
  margin-bottom: 24px;
}

.live-big-number {
  font-size: clamp(90px, 16vw, 220px);
  font-weight: 900;
  color: #353B76;
  line-height: 1;
}

.live-photo-wrap {
  max-width: 900px;
  max-height: 65vh;
  margin: 0 auto 28px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.18);
  background: white;
}

.live-photo-wrap img {
  width: 100%;
  max-height: 65vh;
  object-fit: contain;
  display: block;
}

.live-like-count {
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 800;
  color: #353B76;
}

.live-slideshow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  transition: opacity 450ms ease, transform 450ms ease;
}

.live-slideshow-grid.is-changing {
  opacity: 0;
  transform: translateX(20px);
}

.live-slide-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.14);
}

.live-slide-card img {
  width: 100%;
  height: 52vh;
  object-fit: cover;
  display: block;
}

.live-slide-info {
  padding: 18px 20px 22px;
  display: grid;
  gap: 6px;
  color: #353B76;
  font-size: clamp(18px, 2vw, 28px);
}

.live-slide-info strong {
  font-weight: 900;
}

.live-slide-info span {
  font-weight: 700;
}

@media (max-width: 900px) {
  .live-slideshow-grid {
    grid-template-columns: 1fr;
  }

  .live-slide-card img {
    height: 58vh;
  }
}

body.live-kiosk-body {
  overflow: hidden;
}

.live-kiosk-body {
  margin: 0;
  overflow: hidden;
  background: #f7f3ef;
}

.live-kiosk {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  padding: clamp(14px, 2vw, 36px);
  box-sizing: border-box;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(10px, 1.6vh, 24px);
}

.live-kiosk-header {
  height: 8vh;
  min-height: 8vh;
  max-height: 8vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.live-kiosk-header h1 {
  margin: 0;
  color: #353B76;
  font-size: clamp(24px, 3.8vh, 56px);
  line-height: 1.05;
}

.live-kiosk-content {
  min-height: 0;
  transition: opacity 350ms ease, transform 350ms ease;
}

.live-kiosk-content.is-changing {
  opacity: 0;
  transform: translateX(18px);
}

.live-kiosk-message {
  height: 100%;
  display: grid;
  place-items: center;
  color: #353B76;
  font-weight: 800;
  font-size: clamp(24px, 4vw, 64px);
  text-align: center;
}

.live-adaptive-grid {
  height: 100%;
  display: grid;
  gap: clamp(12px, 2vw, 28px);
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
}

.live-adaptive-card {
  min-height: 0;
  background: #ffffff;
  border-radius: clamp(18px, 2vw, 32px);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
  display: grid;
grid-template-rows: 81% 19%;
}

.live-adaptive-image {
  min-height: 0;
  display: grid;
  place-items: center;
  background: #ffffff;
}

.live-adaptive-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  display: block;
}

.live-adaptive-info {
  padding: 8px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 2px;

  color: #353B76;
  text-align: center;

  overflow: hidden;

  font-size: clamp(12px, 1.2vw, 22px);
  line-height: 1.1;
}

.live-adaptive-info strong {
  font-weight: 900;
}

.live-adaptive-info span {
  font-weight: 700;
}

.live-feature-card,
.live-top-photo-card {
  height: 100%;
  background: #ffffff;
  border-radius: clamp(24px, 3vw, 42px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.16);
  color: #353B76;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(18px, 3vw, 48px);
  box-sizing: border-box;
}

.live-feature-name {
  font-size: clamp(42px, 8vw, 140px);
  font-weight: 900;
  line-height: 1;
}

.live-feature-number {
  font-size: clamp(90px, 18vw, 260px);
  font-weight: 900;
  line-height: 0.95;
}

.live-feature-label {
  font-size: clamp(24px, 4vw, 72px);
  font-weight: 800;
}

.live-top-photo-card {
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.8fr);
  gap: clamp(16px, 3vw, 46px);
}

.live-top-photo-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
}

.live-top-photo-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: clamp(18px, 2vw, 30px);
}

.live-top-photo-info {
  display: grid;
  gap: clamp(8px, 1.5vw, 20px);
  font-size: clamp(22px, 4vw, 70px);
  line-height: 1.1;
}

.live-top-photo-info strong {
  font-weight: 900;
}

.live-top-photo-info span {
  font-weight: 800;
}

@media (max-aspect-ratio: 1/1) {
  .live-top-photo-card {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
  }
}

html,
body {
  width: 100%;
  height: 100%;;
}

/* ========================================= */
/* NEW SLIDESHOW                             */
/* ========================================= */

.slideshow-grid {

  width: 100%;
  height: 100%;

  display: grid;

  gap: 1.5vw;

  grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));

  overflow: hidden;
}

.slideshow-item {

  display: flex;

  flex-direction: column;

  min-height: 0;
}

.slideshow-image {

  flex: 0 0 81%;

  overflow: hidden;

  border-radius: 24px;

  background: #ffffff;
}

.slideshow-image img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

.slideshow-info {

  flex: 0 0 19%;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  text-align: center;

  color: #353B76;

  padding-top: 8px;

  overflow: hidden;
}

.challenge-line {

  font-weight: 700;

  line-height: 1.15;

  font-size: clamp(12px, 1vw, 22px);
}

.guest-line {

  margin-top: 6px;

  font-weight: 800;

  font-size: clamp(14px, 1.2vw, 24px);
}

.likes-line {

  font-weight: 800;

  font-size: clamp(14px, 1.2vw, 24px);
}

/* ========================================= */
/* LIVE KIOSK FINAL OVERRIDES                */
/* ========================================= */

body.live-kiosk-body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  overflow: hidden !important;
  background: #f7f3ef;
}

body.live-kiosk-body * {
  box-sizing: border-box;
}

.live-kiosk {
  width: 100vw !important;
  height: 100dvh !important;
  max-width: 100vw !important;
  max-height: 100dvh !important;
  overflow: hidden !important;
  padding: clamp(10px, 1.5vw, 28px) !important;
  display: grid !important;
  grid-template-rows: 8dvh minmax(0, 1fr) !important;
  gap: clamp(8px, 1vh, 18px) !important;
}

.live-kiosk-header {
  height: 8dvh !important;
  min-height: 0 !important;
  max-height: 8dvh !important;
  overflow: hidden !important;
}

.live-kiosk-header .eyebrow {
  display: none !important;
}

.live-kiosk-header h1 {
  margin: 0 !important;
  font-size: clamp(20px, 3.5vh, 48px) !important;
  line-height: 1.05 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-kiosk-content {
  min-height: 0 !important;
  height: 100% !important;
  overflow: hidden !important;
}

.slideshow-grid {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  overflow: hidden !important;
  display: grid !important;
  gap: clamp(10px, 1.4vw, 24px) !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
}

.slideshow-item {
  min-height: 0 !important;
  height: 100% !important;
  overflow: hidden !important;
  display: grid !important;
  grid-template-rows: 81% 19% !important;
}

.slideshow-image {
  min-height: 0 !important;
  height: 100% !important;
  overflow: hidden !important;
  border-radius: clamp(14px, 1.5vw, 24px) !important;
}

.slideshow-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.slideshow-info {
  min-height: 0 !important;
  height: 100% !important;
  overflow: hidden !important;
  padding: 6px 4px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

.challenge-line {
  font-size: clamp(10px, 1vw, 18px) !important;
  line-height: 1.08 !important;
  font-weight: 700 !important;
}

.guest-line,
.likes-line {
  font-size: clamp(12px, 1.15vw, 22px) !important;
  line-height: 1.08 !important;
  font-weight: 800 !important;
}

/* Top Guest */

.live-feature-card {
  height: 100% !important;
  overflow: hidden !important;
  display: grid !important;
  grid-template-rows: 1fr 1fr !important;
  place-items: center !important;
  padding: clamp(16px, 3vw, 44px) !important;
}

.live-feature-name {
  font-size: clamp(36px, 8vw, 120px) !important;
  line-height: 1 !important;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-feature-number {
  font-size: clamp(60px, 12vw, 180px) !important;
  line-height: 1 !important;
}

/* Top Photo Clean Layout */

.live-top-photo-clean {
  height: 100% !important;
  overflow: hidden !important;
  display: grid !important;
  grid-template-rows: 81% 19% !important;
  gap: 0 !important;
}

.live-top-photo-clean-image {
  min-height: 0 !important;
  height: 100% !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
}

.live-top-photo-clean-image img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  border-radius: clamp(14px, 1.5vw, 24px);
}

.live-top-photo-clean-info {
  min-height: 0 !important;
  height: 100% !important;
  overflow: hidden !important;
  color: #353B76;
  text-align: center;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 2px;
  font-size: clamp(12px, 1.6vw, 28px);
  line-height: 1.08;
}

.live-top-photo-clean-info strong,
.live-top-photo-clean-info span {
  font-weight: 800;
}

.live-kiosk-header {
  gap: 4px !important;
}

.live-kiosk-header h1 {
  display: block !important;
  white-space: nowrap !important;
}

.live-subtitle {
  margin: 0 !important;
  color: #353B76 !important;
  font-size: clamp(13px, 2vh, 22px) !important;
  line-height: 1 !important;
  font-weight: 500 !important;
}