/* YouTube Two-Click Placeholder */
.yt-consent {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1a1a1c 0%, #0a0a0b 100%);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .yt-consent {
  background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ec 100%);
  border-color: rgba(0, 0, 0, 0.08);
}

.yt-consent:hover, .yt-consent:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  outline: none;
}

.yt-consent__overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.5rem;
  color: #f5f5f7;
}

[data-theme="light"] .yt-consent__overlay { color: #1a1a1c; }

.yt-consent__icon {
  transition: transform 0.2s ease;
}
.yt-consent:hover .yt-consent__icon { transform: scale(1.1); }

.yt-consent__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  max-width: 90%;
}

.yt-consent__hint {
  font-size: 0.8125rem;
  line-height: 1.4;
  opacity: 0.7;
  margin: 0;
  max-width: 90%;
}

.yt-consent__btn {
  margin-top: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  background: #22c55e;
  color: #0a0a0b;
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.yt-consent__btn:hover { background: #16a34a; }

@media (prefers-reduced-motion: reduce) {
  .yt-consent, .yt-consent__icon { transition: none; }
}
