/* ==========================================================================
   XXPORN LOVERS — Core Stylesheet
   Dark luxury + modern streaming platform + pink identity.
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }
input, select { font-family: inherit; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
}

.section {
  padding: 64px 0;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: -0.01em;
}
.section-sub {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 6px;
}
.link-more {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color var(--transition-fast);
  border-bottom: 1px solid transparent;
}
.link-more:hover { color: var(--pink); border-color: var(--pink); }

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
  white-space: nowrap;
}
.logo-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 2.2rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-right: -1px;
  transform: translateY(1px);
}
.logo-text {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.logo-text .accent { color: var(--pink); }
.logo--sm .logo-mark { font-size: 1.5rem; }
.logo--sm .logo-text { font-size: 0.72rem; }
.logo--lg .logo-mark { font-size: 3rem; }
.logo--lg .logo-text { font-size: 1.15rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background var(--transition-fast), color var(--transition-fast),
              border-color var(--transition-fast), transform var(--transition-fast),
              box-shadow var(--transition-fast);
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover { background: var(--pink-hover); box-shadow: 0 10px 32px rgba(255, 92, 154, 0.45); }

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--pink); color: var(--pink-hover); }

.btn-gradient {
  background: var(--gradient-brand);
  color: #fff;
}
.btn-gradient:hover { filter: brightness(1.08); }

.btn-sm { padding: 9px 18px; font-size: 0.72rem; }
.btn-icon {
  width: 40px; height: 40px; padding: 0; border-radius: var(--radius-full);
  background: var(--bg-elevated); border: 1px solid var(--border); color: var(--text-secondary);
}
.btn-icon:hover { color: var(--pink); border-color: var(--pink); }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  position: relative;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 0;
  transition: color var(--transition-fast);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active {
  color: var(--pink);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-brand);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: transparent; border: none; color: var(--text-primary);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  position: relative;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 14px;
  width: 220px;
  transition: border-color var(--transition-fast);
}
.search-box:focus-within { border-color: var(--pink); }
.search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.85rem;
  width: 100%;
}
.search-box input::placeholder { color: var(--text-muted); }
.search-box svg { flex-shrink: 0; color: var(--text-muted); }

/* Mobile nav drawer */
.mobile-drawer {
  position: fixed;
  inset: var(--nav-height-mobile) 0 0 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 24px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base);
  z-index: 99;
  overflow-y: auto;
}
.mobile-drawer.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-drawer .nav-links { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
.mobile-drawer .nav-links a { width: 100%; padding: 14px 4px; border-bottom: 1px solid var(--border); }
.mobile-drawer .search-box { width: 100%; margin-top: 16px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(60% 60% at 85% 0%, rgba(255, 45, 117, 0.16) 0%, transparent 60%),
    radial-gradient(50% 50% at 10% 20%, rgba(217, 0, 82, 0.12) 0%, transparent 60%),
    var(--bg-primary);
  border-bottom: 1px solid var(--border);
}
.hero-content { max-width: 680px; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 18px 0 20px;
}
.hero-title em {
  font-style: italic;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Category chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 9px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}
.chip:hover { border-color: var(--pink); color: var(--text-primary); }
.chip.active { background: var(--gradient-brand); color: #fff; border-color: transparent; }

/* ---------- Video grid & card ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.video-card {
  position: relative;
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}
.video-card-hitbox { display: block; }
.video-card:hover {
  border-color: rgba(255, 45, 117, 0.55);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #171717, #0c0c0c);
  overflow: hidden;
}
.thumb::before {
  /* placeholder art texture */
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 20% 0%, rgba(255,45,117,0.14), transparent 55%);
}
.thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition-slow);
}
.video-card:hover .thumb img { transform: scale(1.06); }

.thumb-duration {
  position: absolute;
  right: 8px; bottom: 8px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--text-primary);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
}
.thumb-badge {
  position: absolute;
  left: 8px; top: 8px;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--radius-full);
}

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  width: 56px; height: 56px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.88);
  background: var(--pink);
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex; align-items: center; justify-content: center;
  opacity: 0.92;
  box-shadow: 0 6px 24px rgba(255, 45, 117, 0.5);
  transition: transform var(--transition-base), opacity var(--transition-base), background var(--transition-base);
}
.play-btn svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }
.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  background: var(--pink-hover);
}

.card-body { padding: 14px 16px 16px; }
.card-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 6px;
  display: block;
}
.card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.card-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-muted); }

/* Large hero play button, standalone showcase */
.play-btn--xl {
  width: 88px; height: 88px;
  box-shadow: 0 10px 36px rgba(255, 45, 117, 0.55);
}
.play-btn--xl svg { width: 30px; height: 30px; }

/* ---------- Stats strip ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat-tile {
  background: var(--bg-card);
  padding: 22px 20px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ---------- Newsletter / CTA band ---------- */
.cta-band {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  background: linear-gradient(135deg, rgba(255,45,117,0.10), rgba(217,0,82,0.05)), var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}
.cta-band p { color: var(--text-secondary); margin-top: 6px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
  padding: 56px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 40px;
}
.footer-about p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 320px;
}
.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--pink-hover); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--pink); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 4px 10px;
  font-weight: 700;
  color: var(--text-secondary);
}

/* ---------- Utility page (blog list, etc.) ---------- */
.page-head {
  padding: 56px 0 32px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}
.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
}
.page-head p { color: var(--text-secondary); margin-top: 10px; max-width: 560px; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination button,
.pagination a {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
}
.pagination button.active,
.pagination a.active { background: var(--gradient-brand); color: #fff; border-color: transparent; }
.pagination button:hover:not(.active),
.pagination a:hover:not(.active) { border-color: var(--pink); color: var(--text-primary); }

/* ---------- Responsive ---------- */
@media (max-width: 1439px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  :root { --nav-height: var(--nav-height-mobile); }
  .navbar-inner .nav-links, .navbar-inner .search-box { display: none; }
  .nav-toggle { display: inline-flex; }
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hero { padding: 56px 0 44px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .section { padding: 44px 0; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-about { grid-column: 1 / -1; }
  .cta-band { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .card-title { font-size: 0.88rem; }
  .play-btn { width: 46px; height: 46px; }
}

@media (max-width: 420px) {
  .video-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .container { padding: 0 16px; }
}

/* ---------- Report button (on video cards) ---------- */
.report-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast), color var(--transition-fast),
              border-color var(--transition-fast), background var(--transition-fast);
}
.report-btn svg { width: 13px; height: 13px; }
.video-card:hover .report-btn,
.report-btn:focus-visible {
  opacity: 1;
}
.report-btn:hover {
  color: #fff;
  border-color: var(--pink);
  background: rgba(0, 0, 0, 0.9);
}

/* ---------- Report modal ---------- */
.report-modal[hidden] { display: none; }
.report-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.report-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.report-modal-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
}
.report-modal-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  padding-right: 24px;
}
.report-modal-sub {
  color: var(--text-secondary);
  font-size: 0.82rem;
  margin-top: 6px;
  margin-bottom: 20px;
}
.report-modal-x {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.report-modal-x svg { width: 16px; height: 16px; }
.report-modal-x:hover { color: var(--text-primary); }
.report-modal-card select,
.report-modal-card textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  resize: vertical;
  transition: border-color var(--transition-fast);
}
.report-modal-card select:focus,
.report-modal-card textarea:focus { border-color: var(--pink); }
.report-modal-status {
  min-height: 1.2em;
  font-size: 0.8rem;
  margin: 4px 0 0;
}
.report-modal-status.is-error { color: var(--pink-soft); }
.report-modal-status.is-success { color: #4ADE80; }
.report-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}
.report-modal-actions .btn { padding: 11px 22px; }

/* ---------- Share popover ---------- */
.share-popover[hidden] { display: none; }
.share-popover {
  position: fixed;
  z-index: 600;
  width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 8px;
}
.share-popover-head {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 10px 8px;
}
.share-popover-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
}
.share-popover-item svg { width: 16px; height: 16px; color: var(--text-secondary); flex-shrink: 0; }
.share-popover-item:hover { background: var(--bg-elevated); }
.share-popover-item:hover svg { color: var(--pink); }
.share-popover-status {
  padding: 6px 10px 2px;
  font-size: 0.76rem;
  color: var(--pink-soft);
  min-height: 1.2em;
}

/* ---------- Form field (report modal, comment form) ---------- */
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  resize: vertical;
  transition: border-color var(--transition-fast);
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--pink); }

/* ---------- Like / dislike ---------- */
.like-btn.is-active,
.dislike-btn.is-active {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
}

/* ---------- Comments ---------- */
.comment-form {
  max-width: 640px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  margin-bottom: 28px;
}
.comment-form-status {
  min-height: 1.2em;
  font-size: 0.8rem;
  margin: 2px 0 14px;
}
.comment-form-status.is-error { color: var(--pink-soft); }
.comment-form-status.is-success { color: #4ADE80; }
.comment-list { max-width: 720px; display: flex; flex-direction: column; gap: 4px; }
.comment-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.comment-item:last-child { border-bottom: none; }
.comment-item-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.comment-item-head strong { font-size: 0.88rem; color: var(--text-primary); }
.comment-item-head span { font-size: 0.76rem; color: var(--text-muted); }
.comment-item p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; }

/* ---------- Player watermark (uploaded/direct-URL videos) ---------- */
.player-watermark {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0.7;
  transition: opacity var(--transition-fast), background var(--transition-fast);
  pointer-events: auto;
}
.player-watermark:hover,
.player-watermark:focus-visible {
  opacity: 1;
  background: rgba(0, 0, 0, 0.65);
}
.player-watermark .logo-mark { font-size: 1.05rem; }
.player-watermark .logo-text { font-size: 0.56rem; }
@media (max-width: 560px) {
  .player-watermark { top: 8px; left: 8px; padding: 4px 8px; }
  .player-watermark .logo-mark { font-size: 0.9rem; }
  .player-watermark .logo-text { font-size: 0.5rem; }
}
