/* Lightweight visual refresh. Loaded after the legacy theme to avoid changing
   markup, JavaScript behaviour, or the site's lazy-loading performance. */
:root {
  --pmz-bg: #09090b;
  --pmz-surface: #121216;
  --pmz-surface-2: #18181d;
  --pmz-border: rgba(255, 255, 255, .09);
  --pmz-text: #f5f3f7;
  --pmz-muted: #9b96a3;
  --pmz-accent: #da2657;
  --pmz-accent-2: #b22048;
  --pmz-accent-rgb: 218, 38, 87;
  --pmz-radius: 12px;
}

:root[data-pmz-palette="violet"] { --pmz-accent: #9b5de5; --pmz-accent-2: #6d5dfc; --pmz-accent-rgb: 155, 93, 229; }
:root[data-pmz-palette="ocean"] { --pmz-accent: #16a6c9; --pmz-accent-2: #3b82f6; --pmz-accent-rgb: 22, 166, 201; }
:root[data-pmz-palette="amber"] { --pmz-accent: #e78a18; --pmz-accent-2: #d95d39; --pmz-accent-rgb: 231, 138, 24; }

html { color-scheme: dark; }

body {
  background:
    radial-gradient(800px 320px at 50% -210px, rgba(var(--pmz-accent-rgb), .11), transparent 72%),
    var(--pmz-bg);
  color: var(--pmz-muted);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { transition: color .16s ease, background-color .16s ease, border-color .16s ease, opacity .16s ease; }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--pmz-accent) !important;
  outline-offset: 2px;
}

.container { width: min(100% - 28px, 1323px); }

.sticky-top {
  background: rgba(9, 9, 11, .96);
  box-shadow: 0 1px 0 var(--pmz-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

#notificationBanner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: auto;
  top: auto;
  z-index: 1080;
  display: flex !important;
  width: 52px;
  height: 52px;
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border: 0;
  border-radius: 50%;
  background: transparent !important;
  box-shadow: none;
  overflow: visible;
}

#notificationBanner[style*="display: none"] { display: none !important; }

#subscribeButton {
  display: inline-flex !important;
  width: 52px !important;
  height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, .2) !important;
  border-radius: 50% !important;
  background: linear-gradient(145deg, var(--pmz-accent), var(--pmz-accent-2)) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .42), 0 0 0 4px rgba(var(--pmz-accent-rgb), .12);
  color: #fff !important;
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

#subscribeButton:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 13px 32px rgba(0, 0, 0, .48), 0 0 0 5px rgba(var(--pmz-accent-rgb), .16); }
#subscribeButton:active { transform: translateY(0) scale(.96); }
#subscribeButton:disabled { cursor: wait; opacity: .72; }

#subscribeButton.notification-processing {
  opacity: 1;
  animation: pmz-notification-pulse 1.15s ease-in-out infinite;
}

#subscribeButton.notification-processing i {
  transform-origin: 50% 10%;
  animation: pmz-notification-ring .72s ease-in-out infinite;
}

@keyframes pmz-notification-ring {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(16deg); }
  40% { transform: rotate(-14deg); }
  60% { transform: rotate(9deg); }
  80% { transform: rotate(-6deg); }
}

@keyframes pmz-notification-pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(0, 0, 0, .42), 0 0 0 4px rgba(var(--pmz-accent-rgb), .12); }
  50% { box-shadow: 0 10px 30px rgba(0, 0, 0, .46), 0 0 0 9px rgba(var(--pmz-accent-rgb), .06); }
}

@media (prefers-reduced-motion: reduce) {
  #subscribeButton.notification-processing,
  #subscribeButton.notification-processing i { animation: none; }
}

#notificationStatus { display: none; }

#notificationBanner.notification-success {
  width: auto;
  max-width: min(360px, calc(100vw - 32px));
  height: auto;
  min-height: 52px;
  justify-content: flex-start;
  gap: 10px;
  padding: 7px 34px 7px 7px !important;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  background: rgba(24, 24, 29, .97) !important;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .46), 0 0 0 4px rgba(var(--pmz-accent-rgb), .1);
}

#notificationBanner.notification-success #subscribeButton {
  flex: 0 0 38px;
  width: 38px !important;
  height: 38px;
  cursor: default;
  font-size: .88rem;
  opacity: 1;
  box-shadow: none;
  pointer-events: none;
}

#notificationBanner.notification-success #notificationStatus {
  display: block;
  min-width: 0;
  color: var(--pmz-text);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.25;
}

#notificationCloseBannerButton {
  position: absolute;
  top: -7px;
  right: -7px;
  z-index: 1;
  display: inline-flex !important;
  width: 22px !important;
  height: 22px;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, .2) !important;
  border-radius: 50% !important;
  background: #19181d !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .38);
  color: #d9d5dd !important;
  cursor: pointer;
  font-size: .66rem;
  line-height: 1;
}

#notificationCloseBannerButton:hover { background: #28252d !important; color: #fff !important; }

.top-nav {
  background: transparent;
  border-bottom: 1px solid var(--pmz-border);
}

.pmz-site-header {
  isolation: isolate;
  border-bottom: 1px solid var(--pmz-border);
  background: rgba(10, 9, 12, .97);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}
.pmz-site-header .top-nav { border-bottom-color: rgba(255, 255, 255, .055); }
.pmz-site-header .navbar { border: 0; background: rgba(20, 18, 25, .7) !important; }
.pmz-site-header .top-menu,
.pmz-site-header .navbar > .container { width: 100%; }

.top-menu { display: flex; min-height: 76px; align-items: center; }
.top-menu > .float-left { flex: 0 0 auto; }
.brand-cluster { display: flex; align-items: center; }
.top-actions { display: flex; align-items: center; gap: 6px; }
.top-actions > .top-menu-item {
  display: flex;
  align-items: center;
  margin-top: 0;
}
.top-actions #installAppButton {
  display: inline-flex;
  min-width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border-radius: 9px;
  line-height: 1;
}
.palette-switcher { position: relative; margin: 0; }
.palette-toggle {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--pmz-border);
  border-radius: 9px;
  background: rgba(255, 255, 255, .035);
  color: #aaa5b1;
  font-size: .76rem;
  font-weight: 650;
  cursor: pointer;
}
.palette-toggle:hover, .palette-toggle[aria-expanded="true"] { border-color: rgba(var(--pmz-accent-rgb), .4); background: rgba(var(--pmz-accent-rgb), .09); color: #fff; }
.palette-toggle i { color: var(--pmz-accent); font-size: .9rem; }
.palette-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10100;
  width: 150px;
  padding: 6px;
  border: 1px solid var(--pmz-border);
  border-radius: 11px;
  background: #18181d;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .45);
}
.palette-menu[hidden] { display: none; }
.palette-option { display: flex; width: 100%; height: 34px; align-items: center; gap: 9px; padding: 0 9px; border: 0; border-radius: 7px; background: transparent; color: #b7b2bd; font-size: .78rem; cursor: pointer; }
.palette-option:hover, .palette-option[aria-checked="true"] { background: rgba(255, 255, 255, .065); color: #fff; }
.palette-option[aria-checked="true"]::after { margin-left: auto; color: var(--pmz-accent); content: "\2713"; font-weight: 800; }
.palette-swatch { width: 14px; height: 14px; border-radius: 50%; }
.palette-classic { background: linear-gradient(135deg, #da2657, #b22048); }
.palette-violet { background: linear-gradient(135deg, #9b5de5, #6d5dfc); }
.palette-ocean { background: linear-gradient(135deg, #16a6c9, #3b82f6); }
.palette-amber { background: linear-gradient(135deg, #e78a18, #d95d39); }
.top-brand { margin: 9px 44px 9px 0; }
.top-brand img { object-fit: contain; }

.search-top-container { flex: 0 1 560px; margin: 0 !important; }
.search-top-container form, .search-top-container .input-group { width: 100%; }
.top-menu > .float-right { margin-left: auto; }

.bg-dark,
.navbar { background: rgba(20, 18, 25, .82) !important; }

.navbar-dark .navbar-nav .nav-link {
  position: relative;
  color: #aaa5b1;
  font-size: .88rem;
  font-weight: 550;
  letter-spacing: .01em;
}

.navbar-dark .navbar-nav .nav-link:hover { color: var(--pmz-text); }

.navbar-dark .navbar-nav .active > .nav-link {
  border-radius: 7px;
  background: rgba(255, 255, 255, .065);
  color: #fff;
  box-shadow: none !important;
}

.navbar-dark .navbar-nav .active > .nav-link::after {
  display: none;
}

.search-top-container .input-group,
.search-bot-container .input-group {
  height: 44px;
  overflow: hidden;
  border: 1px solid var(--pmz-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 5px 20px rgba(0, 0, 0, .18);
  transition: border-color .16s ease, box-shadow .16s ease;
}

.search-top-container .input-group:focus-within,
.search-bot-container .input-group:focus-within {
  border-color: rgba(var(--pmz-accent-rgb), .62);
  box-shadow: 0 0 0 3px rgba(var(--pmz-accent-rgb), .14), 0 5px 20px rgba(0, 0, 0, .18);
}

.search-top-container .easy-autocomplete,
.search-bot-container .easy-autocomplete {
  width: calc(100% - 48px) !important;
  height: 42px;
}

.search-top-container .easy-autocomplete input,
.search-bot-container .easy-autocomplete input,
#search_query,
#search_query_xs {
  width: 100% !important;
  height: 42px;
  padding: 0 52px 0 16px !important;
  font-size: .92rem;
  line-height: 42px;
}

#search_select,
#search_select_xs {
  top: 0;
  right: 48px;
  display: flex;
  width: 44px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--pmz-border);
  border-radius: 0;
  color: #928d99;
}

#search_select:hover,
#search_select_xs:hover {
  background: rgba(255, 255, 255, .055);
  color: #fff;
}

#search_form .input-group-btn,
#search_form_xs .input-group-btn {
  display: block;
  width: 48px;
  height: 42px;
}

#search_form button,
#search_form_xs button {
  display: flex;
  width: 48px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0 9px 9px 0;
}

.easy-autocomplete-container { top: 45px; }

.easy-autocomplete-container ul {
  overflow: hidden;
  border: 1px solid var(--pmz-border);
  border-top: 0;
  border-radius: 0 0 9px 9px;
  background: #18181d;
  box-shadow: 0 16px 35px rgba(0, 0, 0, .4);
}

.top-nav .form-control,
.navbar .form-control {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.top-nav .form-control:focus,
.navbar .form-control:focus,
.top-nav .form-control:focus-visible,
.navbar .form-control:focus-visible {
  outline: 0 !important;
  box-shadow: none !important;
}

#search_form button,
#search_form_xs button,
.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--pmz-accent), var(--pmz-accent-2));
  box-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus {
  border-color: transparent;
  background: linear-gradient(135deg, var(--pmz-accent-2), var(--pmz-accent));
  box-shadow: 0 5px 18px rgba(var(--pmz-accent-rgb), .25);
}

.btn,
.form-control,
.dropdown-menu { border-radius: 9px; }

.dropdown-menu {
  border: 1px solid var(--pmz-border);
  background: #1b1821;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
}

.dropdown-item { color: #b9b4bf; }
.dropdown-item:hover, .dropdown-item:focus { color: #fff; background: rgba(255, 255, 255, .06); }

.navbar { position: relative; }
.navbar .container { position: static; }
.multi-column-dropdown {
  position: fixed !important;
  top: var(--pmz-header-height, 118px) !important;
  right: 0;
  left: 0 !important;
  border-top: 1px solid var(--pmz-border);
  border-bottom: 1px solid var(--pmz-border);
  background: rgba(18, 18, 22, .98);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .45);
  z-index: 10050;
}

.sub-menu-title { font-family: inherit; font-size: .9rem; font-weight: 700; }
.sub-menu-content ul a { padding: 2px 0; color: #918b98; font-size: .84rem; }
.sub-menu-content ul a:hover { color: #fff; }

.breadcrumb {
  margin: 2px 0 14px;
  padding: 0 !important;
  background: transparent !important;
  color: #78727f;
  font-size: .75rem;
}

.breadcrumb-item, .breadcrumb-item.active { color: #716c78 !important; }
.breadcrumb a { color: #8e8895 !important; }
.breadcrumb a:hover { color: #fff; }

.container > .well-filters:first-of-type:not(.home-section-heading):not(.listing-page-heading):not(.media-page-heading):not(.slideshow-page-header) {
  min-height: 58px;
  margin-top: 6px;
  margin-bottom: 12px;
  padding: 9px 12px !important;
  border: 1px solid var(--pmz-border) !important;
  border-radius: 11px !important;
  background:
    linear-gradient(105deg, rgba(var(--pmz-accent-rgb), .075), rgba(255, 255, 255, .025) 48%, rgba(255, 255, 255, .012)) !important;
  box-shadow: 0 7px 22px rgba(0, 0, 0, .16) !important;
}

.container > .well-filters:first-of-type:not(.home-section-heading):not(.listing-page-heading):not(.media-page-heading):not(.slideshow-page-header)::before {
  width: 4px;
  height: 26px;
  flex: 0 0 4px;
  box-shadow: 0 0 14px rgba(var(--pmz-accent-rgb), .2);
}

.container > .well-filters:first-of-type:not(.home-section-heading):not(.listing-page-heading):not(.media-page-heading):not(.slideshow-page-header) h1,
.container > .well-filters:first-of-type:not(.home-section-heading):not(.listing-page-heading):not(.media-page-heading):not(.slideshow-page-header) h2 {
  padding-top: 0;
  padding-bottom: 0;
}

.well-filters {
  display: flex;
  min-height: 48px;
  align-items: center;
  border: 0;
  border-bottom: 0;
  box-shadow: none;
}

.well-filters::before {
  width: 3px;
  height: 18px;
  margin-right: 11px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--pmz-accent), var(--pmz-accent-2));
  content: "";
}

.well-filters h1,
.well-filters h2,
.well-filters h3,
.well-filters h4,
.well-filters h5,
.well-filters h6 {
  color: var(--pmz-text);
  font-size: 1.12rem;
  font-weight: 650;
  letter-spacing: -.01em;
}

.well-filters > .float-left:first-of-type { flex: 1; min-width: 0; }
.well-filters > .float-left:not(:first-of-type) { flex: 0 1 auto; }
.well-filters > h1 { flex: 1; min-width: 0; white-space: normal; }

.home-section-heading {
  min-height: 56px;
  padding: 7px 12px !important;
  border: 1px solid var(--pmz-border) !important;
  border-radius: 11px !important;
  background:
    linear-gradient(105deg, rgba(var(--pmz-accent-rgb), .085), rgba(255, 255, 255, .025) 48%, rgba(255, 255, 255, .012)) !important;
  box-shadow: 0 7px 22px rgba(0, 0, 0, .16) !important;
}

.home-section-heading::before {
  width: 4px;
  height: 26px;
  box-shadow: 0 0 14px rgba(var(--pmz-accent-rgb), .2);
}

.well-filters.listing-page-heading {
  min-height: 58px;
  margin: 4px 0 12px;
  padding: 9px 12px !important;
  border: 1px solid var(--pmz-border) !important;
  border-radius: 11px !important;
  background:
    linear-gradient(105deg, rgba(var(--pmz-accent-rgb), .075), rgba(255, 255, 255, .025) 48%, rgba(255, 255, 255, .012)) !important;
  box-shadow: 0 7px 22px rgba(0, 0, 0, .16) !important;
}

.well-filters.listing-page-heading::before {
  width: 4px;
  height: 26px;
  flex: 0 0 4px;
  box-shadow: 0 0 14px rgba(var(--pmz-accent-rgb), .2);
}

.well-filters.listing-page-heading .title-padding,
.well-filters.listing-page-heading h1,
.well-filters.listing-page-heading h2 {
  padding-top: 0;
  padding-bottom: 0;
}

.well-filters.tags-page-heading {
  flex-wrap: wrap;
}

.well-filters.tags-page-heading .listing-page-meta {
  margin-left: 12px;
  white-space: nowrap;
}

.well-filters.media-page-heading {
  min-height: 58px;
  margin: 4px 0 14px;
  padding: 9px 13px !important;
  border: 1px solid rgba(255, 255, 255, .085) !important;
  border-radius: 11px !important;
  background:
    linear-gradient(105deg, rgba(var(--pmz-accent-rgb), .09), rgba(255, 255, 255, .025) 46%, rgba(255, 255, 255, .012)) !important;
  box-shadow: 0 7px 24px rgba(0, 0, 0, .18) !important;
}

.well-filters.media-page-heading::before {
  width: 4px;
  height: 28px;
  margin-right: 12px;
  box-shadow: 0 0 16px rgba(var(--pmz-accent-rgb), .24);
}

.well-filters.media-page-heading h1 {
  padding: 0;
  color: #faf8fb;
  font-size: 1.15rem;
  line-height: 1.35;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .28);
}

.well-action {
  padding: 0;
  box-shadow: none;
}

.well-action:hover { box-shadow: none; }

.well-action a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--pmz-border);
  border-radius: 999px;
  background: transparent;
  color: #aaa5b1 !important;
  font-size: .82rem;
  font-weight: 600;
}

.well-action a:hover {
  border-color: rgba(var(--pmz-accent-rgb), .45);
  background: rgba(var(--pmz-accent-rgb), .1);
  color: #fff !important;
}

.slideshow-action a {
  min-height: 34px;
  gap: 5px;
  padding: 0 14px;
  border-color: rgba(var(--pmz-accent-rgb), .7);
  background: linear-gradient(135deg, var(--pmz-accent), var(--pmz-accent-2));
  box-shadow: 0 6px 18px rgba(var(--pmz-accent-rgb), .22);
  color: #fff !important;
  letter-spacing: .01em;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.slideshow-action a:hover {
  border-color: rgba(var(--pmz-accent-rgb), .9);
  background: linear-gradient(135deg, var(--pmz-accent), var(--pmz-accent-2));
  box-shadow: 0 9px 22px rgba(var(--pmz-accent-rgb), .3);
  color: #fff !important;
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.slideshow-action a:active { transform: translateY(0); }
.slideshow-action a i { font-size: .68rem; }

.slideshow-page-header { gap: 10px; }
.slideshow-page-header::before { flex: 0 0 auto; margin-right: 1px; }
.slideshow-page-header > .float-left { overflow: hidden; }
.slideshow-page-header h1 { overflow-wrap: anywhere; }
.slideshow-back-action { flex: 0 0 auto; }
.slideshow-back-action a { min-height: 34px; gap: 6px; padding: 0 12px; color: #d3ced8 !important; }
.slideshow-back-action a i { color: var(--pmz-accent); font-size: .72rem; }

.well-info {
  margin: 0 0 16px;
  padding: 10px 12px;
  border: 1px solid var(--pmz-border);
  border-radius: 9px;
  background: rgba(255, 255, 255, .025);
  color: #8e8895;
  font-size: .84rem;
}

.pmz-filters.well-action { padding: 0; }
.btn.pmz-filters { min-height: 32px; border-color: var(--pmz-border); border-radius: 8px; background: rgba(255, 255, 255, .025); color: #aaa5b1; font-size: .78rem; }
.btn.pmz-filters:hover { border-color: rgba(var(--pmz-accent-rgb), .35); background: rgba(var(--pmz-accent-rgb), .08); color: #fff; }
.btn.pmz-filters.active { border-color: var(--pmz-accent) !important; background: var(--pmz-accent) !important; color: #fff !important; }
.dropdown-menu.pmz-filters { padding: 6px; border: 1px solid var(--pmz-border); border-radius: 9px; background: #18181d; }
.dropdown-item.pmz-filters { border-radius: 6px; color: #aaa5b1; font-size: .8rem; }
.dropdown-item.pmz-filters.active { background: rgba(var(--pmz-accent-rgb), .13); color: #fff; }

.search-filter-toolbar { flex-wrap: wrap; gap: 8px; }
.search-filter-toolbar::before { flex: 0 0 auto; }
.search-filter-toolbar > .float-left:first-of-type { flex: 1 1 180px; }
.search-filter-toolbar > .float-left:nth-of-type(2) { flex: 0 1 auto; }
.search-filter-toolbar .m-l-20 { margin-left: 0; }
.search-filter-toolbar .btn-group { vertical-align: middle; }

.list-group-item {
  padding: 9px 12px;
  border-color: var(--pmz-border);
  background: rgba(255, 255, 255, .025);
  color: #9c96a3;
  font-size: .82rem;
}
.list-group-item:hover { background: rgba(255, 255, 255, .055); color: #fff; }
.list-group-item.active { border-color: rgba(var(--pmz-accent-rgb), .45); background: rgba(var(--pmz-accent-rgb), .13); color: #fff; }

.content-row { margin-right: -10px; margin-left: -10px; }

.content-row > [class*="col-"] {
  padding-right: 10px !important;
  padding-left: 10px !important;
}

.thumb-overlay {
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 10px;
  background-color: var(--pmz-surface-2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .22);
  transform: translateZ(0);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.content-row > [class*="col-"]:hover .thumb-overlay {
  border-color: rgba(var(--pmz-accent-rgb), .38);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .34);
  transform: translateY(-1px);
}

.thumb-overlay img {
  border-radius: inherit !important;
  transition: opacity .2s ease, transform .25s ease;
}

.content-row > [class*="col-"]:hover .thumb-overlay img { transform: scale(1.025); }

.duration {
  right: 7px;
  bottom: 7px;
  width: auto;
  height: auto;
  padding: 4px 7px !important;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  background: rgba(8, 7, 10, .82);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.15;
  backdrop-filter: blur(5px);
}

.label-type {
  border-radius: 0 0 8px 0;
  background: rgba(11, 10, 15, .82);
  font-weight: 700;
  backdrop-filter: blur(5px);
}

.content-info { height: 86px; padding: 8px 3px 0; }

.content-title {
  color: #dedbe2;
  font-size: .91rem;
  font-weight: 520;
  line-height: 1.35;
}

.content-row a:hover .content-title { color: #fff; }

.content-details { display: flex; align-items: center; gap: 7px; margin-top: 5px; }
.content-views, .content-added { color: #817b88; font-size: .78rem; }
.content-rating { margin-left: 0; color: #aaa5b1; font-size: .78rem; }
.content-rating i { color: #55c789; }

.popular-tag a,
.trending-searches a {
  border: 1px solid var(--pmz-border) !important;
  background: rgba(255, 255, 255, .04) !important;
  color: #bdb8c3 !important;
}

.popular-tag a:hover,
.trending-searches a:hover {
  border-color: rgba(var(--pmz-accent-rgb), .42) !important;
  background: rgba(var(--pmz-accent-rgb), .1) !important;
  color: #fff !important;
}

.ad-body {
  border-color: var(--pmz-border) !important;
  border-radius: var(--pmz-radius);
  background: rgba(255, 255, 255, .025) !important;
}

.ad-content,
[class*="magical-"] {
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.ad-content img, .ad-content iframe,
[class*="magical-"] img, [class*="magical-"] iframe {
  max-width: 100% !important;
  border: 0;
  border-radius: 10px;
}

/* Tags */
body .tags-grid { gap: 10px; }
body .tag-card { border-color: var(--pmz-border); background: rgba(255, 255, 255, .025); color: #bbb6c1; }
body .tag-card:hover { border-color: rgba(var(--pmz-accent-rgb), .38); background: rgba(var(--pmz-accent-rgb), .075); color: #fff; transform: translateY(-1px); }
body .tag-icon { border-color: rgba(var(--pmz-accent-rgb), .28); background: rgba(var(--pmz-accent-rgb), .11); color: var(--pmz-accent); }
body .tags-toolbar .btn { border-color: var(--pmz-border); border-radius: 8px; color: #aaa5b1; font-size: .76rem; }
body .tags-toolbar .btn.active { border-color: var(--pmz-accent); background: var(--pmz-accent); color: #fff; }

.sitemap-page-heading { justify-content: space-between; }
.sitemap-page-heading small { margin-left: 16px; white-space: nowrap; }

.static-page {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.static-page > h2:first-child {
  display: flex;
  min-height: 58px;
  align-items: center;
  margin: 6px 0 18px;
  padding: 9px 12px;
  border: 1px solid var(--pmz-border);
  border-radius: 11px;
  background:
    linear-gradient(105deg, rgba(var(--pmz-accent-rgb), .075), rgba(255, 255, 255, .025) 48%, rgba(255, 255, 255, .012));
  color: var(--pmz-text);
  font-size: 1.12rem;
  font-weight: 650;
  box-shadow: 0 7px 22px rgba(0, 0, 0, .16);
}

.static-page > h2:first-child::before {
  width: 4px;
  height: 26px;
  flex: 0 0 4px;
  margin-right: 11px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--pmz-accent), var(--pmz-accent-2));
  box-shadow: 0 0 14px rgba(var(--pmz-accent-rgb), .2);
  content: "";
}

.static-page > h2:first-child + div + div h3:first-child {
  display: none;
}

/* Individual photo navigation */
.photo-navigation-container {
  width: fit-content;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid var(--pmz-border);
  border-radius: 12px;
  background: #050506;
  box-shadow: 0 16px 45px rgba(0, 0, 0, .3);
}
.photo-navigation-container > img { display: block; max-width: 100%; border-radius: inherit; }
.photo-nav-arrow {
  top: 50%;
  width: 42px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  background: rgba(9, 9, 11, .7);
  color: #fff;
  opacity: .72;
  transform: translateY(-50%);
  animation: none;
  backdrop-filter: blur(8px);
}
.photo-navigation-container:hover .photo-nav-arrow, .photo-nav-arrow:hover { background: rgba(9, 9, 11, .9); color: #fff; opacity: 1; }
.photo-nav-prev { left: 12px; }
.photo-nav-next { right: 12px; }
.photo-back-link a,
.photo-page-links a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--pmz-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, .025);
  color: #aaa5b1;
  font-size: .78rem;
  font-weight: 600;
}
.photo-back-link a:hover, .photo-page-links a:hover { border-color: rgba(var(--pmz-accent-rgb), .35); background: rgba(var(--pmz-accent-rgb), .08); color: #fff; }

/* Watch page */
#fluid_video_wrapper_video,
.video-js,
.video-embedded {
  overflow: hidden;
  border: 1px solid var(--pmz-border);
  border-radius: 12px;
  background: #050506;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .32);
}

.fluid_video_wrapper.fluid_player_layout_default .fluid_controls_container {
  padding-right: 6px;
  padding-left: 6px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .94));
}

.fluid_video_wrapper.fluid_player_layout_default .fluid_controls_container .fluid_button {
  opacity: .82;
  transition: opacity .16s ease, transform .16s ease;
}

.fluid_video_wrapper.fluid_player_layout_default .fluid_controls_container .fluid_button:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.fluid_video_wrapper .fluid_controls_currentprogress,
.fluid_video_wrapper .fluid_control_currentvolume { background: var(--pmz-accent) !important; }
.fluid_video_wrapper .fluid_controls_currentpos { background: #fff !important; box-shadow: 0 0 0 3px rgba(var(--pmz-accent-rgb), .28); }
.fluid_video_wrapper .fluid_controls_progress_container:hover .fluid_controls_progress,
.fluid_video_wrapper .fluid_control_volume_container:hover .fluid_control_volume { height: 5px; }

.fluid_video_wrapper .logo_holder img {
  width: auto !important;
  max-width: min(15%, 120px) !important;
  height: auto !important;
  margin: 12px !important;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .55));
  transition: opacity .16s ease, transform .16s ease;
}
.fluid_video_wrapper .logo_holder img:hover { opacity: .9 !important; transform: scale(1.025); }

.gif-entry-button {
  display: inline-grid;
  width: auto;
  min-width: 250px;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px 12px 8px 9px;
  border: 1px solid rgba(var(--pmz-accent-rgb), .3);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(var(--pmz-accent-rgb), .12), rgba(255, 255, 255, .035));
  color: var(--pmz-text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  cursor: pointer;
  text-align: left;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease, transform .16s ease;
}

.gif-entry-button:hover,
.gif-entry-button:focus-visible {
  border-color: rgba(var(--pmz-accent-rgb), .62);
  background: linear-gradient(135deg, rgba(var(--pmz-accent-rgb), .2), rgba(255, 255, 255, .055));
  box-shadow: 0 10px 28px rgba(var(--pmz-accent-rgb), .14);
  color: #fff;
  outline: none;
  transform: translateY(-1px);
}

.gif-entry-button:active { transform: translateY(0); }

.gif-entry-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--pmz-accent), var(--pmz-accent-2));
  color: #fff;
  box-shadow: 0 5px 14px rgba(var(--pmz-accent-rgb), .25);
  font-size: .82rem;
}

.gif-entry-copy { display: flex; min-width: 0; flex-direction: column; gap: 1px; }
.gif-entry-copy strong { color: #fff; font-size: .82rem; font-weight: 750; line-height: 1.2; }
.gif-entry-copy small { color: #96909d; font-size: .7rem; line-height: 1.25; }
.gif-entry-arrow { color: #7e7885; font-size: .62rem; transition: color .16s ease, transform .16s ease; }
.gif-entry-button:hover .gif-entry-arrow { color: var(--pmz-accent); transform: translateX(2px); }

.gif-instruction-alert {
  position: absolute !important;
  top: auto !important;
  right: 12px;
  bottom: 54px;
  left: 12px;
  z-index: 20;
  display: flex !important;
  width: auto;
  max-height: none;
  flex-direction: column;
  gap: 7px;
  margin: 0;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  background: rgba(18, 18, 22, .96);
  color: #eeeaf1;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .48);
  font-size: .78rem;
  line-height: 1.35;
  text-align: left;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.fluid_video_wrapper .gif-panel-header {
  display: flex !important;
  width: 100% !important;
  min-width: 0;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
}

.gif-instruction-title {
  flex: 0 0 auto;
  color: #fff;
  font-size: .78rem;
  font-weight: 750;
  white-space: nowrap;
}

.gif-instruction-title i { margin-right: 4px; color: var(--pmz-accent); }
.gif-selection-status {
  display: block;
  overflow: hidden;
  min-width: 0;
  flex: 1 1 auto;
  color: #9a94a1;
  font-size: .68rem;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gif-has-selection .gif-selection-status { color: #74d69f; }
.gif-error .gif-selection-status { color: #ff7b88; }

.gif-cancel {
  display: inline-flex;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0;
  border: 1px solid var(--pmz-border);
  border-radius: 7px;
  background: rgba(255, 255, 255, .045);
  color: #aaa5b1;
  font-size: .7rem;
  cursor: pointer;
}

.gif-cancel:hover,
.gif-cancel:focus-visible {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .11);
  color: #fff;
}

.fluid_video_wrapper .gif-quick-durations { display: none !important; }

@media (min-width: 768px) {
  .fluid_video_wrapper .gif-quick-durations {
    display: flex !important;
    width: 100%;
    align-items: center;
    gap: 5px;
  }

  .gif-quick-label {
    margin-right: 3px;
    color: #77717e;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .gif-quick-duration {
    display: inline-flex;
    min-width: 40px;
    height: 27px;
    align-items: center;
    justify-content: center;
    padding: 0 9px;
    border: 1px solid var(--pmz-border);
    border-radius: 7px;
    background: rgba(255, 255, 255, .035);
    color: #aaa5b1;
    font-size: .65rem;
    font-weight: 750;
    cursor: pointer;
  }

  .gif-quick-duration:hover,
  .gif-quick-duration:focus-visible {
    border-color: rgba(var(--pmz-accent-rgb), .45);
    background: rgba(var(--pmz-accent-rgb), .09);
    color: #fff;
  }

  .gif-quick-duration.is-active {
    border-color: rgba(var(--pmz-accent-rgb), .72);
    background: rgba(var(--pmz-accent-rgb), .18);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(var(--pmz-accent-rgb), .08);
  }
}

.fluid_video_wrapper .gif-range-values {
  display: grid !important;
  width: 100% !important;
  min-width: 0;
  grid-template-columns: minmax(68px, 1fr) 14px minmax(68px, 1fr) auto;
  align-items: center;
  gap: 6px;
}

.gif-time-chip {
  display: flex;
  min-width: 0;
  height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 0 8px;
  border: 1px solid var(--pmz-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.gif-time-chip small { color: #827c89; font-size: .58rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.gif-time-chip strong { overflow: hidden; color: #d9d5dd; font-size: .71rem; font-variant-numeric: tabular-nums; text-overflow: ellipsis; white-space: nowrap; }
.gif-time-chip.is-active { border-color: rgba(var(--pmz-accent-rgb), .7); background: rgba(var(--pmz-accent-rgb), .11); box-shadow: inset 0 0 0 1px rgba(var(--pmz-accent-rgb), .08); }
.gif-time-chip.is-active small { color: var(--pmz-accent); }
.gif-time-chip.is-set { border-color: rgba(255, 255, 255, .16); }
.gif-range-arrow { color: #625c68; font-size: .58rem; text-align: center; }

.gif-proceed {
  height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0 10px;
  border-color: transparent;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pmz-accent), var(--pmz-accent-2));
  color: #fff;
  font-size: .7rem;
  font-weight: 750;
  cursor: pointer;
}

.gif-range-marker,
.gif-range-highlight {
  position: absolute;
  top: 50%;
  z-index: 8;
  pointer-events: none;
  transform: translateY(-50%);
}

.gif-range-marker { width: 2px; height: 14px; margin-left: -1px; border-radius: 2px; background: #fff; box-shadow: 0 0 0 2px rgba(0, 0, 0, .35); }
.gif-range-marker::before { position: absolute; top: -3px; left: 50%; width: 6px; height: 6px; border-radius: 50%; background: inherit; content: ""; transform: translateX(-50%); }
.gif-start-marker { background: var(--pmz-accent); }
.gif-range-highlight { height: 4px; border-radius: 4px; background: rgba(var(--pmz-accent-rgb), .58); }

.gif-proceed:hover,
.gif-proceed:focus-visible {
  color: #fff;
  filter: brightness(1.08);
}

.vote-box,
.video-actions { min-height: 34px; display: flex; align-items: center; }

.video-actions .btn-secondary,
.vote-box .vote-up,
.vote-box .vote-down {
  border: 1px solid var(--pmz-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}

.video-actions .btn-secondary:hover { background: rgba(255, 255, 255, .09); }

.card-sub {
  padding: 12px 14px;
  border: 1px solid var(--pmz-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, .025);
}

.medium-avatar,
.small-avatar { border-radius: 50%; }

.media-attribution {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 13px;
  background: linear-gradient(110deg, rgba(var(--pmz-accent-rgb), .055), rgba(255, 255, 255, .018) 52%);
}

.media-attribution-author,
.media-attribution-profile,
.media-attribution-meta,
.media-attribution-stat {
  display: flex;
  align-items: center;
}

.media-attribution-author { min-width: 0; }

.media-attribution-profile {
  min-width: 0;
  color: #f2eff5;
}

.media-attribution-profile:hover { color: #fff; text-decoration: none; }

.media-attribution-profile .medium-avatar {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  margin-right: 10px;
  border: 1px solid rgba(255, 255, 255, .11);
  object-fit: cover;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .24);
}

.media-attribution-identity {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.15;
}

.media-attribution-label {
  margin-bottom: 3px;
  color: #77727f;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.media-attribution-name {
  overflow: hidden;
  color: #f2eff5;
  font-size: .88rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.media-attribution-subs {
  position: relative;
  flex: 0 0 auto;
  margin-left: 11px;
  padding-left: 12px;
  color: #898491;
  white-space: nowrap;
}

.media-attribution-subs::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #5e5965;
  content: "";
  transform: translateY(-50%);
}

.media-attribution-meta {
  flex: 0 0 auto;
  justify-content: flex-end;
  gap: 14px;
  color: #88838f;
  font-size: .76rem;
}

.media-attribution-meta:empty { display: none; }
.media-attribution-stat { gap: 5px; white-space: nowrap; }
.media-attribution-stat i { color: #6f6a77; font-size: .72rem; }
.media-attribution-stat.text-highlighted { color: #cbc7d0 !important; }

@media (max-width: 575.98px) {
  .media-attribution { align-items: stretch; flex-direction: column; gap: 9px; }
  .media-attribution-author { width: 100%; }
  .media-attribution-profile { flex: 1 1 auto; }
  .media-attribution-meta {
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    padding-top: 9px;
    border-top: 1px solid rgba(255, 255, 255, .055);
  }
  .media-attribution-meta .btn { margin-left: auto !important; }
}

@media (max-width: 389.98px) {
  .well-filters.categories-page-heading {
    display: grid;
    grid-template-columns: 4px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 9px;
    row-gap: 8px;
    height: auto;
    padding-top: 9px !important;
    padding-bottom: 9px !important;
  }
  .well-filters.categories-page-heading::before {
    grid-column: 1;
    grid-row: 1;
    margin-right: 0;
  }
  .categories-page-heading > .float-left:first-of-type {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
  }
  .categories-page-heading > .float-left:not(:first-of-type) {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    margin-left: 0;
  }
  .categories-page-heading .btn-group {
    display: flex;
    width: 100%;
    margin-left: 0;
  }
  .categories-page-heading .btn-group .btn { flex: 1 1 50%; }
  .categories-page-heading > .clearfix { display: none; }
}

.tag {
  display: inline-block;
  margin: 2px;
  padding: 3px 8px;
  border: 1px solid var(--pmz-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  color: #aaa5b1;
}

.pagination { flex-wrap: wrap; justify-content: center; gap: 5px; }
.page-link {
  margin: 0;
  padding: 7px 11px;
  border: 1px solid var(--pmz-border);
  border-radius: 8px !important;
  background: rgba(255, 255, 255, .035);
  color: #aaa5b1;
  font-size: .78rem;
  font-weight: 650;
}
.page-link:hover { border-color: rgba(var(--pmz-accent-rgb), .35); background: rgba(var(--pmz-accent-rgb), .09); color: #fff; }
.page-item.active .page-link { border-color: var(--pmz-accent); background: var(--pmz-accent); color: #fff; }
.page-item.disabled .page-link { opacity: .4; }

.modal-content {
  overflow: hidden;
  border: 1px solid var(--pmz-border);
  border-radius: 12px;
  background: #18181d;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .5);
}
.modal-header, .modal-footer { border-color: var(--pmz-border); }

/* Gallery slideshow */
body.lightbox-open { overflow: hidden !important; }

body .lightboxOverlay {
  position: fixed;
  inset: 0;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(3, 3, 5, .94);
  opacity: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body .lightbox {
  position: fixed;
  inset: 0 !important;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  padding: clamp(8px, 2vw, 20px) 8px;
  overflow: hidden;
  overscroll-behavior: contain;
  box-sizing: border-box;
}

body.lightbox-open .lightbox {
  display: grid !important;
  grid-template-rows: max-content max-content;
  align-content: center;
  justify-items: center;
}

body .lb-outerContainer {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px 12px 0 0;
  background: #0b0b0d !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
  box-sizing: border-box;
}

body .lb-container { padding: 5px; }
body .lightbox .lb-image {
  max-width: calc(100vw - 26px);
  max-height: calc(100dvh - 86px);
  border-radius: 8px 8px 0 0;
  cursor: zoom-in;
  object-fit: contain;
  transform-origin: center center;
  transition: transform .18s ease;
  user-select: none;
  -webkit-user-drag: none;
}
body .lb-container.is-zoomed { touch-action: none; }
body .lb-container.is-zoomed .lb-image { cursor: grab; transition: none; }
body .lb-container.is-panning .lb-image { cursor: grabbing; }
body .lb-container.is-zoomed .lb-nav { visibility: hidden; pointer-events: none; }
body .lb-nav { pointer-events: none; }
body .lb-nav a { pointer-events: auto; }

body .lb-dataContainer {
  min-height: 52px;
  padding: 7px 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background: #121216;
  box-sizing: border-box;
}

body .lb-data { color: #d7d3dc; }
body .lb-data {
  display: flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  padding: 0;
}
body .lb-data .lb-details {
  display: flex;
  width: auto;
  min-width: 0;
  flex: 1;
  float: none;
  flex-direction: column;
  justify-content: center;
  white-space: normal;
}
body .lb-data .lb-caption {
  overflow: hidden;
  font-size: .78rem;
  font-weight: 650;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body .lb-data .lb-number { padding: 0; color: #85808c; font-size: .7rem; line-height: 1.3; }
body .lb-closeContainer {
  display: flex;
  overflow: hidden;
  flex: 0 0 auto;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: rgba(255, 255, 255, .035);
}

body .lb-zoomControls { display: flex; align-items: center; }

body .lb-data .lb-close,
body .lb-data .lb-pause,
body .lb-data .lb-play,
body .lb-data .lb-zoom-in,
body .lb-data .lb-zoom-out,
body .lb-data .lb-zoom-reset {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  float: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: #d8d4dc;
  cursor: pointer;
  font-family: inherit;
  opacity: 1;
  outline: none;
  text-align: center;
  text-decoration: none !important;
  transition: border-color .16s ease, box-shadow .16s ease, filter .16s ease, transform .16s ease;
}

body .lb-data .lb-zoom-in,
body .lb-data .lb-zoom-out,
body .lb-data .lb-zoom-reset {
  border-radius: 0;
  background: transparent;
  font-size: .7rem;
}
body .lb-data .lb-zoom-reset { width: 46px; color: #aaa5b1; font-size: .62rem; font-weight: 750; }
body .lb-data .lb-zoom-reset.is-active { color: #fff; }
body .lb-data .lb-zoom-in:hover,
body .lb-data .lb-zoom-out:hover,
body .lb-data .lb-zoom-reset:hover { background: rgba(255, 255, 255, .08); color: #fff; }
body .lb-data .lb-zoom-in:disabled,
body .lb-data .lb-zoom-out:disabled { cursor: default; opacity: .3; }

body .lb-data .lb-close {
  border-left: 1px solid rgba(255, 255, 255, .1);
  border-radius: 0;
  background: transparent !important;
}

body .lb-data .lb-pause,
body .lb-data .lb-play {
  border-radius: 0;
  background: rgba(var(--pmz-accent-rgb), .16) !important;
  color: #fff;
  box-shadow: inset -1px 0 rgba(var(--pmz-accent-rgb), .2);
}

body .lb-data .lb-pause i,
body .lb-data .lb-play i { font-size: .72rem; line-height: 1; }
body .lb-data .lb-play i { margin-left: 2px; }
body .lb-data .lb-close i { font-size: .9rem; line-height: 1; }

body .lb-data .lb-close:hover { background: rgba(255, 255, 255, .08) !important; color: #fff; }
body .lb-data .lb-pause:hover,
body .lb-data .lb-play:hover { background: rgba(var(--pmz-accent-rgb), .26) !important; color: #fff; }
body .lb-data .lb-close:focus-visible,
body .lb-data .lb-pause:focus-visible,
body .lb-data .lb-play:focus-visible,
body .lb-data .lb-zoom-in:focus-visible,
body .lb-data .lb-zoom-out:focus-visible,
body .lb-data .lb-zoom-reset:focus-visible,
body .lb-nav a:focus-visible { box-shadow: 0 0 0 3px rgba(var(--pmz-accent-rgb), .35); }

body .lb-nav a.lb-prev,
body .lb-nav a.lb-next {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(54px, 12vw, 88px);
  height: auto;
  float: none;
  background: none;
  opacity: .72;
}
body .lb-nav a.lb-prev { left: 0; }
body .lb-nav a.lb-next { right: 0; }
body .lb-nav a.lb-prev::after,
body .lb-nav a.lb-next::after {
  position: absolute;
  top: 50%;
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  background: rgba(8, 8, 11, .62);
  color: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .28);
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
body .lb-nav a.lb-prev::after { left: 12px; content: "\2039"; }
body .lb-nav a.lb-next::after { right: 12px; content: "\203a"; }
body .lb-nav a.lb-prev:hover,
body .lb-nav a.lb-next:hover { opacity: 1; }

/* Short landscape screens use width-first viewing with vertical image travel. */
body.lightbox-open .lightbox.lb-landscape-mode {
  display: block !important;
  padding: 8px 8px 64px;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: auto;
  scrollbar-width: none;
}
body.lightbox-open .lightbox.lb-landscape-mode::-webkit-scrollbar { width: 0; height: 0; }
body .lightbox.lb-landscape-mode .lb-outerContainer { margin: 0 auto; }
body .lightbox.lb-landscape-mode .lb-image {
  max-width: calc(100vw - 20px);
  max-height: none;
}
body .lightbox.lb-landscape-mode .lb-dataContainer {
  position: fixed;
  right: auto;
  bottom: max(6px, env(safe-area-inset-bottom));
  left: 50%;
  z-index: 12;
  width: min(430px, calc(100vw - 16px)) !important;
  min-width: 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .48);
  transform: translateX(-50%);
}
body .lightbox.lb-landscape-mode .lb-data { min-height: 36px; }
body .lightbox.lb-landscape-mode .lb-nav a.lb-prev,
body .lightbox.lb-landscape-mode .lb-nav a.lb-next {
  position: fixed;
  top: 0;
  bottom: 0;
  height: 100dvh;
}
body .lightbox.lb-landscape-mode .lb-nav a.lb-prev { left: 8px; }
body .lightbox.lb-landscape-mode .lb-nav a.lb-next { right: 8px; }

.slideshow-restart {
  display: flex;
  min-height: 220px;
  align-items: center;
  justify-content: center;
  margin: 18px 0;
  border: 1px dashed var(--pmz-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, .018);
}
.slideshow-restart .btn { border-radius: 9px; font-size: .85rem; font-weight: 700; }
.slideshow-attribution {
  min-height: 58px;
  margin-top: 2px;
  padding: 8px 11px;
  border-color: rgba(255, 255, 255, .07);
  background: rgba(255, 255, 255, .018);
}
.slideshow-attribution .media-attribution-profile .medium-avatar {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
}

.footer-container { margin-top: 34px; border-top: 1px solid var(--pmz-border); }
.footer-links { padding: 34px 0 28px; background: #100e14; }
.footer { padding: 14px 0; border-top: 1px solid var(--pmz-border); background: #0d0c10; }
.pmz-footer-grid { display: grid; grid-template-columns: minmax(230px, 1.45fr) repeat(3, minmax(130px, .75fr)); gap: clamp(24px, 4vw, 54px); }
.pmz-footer-brand { max-width: 330px; }
.pmz-footer-logo { display: inline-block; color: #fff !important; font-size: 1.05rem; font-weight: 800; letter-spacing: -.01em; }
.pmz-footer-brand p { max-width: 310px; margin: 10px 0 0; color: #85808c; font-size: .82rem; line-height: 1.65; }
.footer-container h4 { margin: 1px 0 10px; color: #f0edf2; font-size: .82rem; font-weight: 750; letter-spacing: .02em; }
.pmz-footer-nav ul { margin: 0; }
.pmz-footer-nav li + li { margin-top: 2px; }
.footer-links a { display: inline-flex; align-items: center; gap: 8px; padding: 3px 0; color: #8f8996; font-size: .8rem; }
.footer-links a:hover { color: #fff; }
.pmz-social-links i { width: 14px; color: var(--pmz-accent); text-align: center; }
.pmz-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #77717e; font-size: .76rem; }
.pmz-footer-bottom a { color: #9c96a3; }
.pmz-footer-bottom a:hover { color: #fff; }

/* Helpful, crawlable missing-content page. */
.notfound-page { padding-top: 24px; padding-bottom: 18px; }
.notfound-hero {
  display: grid;
  grid-template-columns: minmax(150px, .48fr) minmax(0, 1.52fr);
  overflow: hidden;
  align-items: center;
  gap: clamp(22px, 4vw, 52px);
  margin-bottom: 34px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--pmz-border);
  border-radius: 16px;
  background:
    radial-gradient(430px 210px at 4% 0, rgba(var(--pmz-accent-rgb), .16), transparent 75%),
    linear-gradient(120deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012));
  box-shadow: 0 18px 55px rgba(0, 0, 0, .24);
}
.notfound-code { color: rgba(var(--pmz-accent-rgb), .94); font-size: clamp(4rem, 10vw, 8rem); font-weight: 850; letter-spacing: -.08em; line-height: .82; text-align: center; }
.notfound-eyebrow { margin: 0 0 7px; color: var(--pmz-accent); font-size: .72rem; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.notfound-hero h1 { margin: 0; color: #faf8fb; font-size: clamp(1.45rem, 3vw, 2.35rem); font-weight: 760; letter-spacing: -.025em; line-height: 1.12; }
.notfound-hero-copy > p:not(.notfound-eyebrow) { max-width: 620px; margin: 12px 0 0; color: #a39daa; font-size: .94rem; line-height: 1.55; }
.notfound-search { max-width: 610px; margin-top: 22px; }
.notfound-search .input-group { height: 44px; overflow: hidden; border: 1px solid var(--pmz-border); border-radius: 10px; background: rgba(5, 5, 7, .42); }
.notfound-search .form-control { height: 42px; padding: 0 14px; border: 0 !important; background: transparent !important; }
.notfound-search .btn { display: inline-flex; min-width: 102px; align-items: center; justify-content: center; gap: 7px; border-radius: 0; }
.notfound-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.notfound-actions .btn { display: inline-flex; min-height: 38px; align-items: center; gap: 7px; border-radius: 9px; font-size: .8rem; font-weight: 700; }
.notfound-recommendations { margin-top: 27px; }
.notfound-recommendations .well-filters h2 { font-size: 1.02rem; }

@media (max-width: 767.98px) {
  .container { width: min(100% - 20px, 1323px); }
  #notificationBanner {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: auto;
    width: 48px;
    height: 48px;
    padding: 0 !important;
  }
  #subscribeButton { width: 48px !important; height: 48px; font-size: 1rem; }
  .top-menu { min-height: 54px; }
  .palette-switcher { margin: 0; }
  .top-actions #installAppButton { padding: 0 11px; }
  .palette-menu { position: fixed; top: var(--pmz-header-height, 138px); right: 10px; left: 10px; width: auto; grid-template-columns: repeat(4, 1fr); gap: 4px; }
  .palette-menu:not([hidden]) { display: grid; }
  .palette-option { justify-content: center; padding: 0 6px; }
  .palette-option[aria-checked="true"]::after { display: none; }
  .top-brand { margin: 6px 10px 6px 0; }
  .top-brand img { width: auto; max-width: 128px; height: 42px; }
  .navbar { padding: 6px 0; }
  .pmz-site-header .navbar > .container {
    width: calc(100% - 20px);
    margin-right: auto;
    margin-left: auto;
    flex-wrap: wrap;
    align-items: center;
  }
  .navbar-toggler {
    width: 46px;
    height: 40px;
    margin: 0;
    padding: 4px 8px;
    border-color: var(--pmz-border);
    border-radius: 8px;
  }
  .navbar-dark .navbar-nav .active > .nav-link::after { right: auto; width: 28px; }
  .search-bot-container { width: calc(100% - 56px); margin-left: 10px; }
  .search-bot-container .input-group { width: 100%; }
  .pmz-site-header #navbarSupportedContent {
    position: absolute;
    top: calc(100% + 6px);
    right: 10px;
    left: 10px;
    z-index: 10040;
    max-height: calc(100vh - var(--pmz-header-height, 111px) - 18px);
    max-height: calc(100dvh - var(--pmz-header-height, 111px) - 18px);
    padding: 6px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid var(--pmz-border);
    border-radius: 11px;
    background: rgba(16, 15, 20, .985);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .48);
    overscroll-behavior: contain;
  }
  .pmz-site-header #navbarSupportedContent:not(.show):not(.collapsing) { display: none; }
  .pmz-site-header #navbarSupportedContent .navbar-nav { width: 100%; }
  .pmz-site-header #navbarSupportedContent .nav-item + .nav-item { margin-top: 2px; }
  .pmz-site-header #navbarSupportedContent .nav-link {
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 7px;
  }
  .pmz-site-header #navbarSupportedContent .active > .nav-link {
    background: rgba(var(--pmz-accent-rgb), .13);
  }
  .well-filters h1, .well-filters h2 { font-size: .98rem; }
  .well-filters > .float-left:not(:first-of-type) { margin-left: auto; }
  .well-filters.listing-page-heading { min-height: 52px; margin-bottom: 10px; padding: 8px 10px !important; }
  .well-filters.listing-page-heading::before { height: 24px; margin-right: 9px; }
  .well-filters.tags-page-heading .listing-page-meta {
    flex: 0 0 calc(100% - 24px);
    margin: -2px 0 0 24px;
    line-height: 1.3;
  }
  .container > .well-filters:first-of-type:not(.home-section-heading):not(.listing-page-heading):not(.media-page-heading):not(.slideshow-page-header) { min-height: 52px; margin-bottom: 10px; padding: 8px 10px !important; }
  .container > .well-filters:first-of-type:not(.home-section-heading):not(.listing-page-heading):not(.media-page-heading):not(.slideshow-page-header)::before { height: 24px; margin-right: 9px; }
  .sitemap-page-heading small { margin-left: 10px; font-size: .68rem; }
  .static-page > h2:first-child { min-height: 52px; padding: 8px 10px; font-size: .98rem; }
  .static-page > h2:first-child::before { height: 24px; margin-right: 9px; }
  .well-filters.media-page-heading { min-height: 52px; margin-bottom: 11px; padding: 8px 10px !important; }
  .well-filters.media-page-heading::before { height: 24px; margin-right: 9px; }
  .well-filters.media-page-heading h1 { font-size: .98rem; line-height: 1.3; }
  .video-container-custom { margin-top: .6rem !important; }
  .gif-entry-button { width: 100%; min-width: 0; }
  .gif-instruction-alert {
    right: 8px;
    bottom: 46px;
    left: 8px;
    gap: 5px;
    padding: 7px 8px;
  }
  .fluid_video_wrapper .gif-panel-header { gap: 6px; }
  .gif-instruction-title { font-size: .72rem; }
  .gif-selection-status { font-size: .62rem; }
  .fluid_video_wrapper .gif-range-values { grid-template-columns: minmax(0, 1fr) 10px minmax(0, 1fr) 30px; gap: 4px; }
  .gif-time-chip { height: 30px; gap: 4px; padding: 0 6px; }
  .gif-time-chip small { font-size: .53rem; }
  .gif-time-chip strong { font-size: .66rem; }
  .gif-proceed { width: 30px; height: 30px; gap: 0; padding: 0; overflow: hidden; font-size: 0; }
  .gif-proceed i { font-size: .65rem; }
  .well-action a { min-width: 32px; justify-content: center; padding: 0 9px; }
  .slideshow-page-header { align-items: flex-start; padding-top: 4px !important; }
  .slideshow-back-action a { min-width: 34px; padding: 0 10px; }
  .slideshow-back-action a span { display: none; }
  .slideshow-attribution {
    min-height: 58px;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    padding: 8px 10px;
  }
  .slideshow-attribution .media-attribution-author {
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
  }
  .slideshow-attribution .media-attribution-profile .medium-avatar { margin-right: 9px; }
  .slideshow-attribution .media-attribution-meta {
    width: auto;
    flex: 0 0 auto;
    align-items: flex-end;
    gap: 2px;
    padding-top: 0;
    border-top: 0;
    flex-direction: column;
  }
  .content-row { margin-right: -5px; margin-left: -5px; }
  .content-row > [class*="col-"] { padding-right: 5px !important; padding-left: 5px !important; }
  .thumb-overlay { border-radius: 9px; }
  .content-info { height: 76px; padding-right: 1px; padding-left: 1px; }
  .content-title { font-size: .86rem; }
  .photo-navigation-container { border-radius: 9px; }
  .photo-nav-arrow { width: 38px; height: 44px; opacity: .9; }
  .photo-nav-prev { left: 8px; }
  .photo-nav-next { right: 8px; }
  .fluid_video_wrapper .logo_holder img { max-width: 88px !important; margin: 8px !important; }
  .ad-content, [class*="magical-"] { margin-right: auto; margin-left: auto; }
  #fluid_video_wrapper_video, .video-js, .video-embedded { border-radius: 8px; }
  body .lightbox {
    padding: max(7px, env(safe-area-inset-top)) 5px max(7px, env(safe-area-inset-bottom));
  }
  body .lb-outerContainer { max-width: calc(100vw - 10px); border-radius: 10px 10px 0 0; }
  body .lightbox .lb-image { max-width: calc(100vw - 20px); max-height: calc(100dvh - 76px); }
  body .lb-dataContainer { min-height: 50px; padding: 6px; border-radius: 0 0 10px 10px; }
  body .lb-dataContainer { min-width: min(310px, calc(100vw - 10px)); }
  body .lb-data .lb-caption { max-width: 100%; font-size: .73rem; }
  body .lb-data .lb-number { font-size: .67rem; }
  body .lb-data .lb-close,
  body .lb-data .lb-pause,
  body .lb-data .lb-play,
  body .lb-data .lb-zoom-in,
  body .lb-data .lb-zoom-out { width: 34px; height: 38px; }
  body .lb-data .lb-zoom-reset { width: 42px; height: 38px; }
  body .lb-nav a.lb-prev,
  body .lb-nav a.lb-next { opacity: .92; }
  body .lb-nav a.lb-prev::after,
  body .lb-nav a.lb-next::after { width: 38px; height: 38px; font-size: 1.2rem; }
  body .lb-nav a.lb-prev::after { left: 7px; }
  body .lb-nav a.lb-next::after { right: 7px; }
  .pmz-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 20px; }
  .pmz-footer-brand { max-width: none; grid-column: 1 / -1; }
  .footer-links { padding: 28px 0 24px; }
  .notfound-page { padding-top: 14px; }
  .notfound-hero { grid-template-columns: 1fr; gap: 14px; padding: 24px 18px; text-align: left; }
  .notfound-code { font-size: 3.35rem; text-align: left; }
  .notfound-search .btn { min-width: 46px; width: 46px; }
  .notfound-search .btn span { display: none; }
}

@media (max-width: 575.98px) {
  .pmz-video-grid > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pmz-album-grid > [class*="col-"] {
    display: grid;
    max-width: 100%;
    flex: 0 0 100%;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    margin-bottom: 14px;
  }
  .pmz-album-grid > [class*="col-"] > a { min-width: 0; }
  .pmz-album-grid .content-info { height: auto; min-width: 0; padding: 4px 0 0; }
  .pmz-album-grid .content-title { display: -webkit-box; overflow: hidden; font-size: .9rem; line-height: 1.4; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
  .pmz-album-grid .content-details { margin-top: 8px; }
  .pmz-photo-grid > [class*="col-"] { max-width: 100%; flex: 0 0 100%; }
  .home-section-heading { min-height: 52px; padding: 6px 10px !important; }
  .pmz-footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; }
  .fluid_video_wrapper.fluid_player_layout_default .fluid_controls_right .fluid_control_volume_container,
  .fluid_video_wrapper.fluid_player_layout_default .fluid_controls_right .fluid_button_mini_player {
    display: none !important;
  }
  .fluid_video_wrapper.fluid_player_layout_default .fluid_controls_right > .fluid_button {
    margin-left: 5px !important;
  }
  .fluid_video_wrapper.fluid_player_layout_default .fluid_control_duration {
    padding-right: 4px !important;
    padding-left: 4px !important;
    font-size: 11px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .thumb-overlay { animation: none; }
}
