/*
Theme Name: WP Vegas
Theme URI: https://freebuff.com/
Author: Freebuff
Author URI: https://freebuff.com/
Description: WP Vegas — a premium, fast WordPress classic theme for curated adult video libraries and WP-Script importer fields. A Las Vegas Strip-at-night design on a solid black base with a gold and royal-purple neon palette (WCAG AA contrast), custom SVG graphics (stars, card suits, dice, marquee), and absolutely no blinking or flashing elements. Includes age-gate, favorites, watch-later, following, history, reports, playlists, and sharing.
Version: 2.0.0
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: wp-vegas
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: dark, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/*
 * WP Vegas design tokens — Las Vegas Strip at night.
 * Base is solid black; surfaces are near-black layered above it. The gold and
 * royal-purple accents are checked against WCAG AA: gold #ffd23f ≈ 12.6:1 and
 * royal purple #b26bff ≈ 6.4:1 on black, so both pass for normal text.
 * All neon glows are static (always-on) — there are no blinking or flashing
 * animations anywhere in the theme, and prefers-reduced-motion is honored.
 *
 * --vegas-gold is the PRIMARY accent and --vegas-purple the SECONDARY accent
 * (the names are retained for stability even when a Customizer palette such
 * as Pink & Cyan, Red & Gold, or Cyan & Magenta swaps in different hues). The
 * Customizer overrides the tokens below via an inline :root block; keep every
 * palette WCAG-AA safe on the black base.
 */
:root {
  color-scheme: dark;
  --vegas-black: #000000;
  --vegas-surface: #101015;
  --vegas-surface-2: #17171f;
  --vegas-surface-3: #1e1e29;
  --vegas-line: rgba(var(--vegas-gold-rgb), .18);
  --vegas-line-soft: rgba(255, 255, 255, .09);
  --vegas-gold: #ffd23f;
  --vegas-gold-bright: #ffe98a;
  --vegas-gold-deep: #c9a227;
  --vegas-purple: #b26bff;
  --vegas-purple-deep: #8b3dff;
  --vegas-gold-rgb: 255, 210, 63;
  --vegas-purple-rgb: 178, 107, 255;
  --vegas-purple-deep-rgb: 139, 61, 255;
  --vegas-purple-soft: rgba(var(--vegas-purple-rgb), .16);
  --vegas-white: #ffffff;
  --vegas-text: #f4f4f8;
  --vegas-muted: #a8a8b6;
  --vegas-green: #3ddc84;
  --vegas-red: #ff6b6b;
  --vegas-glow-gold: 0 0 6px rgba(var(--vegas-gold-rgb), .55), 0 0 16px rgba(var(--vegas-gold-rgb), .28);
  --vegas-glow-purple: 0 0 6px rgba(var(--vegas-purple-rgb), .5), 0 0 16px rgba(var(--vegas-purple-deep-rgb), .26);
  --vegas-star-accent: rgba(var(--vegas-gold-rgb), .6);
  --vegas-star-accent-2: rgba(var(--vegas-purple-rgb), .6);
  --vegas-width: 1440px;
  --vegas-sidebar: 236px;
  --vegas-radius: 14px;
  --vegas-shadow: 0 18px 44px rgba(0, 0, 0, .5);
  --vegas-shadow-hover: 0 26px 58px rgba(0, 0, 0, .62);
  --vegas-font-display: "Bebas Neue", "Arial Narrow", "Oswald", sans-serif;
  --vegas-font-body: "Rubik", system-ui, -apple-system, "Segoe UI", sans-serif;
  --vegas-desktop-gutter: clamp(60px, 5vw, 80px);
  --vegas-gradient-gold: linear-gradient(180deg, #ffe98a 0%, #ffd23f 55%, #c9a227 100%);
  --vegas-gradient-purple: linear-gradient(180deg, #d4a5ff 0%, #b26bff 55%, #8b3dff 100%);
}

/* Base reset and typography */
html {
  background: var(--vegas-black);
  color: var(--vegas-text);
  font-size: 100%;
  scroll-behavior: smooth;
}

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

/* Keep anchor and keyboard-focus targets clear of the sticky header. */
:where(h1, h2, h3, h4, h5, h6, [id]) {
  scroll-margin-top: 96px;
}

/* Remove the mobile double-tap zoom delay and make taps feel intentional. */
button,
a,
input,
select,
textarea,
label {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(var(--vegas-gold-rgb), .22);
}

html,
body {
  background: var(--vegas-black);
}

body {
  position: relative;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background: var(--vegas-black);
  color: var(--vegas-text);
  font-family: var(--vegas-font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Static starfield over the solid black canvas (fixed, no animation). */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(255, 255, 255, .5), transparent),
    radial-gradient(1px 1px at 28% 8%, var(--vegas-star-accent), transparent),
    radial-gradient(1.5px 1.5px at 41% 34%, rgba(255, 255, 255, .42), transparent),
    radial-gradient(1px 1px at 55% 12%, rgba(255, 255, 255, .5), transparent),
    radial-gradient(1px 1px at 68% 27%, var(--vegas-star-accent), transparent),
    radial-gradient(1.5px 1.5px at 79% 9%, rgba(255, 255, 255, .45), transparent),
    radial-gradient(1px 1px at 90% 18%, var(--vegas-star-accent-2), transparent),
    radial-gradient(1px 1px at 8% 44%, rgba(255, 255, 255, .4), transparent),
    radial-gradient(1.5px 1.5px at 18% 58%, var(--vegas-star-accent), transparent),
    radial-gradient(1px 1px at 33% 47%, rgba(255, 255, 255, .35), transparent),
    radial-gradient(1px 1px at 47% 62%, var(--vegas-star-accent-2), transparent),
    radial-gradient(1.5px 1.5px at 62% 44%, rgba(255, 255, 255, .4), transparent),
    radial-gradient(1px 1px at 74% 56%, var(--vegas-star-accent), transparent),
    radial-gradient(1px 1px at 86% 40%, rgba(255, 255, 255, .38), transparent),
    radial-gradient(1.5px 1.5px at 94% 66%, var(--vegas-star-accent-2), transparent),
    radial-gradient(1px 1px at 24% 74%, rgba(255, 255, 255, .35), transparent),
    radial-gradient(1px 1px at 57% 78%, var(--vegas-star-accent), transparent),
    radial-gradient(1px 1px at 71% 82%, rgba(255, 255, 255, .3), transparent),
    radial-gradient(1.5px 1.5px at 40% 88%, var(--vegas-star-accent-2), transparent),
    radial-gradient(1px 1px at 88% 90%, rgba(255, 255, 255, .3), transparent);
  opacity: .55;
}

img,
video,
iframe,
object,
embed {
  max-width: 100%;
  vertical-align: middle;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  border-radius: var(--vegas-radius);
}

button {
  color: inherit;
}

p,
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

ul,
ol {
  padding-left: 0;
  list-style: none;
}

a {
  color: var(--vegas-gold);
  text-decoration: none;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, filter .18s ease;
}

a:hover,
a:focus {
  color: var(--vegas-gold-bright);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--vegas-gold);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px rgba(var(--vegas-gold-rgb), .18);
}

::selection {
  background: var(--vegas-gold);
  color: var(--vegas-black);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reveal the skip link when a keyboard user tabs to it. */
.skip-link.screen-reader-text:focus {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 10000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  border-radius: 8px;
  background: var(--vegas-gold);
  color: var(--vegas-black);
  box-shadow: var(--vegas-glow-gold);
}

/* Shared page frame */
.container,
.center-hold,
.header-inner,
.navigation,
.content,
.footer-wrap {
  width: calc(100% - (var(--vegas-desktop-gutter) * 2));
  margin-right: auto;
  margin-left: auto;
}

.container {
  position: relative;
  max-width: var(--vegas-width);
}

.content {
  width: 100%;
  padding-top: clamp(28px, 4vw, 52px);
  padding-bottom: 64px;
}

/* ============================================================
   Header — solid black shell with neon accents
   ============================================================ */
.site-header {
  position: relative;
  width: calc(100% - (var(--vegas-desktop-gutter) * 2));
  max-width: var(--vegas-width);
  margin: 20px auto 0;
}

.site-header-shell {
  position: relative;
  overflow: visible;
  border: 1px solid var(--vegas-line);
  border-radius: var(--vegas-radius);
  background: var(--vegas-surface);
  box-shadow: var(--vegas-shadow), inset 0 1px 0 rgba(255, 255, 255, .04);
  animation: vegas-header-rise .55s ease-out both;
}

@keyframes vegas-header-rise {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.site-header-shell > .header {
  border-bottom: 1px solid var(--vegas-line);
}

.site-header-shell > nav {
  border-top: 1px solid var(--vegas-line-soft);
}

.site-header-shell .header-inner,
.site-header-shell nav .navigation {
  width: calc(100% - 48px);
}

/* Slim utility row: account actions on the right. */
.utility-row {
  display: block;
  min-height: 34px;
}

.utility-inner {
  display: flex;
  width: calc(100% - (var(--vegas-desktop-gutter) * 2));
  max-width: var(--vegas-width);
  min-height: 34px;
  align-items: center;
  justify-content: flex-end;
  margin: 0 auto;
}

.utility-inner .menu-auth {
  margin-left: auto;
}

/* Header and search */
.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 18px;
}

.logo {
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(100%, 320px);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* SVG marquee mark + site title wordmark */
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--vegas-gold);
}

.site-logo-mark {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  color: var(--vegas-gold);
  filter: drop-shadow(0 0 8px rgba(var(--vegas-gold-rgb), .5));
}

.site-title,
.custom-logo-link {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  color: var(--vegas-white);
}

.site-title {
  overflow-wrap: anywhere;
  font-family: var(--vegas-font-display);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 400;
  letter-spacing: .07em;
  line-height: 1;
  text-transform: uppercase;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .site-title {
    background: var(--vegas-gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 10px rgba(var(--vegas-gold-rgb), .4));
  }
}

.site-title:hover,
.site-title:focus,
.custom-logo-link:hover,
.custom-logo-link:focus {
  color: var(--vegas-gold-bright);
}

.custom-logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 62px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(var(--vegas-gold-rgb), .25));
}

/* 18+ adult-content badge */
.age-badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border: 1px solid var(--vegas-gold);
  border-radius: 6px;
  background: var(--vegas-black);
  color: var(--vegas-gold);
  font-family: var(--vegas-font-display);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1;
  white-space: nowrap;
  box-shadow: var(--vegas-glow-gold);
}

.search {
  flex: 0 1 300px;
  min-width: 0;
  width: min(100%, 300px);
  margin-left: auto;
}

.search,
.search form,
.search-text,
.search-text input {
  min-width: 0;
}

.search form {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  margin: 0;
  border-radius: 999px;
}

.search form:focus-within {
  overflow: visible;
}

.search-text {
  width: 100%;
}

.search-text input {
  display: block;
  width: 100%;
  height: 36px;
  padding: 0 56px 0 16px;
  border: 1px solid var(--vegas-line-soft);
  border-radius: 999px;
  background: var(--vegas-black);
  color: var(--vegas-text);
  font-size: 12px;
  line-height: 36px;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.search-text input::placeholder {
  color: var(--vegas-muted);
}

.search-text input:hover,
.search-text input:focus {
  border-color: var(--vegas-gold);
  background: var(--vegas-surface-2);
  box-shadow: var(--vegas-glow-gold);
  outline: 0;
}

.site-header .search-text input:focus-visible {
  outline: 3px solid var(--vegas-gold);
  outline-offset: 3px;
}

.search .search-button,
#search_form button.search-button,
.search form button.search-button {
  position: absolute;
  top: 50%;
  right: 3px;
  z-index: 1;
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  width: 48px;
  min-width: 48px;
  height: calc(100% - 6px);
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  transform: translateY(-50%);
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--vegas-gold);
  background-clip: padding-box;
  box-shadow: var(--vegas-glow-gold);
  color: var(--vegas-black);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  overflow: hidden;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
}

.search .search-button:hover,
.search .search-button:focus {
  background: var(--vegas-gold-bright);
  color: var(--vegas-black);
}

.show_search {
  display: none;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--vegas-gold);
}

/* Primary navigation */
nav {
  background: var(--vegas-surface);
}

nav .navigation {
  display: flex;
  min-height: 52px;
  align-items: center;
}

.navigation .button {
  display: none;
  padding: 10px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.navigation .primary {
  display: flex;
  width: auto;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0;
}

.navigation .primary > li {
  position: relative;
}

.navigation .primary > li > a {
  display: block;
  padding: 17px 17px 15px;
  border-bottom: 3px solid transparent;
  color: var(--vegas-text);
  font-family: var(--vegas-font-display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .09em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color .18s ease;
}

.navigation .primary > li:first-child > a {
  padding-left: 0;
}

.navigation .primary > li > a:hover,
.navigation .primary > li > a:focus,
.navigation .primary > li.current-menu-item > a,
.navigation .primary > li.current_page_item > a {
  border-bottom-color: var(--vegas-gold);
  color: var(--vegas-gold);
  text-shadow: 0 0 14px rgba(var(--vegas-gold-rgb), .55);
}

.navigation .primary li ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  display: none;
  min-width: 200px;
  margin: 0;
  padding: 6px 0;
  border: 1px solid var(--vegas-line);
  border-radius: 10px;
  background: var(--vegas-surface-2);
  box-shadow: var(--vegas-shadow), var(--vegas-glow-purple);
}

.navigation .primary li:hover > ul,
.navigation .primary li:focus-within > ul {
  display: block;
}

.navigation .primary li ul li {
  position: relative;
}

.navigation .primary li ul a {
  display: block;
  padding: 10px 14px;
  color: var(--vegas-text);
  font-size: 13px;
  white-space: nowrap;
}

.navigation .primary li ul a:hover,
.navigation .primary li ul a:focus {
  background: var(--vegas-purple-soft);
  color: var(--vegas-gold);
}

.navigation .primary li ul ul {
  top: -7px;
  left: 100%;
}

.ico-bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: var(--vegas-gold);
}

/* Account actions (logged-in menu / login-signup links) */
.menu-auth {
  flex: 0 0 auto;
  margin-left: auto;
}

.member-links ul {
  display: flex;
  justify-content: flex-end;
  margin: 0;
}

.menu-auth ul.auth-pill {
  display: flex;
  width: auto;
  max-width: 100%;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.menu-auth ul.auth-pill li,
.menu-auth ul.auth-pill li:last-child {
  border: 0;
}

.menu-auth ul.auth-pill li + li {
  border-left: 0;
}

.menu-auth ul.auth-pill a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 12px;
  border: 1px solid var(--vegas-line);
  border-radius: 999px;
  background: var(--vegas-purple-soft);
  color: var(--vegas-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color .18s ease, color .18s ease, transform .18s ease, border-color .18s ease;
}

.menu-auth ul.auth-pill a:hover,
.menu-auth ul.auth-pill a:focus {
  border-color: var(--vegas-gold);
  background: var(--vegas-gold);
  color: var(--vegas-black);
  transform: translateY(-1px);
  box-shadow: var(--vegas-glow-gold);
}

/* Main two-column layout */
.main-content {
  display: grid;
  grid-template-columns: var(--vegas-sidebar) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

/* Single videos: taxonomy rail | player | fixed-width ad rail. */
.main-content.single-video-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
  gap: clamp(22px, 3vw, 38px);
}

.main-content.single-video-layout > .single-taxonomy-sidebar {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  padding: 22px 18px 24px 0;
  border-right: 1px solid var(--vegas-line-soft);
  border-left: 0;
}

.main-content.single-video-layout > .main-container {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.main-content.single-video-layout > .ads-sidebar {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  max-width: 300px;
  min-width: 0;
  padding: 22px 0 24px 22px;
  border-right: 0;
  border-left: 1px solid var(--vegas-line-soft);
}

.main-container {
  min-width: 0;
}

.sidebar {
  min-width: 0;
  padding: 22px 24px 24px 0;
  border-right: 0;
}

.sidebar .headline,
.main-container .headline {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
}

.headline h1,
.headline h2,
.main-container > h1 {
  margin: 0;
  color: var(--vegas-white);
  font-family: var(--vegas-font-display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1.15;
  text-transform: uppercase;
}

.sidebar .headline h2 {
  color: var(--vegas-gold);
  font-family: var(--vegas-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sidebar .headline h2 a {
  color: var(--vegas-gold);
}

.sidebar .headline h2 a:hover,
.sidebar .headline h2 a:focus {
  color: var(--vegas-gold-bright);
  text-shadow: 0 0 12px rgba(var(--vegas-gold-rgb), .5);
}

.sidebar .list {
  margin: 0 0 32px;
}

.sidebar .list li {
  border-bottom: 1px solid var(--vegas-line-soft);
}

.sidebar .list li a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  color: var(--vegas-text);
  font-size: 12px;
  line-height: 1.35;
  transition: padding-left .18s ease, color .18s ease;
}

.sidebar .list li a:hover,
.sidebar .list li a:focus {
  padding-left: 6px;
  color: var(--vegas-gold);
}

.sidebar .rating,
.rating,
.views {
  color: var(--vegas-muted);
  font-size: 11px;
}

/* Topic / tag rails */
.menu-container {
  position: relative;
  overflow: hidden;
  margin: 0 0 26px;
  border: 0;
}

.tag-scroller,
.tag-scroller .scroll-container,
.tag-scroller .menu,
.tag-scroller .menu a {
  border: 0 !important;
}

.scroll-container {
  overflow-x: auto;
  scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.menu {
  display: flex;
  width: max-content;
  gap: 8px;
  margin: 0;
  padding: 0 0 14px;
  white-space: nowrap;
}

.menu a {
  display: block;
  padding: 8px 13px;
  border: 0 !important;
  border-radius: 999px;
  background: var(--vegas-purple-soft);
  color: var(--vegas-purple);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .025em;
  line-height: 1.2;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.menu a:hover,
.menu a:focus {
  border: 0 !important;
  background: var(--vegas-gold);
  color: var(--vegas-black);
  transform: translateY(-1px);
  box-shadow: var(--vegas-glow-gold);
}

.scroll-button {
  position: absolute;
  top: 0;
  bottom: 14px;
  width: 36px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--vegas-black) 60%, rgba(0, 0, 0, 0));
  color: var(--vegas-gold);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.scroll-button:hover,
.scroll-button:focus {
  background: var(--vegas-surface-2);
  color: var(--vegas-gold-bright);
}

.scroll-left {
  left: 0;
}

.scroll-right {
  right: 0;
  background: linear-gradient(270deg, var(--vegas-black) 60%, rgba(0, 0, 0, 0));
}

/* Featured slider (premium/featured home carousel) */
.featured-slider {
  margin-bottom: 30px;
}

.featured-slider__headline {
  justify-content: space-between;
}

.featured-slider__controls {
  display: inline-flex;
  gap: 8px;
}

.featured-slider__arrow {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--vegas-line);
  border-radius: 50%;
  background: var(--vegas-surface-2);
  color: var(--vegas-gold);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.featured-slider__arrow:hover,
.featured-slider__arrow:focus {
  border-color: var(--vegas-gold);
  background: var(--vegas-gold);
  color: var(--vegas-black);
  box-shadow: var(--vegas-glow-gold);
}

.featured-slider__viewport {
  overflow: hidden;
}

.featured-slider__track {
  display: flex;
  gap: 20px;
}

.featured-slider__slide {
  position: relative;
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 0;
}

.featured-slider__slide .item {
  height: 100%;
}

.featured-slider__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  padding: 5px 9px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
}

.featured-slider__badge.is-premium {
  background: var(--vegas-gold);
  color: var(--vegas-black);
  box-shadow: var(--vegas-glow-gold);
}

.featured-slider__badge.is-featured {
  background: var(--vegas-purple);
  color: var(--vegas-black);
  box-shadow: var(--vegas-glow-purple);
}

/* Browse-mode control row */
.browse-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
  background: transparent;
}

.browse-controls a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid var(--vegas-line);
  border-radius: 999px;
  background: var(--vegas-surface-2);
  color: var(--vegas-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.browse-controls a:hover,
.browse-controls a:focus {
  border-color: var(--vegas-gold);
  color: var(--vegas-gold);
}

.browse-controls a.is-active {
  border-color: var(--vegas-gold);
  background: var(--vegas-gold);
  color: var(--vegas-black);
  box-shadow: var(--vegas-glow-gold);
}

/* Search filters (sort / min duration) */
.search-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin: 0 0 22px;
  padding: 14px 16px;
  border: 1px solid var(--vegas-line-soft);
  border-radius: var(--vegas-radius);
  background: var(--vegas-surface);
}

.search-filters label {
  color: var(--vegas-muted);
  font-size: 12px;
  font-weight: 600;
}

.search-filters select,
.search-filters input[type="number"] {
  min-height: 36px;
  padding: 6px 10px;
  border: 1px solid var(--vegas-line);
  border-radius: 8px;
  background: var(--vegas-black);
  color: var(--vegas-text);
  font-size: 12px;
}

/* Video cards */
.box {
  margin-bottom: 32px;
}

.list-videos .margin-fix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 20px;
}

.list-videos .item {
  min-width: 0;
  content-visibility: auto;
  contain-intrinsic-size: 300px 270px;
}

.item .img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--vegas-radius);
  background: var(--vegas-surface-3);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .45);
  isolation: isolate;
  transition: box-shadow .24s ease, transform .24s ease;
}

.item:hover .img {
  box-shadow: var(--vegas-shadow-hover), var(--vegas-glow-purple);
  transform: translateY(-5px);
}

.item .img > a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.item .img > a .thumb,
.item .img > a .thumb-placeholder {
  pointer-events: auto;
}

.item .img > a .duration {
  pointer-events: none;
}

.item .thumb,
.item .thumb-placeholder {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.item .thumb {
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), filter .35s ease, opacity .2s ease;
}

.item:hover .thumb {
  filter: brightness(.82) saturate(1.1);
  transform: scale(1.045);
}

.thumb-placeholder {
  background: linear-gradient(135deg, var(--vegas-surface-2), var(--vegas-surface-3));
}

.thumb-placeholder-icon {
  position: absolute;
  inset: 0;
  width: 46px;
  height: 46px;
  margin: auto;
  color: var(--vegas-gold);
  opacity: .55;
  pointer-events: none;
}

.preview-video,
.preview-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.preview-slideshow {
  z-index: 2;
}

.img.preview-active .preview-video,
.img.preview-active .preview-slideshow {
  opacity: 1;
}

.img.preview-active .thumb {
  opacity: 0;
}

.item .duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  padding: 6px 8px;
  border: 1px solid rgba(var(--vegas-gold-rgb), .4);
  border-radius: 6px;
  background: rgba(0, 0, 0, .82);
  color: var(--vegas-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  pointer-events: none;
}

.preview-play {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 4;
  display: grid !important;
  visibility: visible !important;
  width: 52px;
  height: 52px;
  padding: 0;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  background: var(--vegas-purple);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .4), var(--vegas-glow-purple);
  color: var(--vegas-black);
  cursor: pointer;
  opacity: .96 !important;
  transition: opacity .18s ease, transform .18s ease, background-color .18s ease;
}

.play-triangle {
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.preview-play:hover,
.preview-play:focus-visible,
.preview-play.is-active {
  background: var(--vegas-gold);
  box-shadow: 0 13px 28px rgba(0, 0, 0, .46), var(--vegas-glow-gold);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08);
}

.img.preview-active .preview-play {
  opacity: .32 !important;
}

.video-overlay {
  pointer-events: auto;
}

.item .title {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 13px;
  color: var(--vegas-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color .18s ease;
}

.item .title:hover,
.item .title:focus {
  color: var(--vegas-gold);
}

.item .wrap {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 9px;
  color: var(--vegas-muted);
  font-size: 11px;
  letter-spacing: .02em;
  line-height: 1.25;
}

.item .rating.positive {
  color: var(--vegas-gold);
  font-weight: 700;
}

.item .is-hd {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 5px 7px;
  border-radius: 5px;
  background: var(--vegas-gold);
  color: var(--vegas-black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1;
}

.item .ico-fav-0,
.item .ico-fav-1 {
  position: absolute;
  right: 10px;
  z-index: 2;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--vegas-white);
  cursor: pointer;
  opacity: 0;
  transition: opacity .18s ease, background-color .18s ease, transform .18s ease, color .18s ease;
}

.item .ico-fav-0 {
  top: 10px;
}

.item .ico-fav-1 {
  top: 48px;
}

.item:hover .ico-fav-0,
.item:hover .ico-fav-1,
.item .ico-fav-0.is-active,
.item .ico-fav-1.is-active,
.item .ico-fav-0:focus-visible,
.item .ico-fav-1:focus-visible {
  opacity: 1;
}

.item .ico-fav-0:hover,
.item .ico-fav-1:hover,
.item .ico-fav-0.is-active,
.item .ico-fav-1.is-active {
  background: var(--vegas-gold);
  color: var(--vegas-black);
  transform: scale(1.06);
}

.item .ico-fav-0::before,
.item .ico-fav-1::before {
  display: grid;
  height: 100%;
  place-items: center;
  color: currentColor;
  font-size: 17px;
  line-height: 1;
}

.item .ico-fav-0::before {
  content: "♡";
}

.item .ico-fav-1::before {
  content: "◷";
  font-size: 16px;
}

/* Pagination */
.pagination {
  display: flex;
  width: auto;
  max-width: 100%;
  min-height: 0;
  justify-content: center;
  margin: 28px auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pagination ul,
.pagination .nav-links {
  display: flex;
  width: max-content;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pagination li {
  display: block;
  margin: 0;
  padding: 0;
}

.pagination a,
.pagination span {
  display: inline-flex;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid var(--vegas-line);
  border-radius: 999px;
  background: var(--vegas-surface-2);
  box-shadow: none;
  color: var(--vegas-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .025em;
  line-height: 1.2;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.pagination .prev,
.pagination .next {
  min-width: 82px;
}

.pagination a:hover,
.pagination a:focus {
  border-color: var(--vegas-gold);
  background: var(--vegas-gold);
  color: var(--vegas-black);
  box-shadow: var(--vegas-glow-gold);
}

.pagination .current {
  background: var(--vegas-purple-soft);
  border-color: var(--vegas-purple);
  color: var(--vegas-purple);
}

/* Bare pagination class emitted by archive and homepage renderers. */
nav.pagination.pagination--bare,
nav.navigation.pagination.pagination--bare,
.pagination.pagination--bare,
.pagination--bare {
  display: flex !important;
  width: fit-content !important;
  max-width: 100% !important;
  min-height: 0 !important;
  margin: 28px auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.pagination--bare ul,
.pagination--bare .nav-links {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pagination--bare a,
.pagination--bare span {
  border: 1px solid var(--vegas-line) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

.pagination--bare a:hover,
.pagination--bare a:focus {
  background: var(--vegas-gold) !important;
  color: var(--vegas-black) !important;
}

.pagination--bare .current {
  background: var(--vegas-purple-soft) !important;
  border-color: var(--vegas-purple) !important;
  color: var(--vegas-purple) !important;
}

/* Text and entry content */
.text,
.entry-content {
  color: var(--vegas-text);
  font-size: 14px;
  line-height: 1.75;
}

p.text {
  margin-bottom: 16px;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content img,
.entry-content video,
.entry-content iframe {
  max-width: 100%;
}

/* Single-video player and controls */
.single-video .headline {
  margin-bottom: 20px;
}

.single-video .headline h1 {
  max-width: 850px;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: .05em;
}

.vegas-player {
  width: 100%;
  margin-bottom: 22px;
  border: 1px solid var(--vegas-line);
  border-radius: 16px;
  background: var(--vegas-black) !important;
  box-shadow: var(--vegas-shadow), var(--vegas-glow-purple);
  overflow: hidden;
}

.vegas-player video,
.vegas-player iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: inherit;
  background: transparent !important;
}

.vegas-player-embed {
  max-width: 100%;
}

.vegas-player-embed iframe {
  min-height: 0;
}

.vegas-player-embed-fluid {
  aspect-ratio: 16 / 9;
  background: var(--vegas-black);
}

.vegas-player-embed-fluid iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.vegas-player-native video {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  background: transparent;
}

.vegas-player-empty {
  display: grid;
  min-height: 150px;
  padding: 25px;
  place-items: center;
  background: var(--vegas-surface);
  color: var(--vegas-muted);
}

.video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin: 0 0 28px;
  padding: 13px;
  border: 1px solid var(--vegas-line);
  border-radius: 12px;
  background: var(--vegas-surface);
  box-shadow: var(--vegas-shadow);
  color: var(--vegas-muted);
  font-size: 12px;
}

.video-meta > span {
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--vegas-surface-2);
}

.video-meta button {
  padding: 8px 12px;
  border: 1px solid var(--vegas-line);
  border-radius: 999px;
  background: var(--vegas-purple-soft);
  color: var(--vegas-purple);
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

.video-meta button:hover,
.video-meta button:focus,
[data-vote]:hover,
[data-vote]:focus,
[data-subscribe-to]:hover,
[data-subscribe-to]:focus,
[data-unsubscribe-to]:hover,
[data-unsubscribe-to]:focus {
  border-color: var(--vegas-gold);
  background: var(--vegas-gold);
  color: var(--vegas-black);
  transform: translateY(-1px);
  box-shadow: var(--vegas-glow-gold);
}

.video-meta button.is-active,
[data-vote].is-active,
[data-subscribe-to].is-active,
[data-unsubscribe-to].is-active {
  border-color: var(--vegas-purple);
  background: var(--vegas-purple-soft);
  color: var(--vegas-purple);
}

[data-vote],
[data-subscribe-to],
[data-unsubscribe-to] {
  cursor: pointer;
}

.single-favorite span {
  font-size: 11px;
}

/* Single taxonomy box */
.single-taxonomies {
  display: grid;
  gap: 8px;
  margin: 26px 0 32px;
  padding: 18px 20px;
  border: 1px solid var(--vegas-line);
  border-left: 4px solid var(--vegas-gold);
  border-radius: 0 12px 12px 0;
  background: var(--vegas-surface);
  box-shadow: var(--vegas-shadow);
  color: var(--vegas-muted);
  font-size: 12px;
}

.single-taxonomy strong {
  margin-right: 5px;
  color: var(--vegas-gold);
}

.single-taxonomy a {
  color: var(--vegas-gold);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(var(--vegas-gold-rgb), .35);
  text-underline-offset: 3px;
}

/* Follow control (taxonomy follow button) */
.follow-control {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid var(--vegas-line);
  border-radius: 999px;
  background: var(--vegas-surface-2);
  color: var(--vegas-purple);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.follow-control:hover,
.follow-control:focus,
.follow-control.is-active {
  border-color: var(--vegas-gold);
  background: var(--vegas-gold);
  color: var(--vegas-black);
  box-shadow: var(--vegas-glow-gold);
}

/* Related videos */
.related-videos {
  margin-top: 34px;
}

.related-videos .headline {
  margin-bottom: 20px;
}

/* Forms and WordPress comments */
form p {
  margin-bottom: 16px;
}

form label {
  display: block;
  margin-bottom: 6px;
  color: var(--vegas-text);
  font-size: 13px;
  font-weight: 600;
}

form .textfield,
form input[type="text"],
form input[type="email"],
form input[type="password"],
form textarea,
form select {
  width: 100%;
  max-width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--vegas-line);
  background: var(--vegas-black);
  color: var(--vegas-text);
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

form .textfield:hover,
form .textfield:focus,
form input:hover,
form input:focus,
form textarea:hover,
form textarea:focus,
form select:hover,
form select:focus {
  border-color: var(--vegas-gold);
  box-shadow: var(--vegas-glow-gold);
  outline: 0;
}

form .submit,
form input[type="submit"],
form button[type="submit"] {
  min-width: 112px;
  padding: 11px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--vegas-gold);
  box-shadow: var(--vegas-glow-gold);
  color: var(--vegas-black);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

form .submit:hover,
form .submit:focus,
form input[type="submit"]:hover,
form input[type="submit"]:focus,
form button[type="submit"]:hover,
form button[type="submit"]:focus {
  background: var(--vegas-gold-bright);
  color: var(--vegas-black);
}

.block-comments {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--vegas-line-soft);
}

.block-comments .headline {
  color: var(--vegas-white);
  font-size: 18px;
  font-weight: 700;
}

.comment-list {
  margin: 20px 0 28px;
}

.comment-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--vegas-line-soft);
}

.comment-list .comment-meta {
  margin-bottom: 8px;
  color: var(--vegas-muted);
  font-size: 12px;
}

/* Empty/error states */
.vegas-empty,
.page-error {
  padding: 42px 24px;
  border: 1px dashed var(--vegas-line);
  border-radius: var(--vegas-radius);
  background: var(--vegas-surface);
  text-align: center;
}

.vegas-empty h2,
.page-error + .headline h1 {
  margin-bottom: 8px;
  color: var(--vegas-white);
}

.vegas-empty p {
  color: var(--vegas-muted);
}

.page-error {
  margin-bottom: 20px;
  background: var(--vegas-black);
  color: var(--vegas-gold);
  font-family: var(--vegas-font-display);
  font-size: clamp(64px, 12vw, 120px);
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1;
  text-shadow: 0 0 24px rgba(var(--vegas-gold-rgb), .5);
}

.page-404-art {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin: 0 0 22px;
  color: var(--vegas-gold);
}

.page-404-art svg {
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 0 12px rgba(var(--vegas-gold-rgb), .45));
}

.page-404-art svg:nth-child(2) {
  color: var(--vegas-purple);
  filter: drop-shadow(0 0 12px rgba(var(--vegas-purple-rgb), .5));
}

/* Category directory (categories page) */
.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.directory-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--vegas-line);
  border-radius: var(--vegas-radius);
  background: var(--vegas-surface);
  box-shadow: var(--vegas-shadow);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.directory-card:hover,
.directory-card:focus {
  border-color: var(--vegas-gold);
  box-shadow: var(--vegas-shadow), var(--vegas-glow-gold);
  transform: translateY(-3px);
}

.directory-card-name {
  color: var(--vegas-white);
  font-size: 15px;
  font-weight: 700;
}

.directory-card-count {
  color: var(--vegas-muted);
  font-size: 11px;
}

/* Login/signup dialogs */
.vegas-modal {
  position: fixed;
  inset: 0;
  z-index: 8050;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 12vh 20px 30px;
  background: rgba(0, 0, 0, .8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.vegas-modal.is-open {
  display: flex;
}

.vegas-modal-inner {
  position: relative;
  width: min(100%, 440px);
  padding: 30px;
  border: 1px solid var(--vegas-line);
  border-radius: 16px;
  background: var(--vegas-surface-2);
  box-shadow: var(--vegas-shadow), var(--vegas-glow-purple);
}

.vegas-modal-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
  background: var(--vegas-gradient-gold);
}

.vegas-modal-inner h2 {
  margin-bottom: 22px;
  color: var(--vegas-white);
  font-family: var(--vegas-font-display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1.1;
  text-transform: uppercase;
}

.vegas-modal-close {
  position: absolute;
  top: 9px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: var(--vegas-muted);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.vegas-modal-close:hover,
.vegas-modal-close:focus {
  color: var(--vegas-gold);
}

/* Age verification — adult-content gate */
html.vegas-age-locked,
html.vegas-age-locked body {
  overflow: hidden;
}

.vegas-age-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  overflow-y: auto;
  padding: 24px;
  place-items: center;
  background: var(--vegas-black);
}

.vegas-age-overlay::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 42% at 18% 12%, rgba(var(--vegas-purple-rgb), .2), transparent 70%),
    radial-gradient(ellipse 55% 40% at 84% 18%, rgba(var(--vegas-gold-rgb), .14), transparent 70%),
    radial-gradient(ellipse 70% 50% at 50% 110%, rgba(var(--vegas-purple-deep-rgb), .22), transparent 70%);
}

.age-box-wrapper {
  position: relative;
  width: min(100%, 560px);
}

.age-box {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border: 1px solid var(--vegas-line);
  border-radius: 18px;
  background: var(--vegas-surface-2);
  box-shadow: var(--vegas-shadow), var(--vegas-glow-gold);
  text-align: center;
}

.age-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--vegas-gradient-gold);
}

.age-ornaments {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 0 0 14px;
  color: var(--vegas-gold);
}

.age-ornaments svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 10px rgba(var(--vegas-gold-rgb), .45));
}

.age-ornaments svg:nth-child(2) {
  color: var(--vegas-purple);
  filter: drop-shadow(0 0 10px rgba(var(--vegas-purple-rgb), .5));
}

.age-18 {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px;
  border: 2px solid var(--vegas-gold);
  border-radius: 50%;
  background: var(--vegas-black);
  color: var(--vegas-gold);
  font-family: var(--vegas-font-display);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1;
  box-shadow: var(--vegas-glow-gold);
}

.age-header {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--vegas-line-soft);
}

.age-title {
  margin: 0;
  color: var(--vegas-gold);
  font-family: var(--vegas-font-display);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 400;
  letter-spacing: .09em;
  line-height: 1.1;
  text-transform: uppercase;
}

.age-text {
  color: var(--vegas-text);
  font-size: 13px;
  line-height: 1.7;
}

.age-footer {
  position: relative;
  margin: 24px 0;
  padding: 16px;
  border: 1px solid var(--vegas-line-soft);
  border-radius: 10px;
  background: var(--vegas-surface);
}

.age-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.age-toggle-label {
  color: var(--vegas-text);
  font-size: 12px;
  font-weight: 600;
}

.age-toggle-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
  margin: 0;
}

.age-toggle-switch input {
  width: 1px;
  height: 1px;
  opacity: 0;
}

.age-slider {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: var(--vegas-surface-3);
  border: 1px solid var(--vegas-line-soft);
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease;
}

.age-slider::before {
  position: absolute;
  bottom: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--vegas-gold);
  content: "";
  transition: transform .18s ease;
}

.age-toggle-switch input:checked + .age-slider {
  background: var(--vegas-purple-soft);
  border-color: var(--vegas-purple);
}

.age-toggle-switch input:checked + .age-slider::before {
  transform: translateX(18px);
  background: var(--vegas-purple);
}

.age-buttons {
  position: relative;
  display: grid;
  gap: 10px;
}

.age-btn {
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid var(--vegas-line);
  border-radius: 999px;
  background: var(--vegas-surface);
  box-shadow: none;
  color: var(--vegas-gold);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background-color .18s ease, color .18s ease, transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.age-confirm {
  border-color: var(--vegas-gold);
  background: var(--vegas-gold);
  color: var(--vegas-black);
  box-shadow: var(--vegas-glow-gold);
}

.age-confirm:hover,
.age-confirm:focus {
  background: var(--vegas-gold-bright);
  color: var(--vegas-black);
  transform: translateY(-1px);
}

.age-deny:hover,
.age-deny:focus {
  border-color: var(--vegas-red);
  background: var(--vegas-red);
  color: var(--vegas-black);
  transform: translateY(-1px);
}

.disclaimer {
  position: relative;
  margin-top: 20px;
  color: var(--vegas-muted);
  font-size: 11px;
}

/* Account pages */
.account-page {
  max-width: 860px;
}

.account-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--vegas-line-soft);
}

.account-header .eyebrow {
  margin-bottom: 6px;
  color: var(--vegas-gold);
  font-family: var(--vegas-font-display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

.account-header h1 {
  margin-bottom: 6px;
  color: var(--vegas-white);
  font-family: var(--vegas-font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1.05;
  text-transform: uppercase;
}

.account-header p {
  margin-bottom: 0;
  color: var(--vegas-muted);
}

.account-action {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 9px 16px;
  border: 1px solid var(--vegas-gold);
  border-radius: 999px;
  background: var(--vegas-black);
  color: var(--vegas-gold);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.account-action:hover,
.account-action:focus {
  background: var(--vegas-gold);
  color: var(--vegas-black);
  box-shadow: var(--vegas-glow-gold);
}

.account-gate .account-action {
  margin-top: 8px;
}

.account-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
  padding-bottom: 2px;
  border: 0;
  background: transparent;
}

.account-tabs a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 15px;
  border: 1px solid var(--vegas-line);
  border-radius: 999px;
  background: var(--vegas-surface);
  color: var(--vegas-muted);
  font-size: 12px;
  font-weight: 700;
  transition: border-color .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.account-tabs a:hover,
.account-tabs a:focus {
  border-color: var(--vegas-gold);
  color: var(--vegas-gold);
}

.account-tabs a.is-active {
  border-color: var(--vegas-gold);
  background: var(--vegas-gold);
  color: var(--vegas-black);
  box-shadow: var(--vegas-glow-gold);
}

/* Footer — strip-at-night skyline band */
.footer-margin {
  display: none;
}

.footer {
  position: relative;
  margin-top: 24px;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--vegas-line);
  background: var(--vegas-black);
  box-shadow: none;
  overflow: hidden;
}

/* Generic skyline silhouette — original vector art, no real buildings. */
.footer-wrap {
  width: calc(100% - (var(--vegas-desktop-gutter) * 2));
  max-width: var(--vegas-width);
  margin: 0 auto;
  padding: 34px 0 40px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

/* Card-suit emblem row */
.suit-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin: 0 0 22px;
  color: var(--vegas-gold);
}

.suit-row svg {
  width: 30px;
  height: 30px;
  opacity: .9;
  transition: opacity .18s ease, transform .18s ease;
}

.suit-row svg:nth-child(even) {
  color: var(--vegas-purple);
}

.footer .nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 24px;
}

.footer .nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid var(--vegas-line-soft);
  border-radius: 999px;
  background: var(--vegas-surface);
  box-shadow: none;
  color: var(--vegas-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.footer .nav a:hover,
.footer .nav a:focus {
  border-color: var(--vegas-gold);
  background: var(--vegas-gold);
  box-shadow: var(--vegas-glow-gold);
  color: var(--vegas-black);
  transform: none;
}

.footer .copyright,
.footer .txt {
  color: var(--vegas-muted);
  font-size: 11px;
  line-height: 1.7;
}

.footer .copyright {
  font-size: 12px;
  font-weight: 600;
}

.footer .copyright a {
  color: var(--vegas-gold);
  font-weight: 800;
}

.footer .txt {
  max-width: 760px;
  margin: 16px auto 0;
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
}

.footer .trust-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.footer .trust-links a {
  padding: 6px 12px;
  border: 1px solid var(--vegas-line-soft);
  border-radius: 999px;
  background: var(--vegas-surface);
  color: var(--vegas-muted);
  font-size: 11px;
  font-weight: 700;
  transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}

.footer .trust-links a:hover,
.footer .trust-links a:focus {
  border-color: var(--vegas-purple);
  background: var(--vegas-purple-soft);
  color: var(--vegas-purple);
}

.footer-emblem {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  color: var(--vegas-muted);
  font-size: 11px;
}

.footer-emblem .age-badge {
  min-height: 22px;
  padding: 2px 7px;
  font-size: 13px;
}

.footer-emblem svg {
  width: 24px;
  height: 24px;
  color: var(--vegas-gold);
}

/* Ads sidebar */
.ads-sidebar .widget,
.ads-sidebar .ad-placeholder {
  width: 100%;
  max-width: 300px;
  margin: 0 0 22px;
}

.ad-placeholder {
  display: grid;
  min-height: 250px;
  padding: 20px;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px dashed var(--vegas-line);
  border-radius: var(--vegas-radius);
  background: var(--vegas-surface);
  color: var(--vegas-muted);
  text-align: center;
}

.ad-placeholder strong {
  color: var(--vegas-gold);
}

.ad-placeholder span {
  font-size: 11px;
  line-height: 1.5;
}

/* Widgets */
.widget {
  margin-bottom: 24px;
}

.widget .headline h2 {
  color: var(--vegas-gold);
}

.widget-area {
  width: calc(100% - (var(--vegas-desktop-gutter) * 2));
  max-width: var(--vegas-width);
  margin: 18px auto 0;
  padding: 18px;
  border: 1px solid var(--vegas-line-soft);
  border-radius: var(--vegas-radius);
  background: var(--vegas-surface);
  box-shadow: var(--vegas-shadow);
}

.widget-area .widget {
  margin-bottom: 0;
}

.header-widget-area {
  margin-top: 20px;
}

/* Rounded treatment for content components. */
.container > .header,
.container > nav:not(.pagination),
.ads-sidebar .widget,
.ad-placeholder,
.single-taxonomy-sidebar,
.video-meta,
.vegas-player,
.single-taxonomies {
  border-radius: var(--vegas-radius);
}

.container > .header,
.container > nav:not(.pagination) {
  overflow: visible;
}

/* Keep listing content close to the footer instead of leaving a large empty
   band below the final row of cards. */
body.home .content,
body.front-page .content,
body.blog .content,
body.archive .content,
body.search .content,
body.category .content,
body.tag .content,
body[class*="tax-"] .content {
  padding-bottom: 24px;
}

body.home .pagination--bare,
body.front-page .pagination--bare,
body.blog .pagination--bare,
body.archive .pagination--bare,
body.search .pagination--bare,
body.category .pagination--bare,
body.tag .pagination--bare,
body[class*="tax-"] .pagination--bare {
  margin-bottom: 8px !important;
}

body.home .footer,
body.front-page .footer,
body.blog .footer,
body.archive .footer,
body.search .footer,
body.category .footer,
body.tag .footer,
body[class*="tax-"] .footer {
  margin-top: 0;
}

/* Responsive layout */
@media (max-width: 1200px) and (min-width: 701px) {
  .list-videos .margin-fix {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .main-content.single-video-layout {
    grid-template-columns: minmax(170px, 205px) minmax(0, 1fr) minmax(220px, 270px);
    gap: 22px;
  }

  .main-content.single-video-layout > .single-taxonomy-sidebar {
    padding-right: 14px;
  }

  .main-content.single-video-layout > .ads-sidebar {
    padding-left: 14px;
  }
}

@media (max-width: 1100px) and (min-width: 701px) {
  .main-content.single-video-layout {
    grid-template-columns: minmax(170px, 205px) minmax(0, 1fr) minmax(220px, 270px);
    gap: 22px;
  }

  .main-content.single-video-layout > .single-taxonomy-sidebar {
    padding-right: 14px;
  }

  .main-content.single-video-layout > .ads-sidebar {
    padding-left: 14px;
  }
}

@media (min-width: 1101px) {
  .main-content.single-video-layout {
    grid-template-columns: minmax(180px, 236px) minmax(0, 1fr) minmax(240px, 300px);
    gap: clamp(22px, 3vw, 38px);
    align-items: start;
  }

  .main-content.single-video-layout > .single-taxonomy-sidebar {
    grid-column: 1;
    grid-row: 1;
    width: auto;
    max-width: none;
    min-width: 0;
    padding: 22px 18px 24px 0;
    border-right: 1px solid var(--vegas-line-soft);
    border-left: 0;
  }

  .main-content.single-video-layout > .main-container {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    min-width: 0;
  }

  .main-content.single-video-layout > .ads-sidebar {
    grid-column: 3;
    grid-row: 1;
    width: auto;
    max-width: none;
    min-width: 0;
    padding: 22px 0 24px 22px;
    border-right: 0;
    border-left: 1px solid var(--vegas-line-soft);
  }

  .ads-sidebar .widget,
  .ads-sidebar .ad-placeholder {
    width: 100%;
    max-width: 300px;
    margin: 0 0 22px;
  }
}

@media (max-width: 980px) {
  .header-inner {
    gap: 22px;
  }

  .logo {
    flex-basis: auto;
  }

  .site-title {
    font-size: 30px;
  }

  .custom-logo {
    max-height: 54px;
  }

  .main-content {
    grid-template-columns: 205px minmax(0, 1fr);
    gap: 28px;
  }

  .list-videos .margin-fix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-slider__slide {
    flex-basis: calc((100% - 20px) / 2);
  }

  .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .container,
  .center-hold,
  .header-inner,
  .navigation,
  .footer-wrap {
    width: min(100% - 28px, var(--vegas-width));
  }

  .container {
    --vegas-desktop-gutter: 14px;
  }

  .site-header {
    width: calc(100% - 28px);
    max-width: var(--vegas-width);
    margin-top: 12px;
  }

  .site-header-shell,
  .site-header-shell > .header,
  .site-header-shell > nav {
    border-radius: 0;
    box-shadow: none;
  }

  .site-header-shell {
    border-radius: var(--vegas-radius);
  }

  .site-header-shell > nav {
    border-top: 1px solid var(--vegas-line-soft);
    border-radius: 0;
  }

  .site-header-shell .header-inner,
  .site-header-shell nav .navigation {
    width: calc(100% - 28px);
  }

  .header-inner {
    min-height: 64px;
    gap: 8px;
  }

  .logo {
    flex: 1 1 auto;
  }

  .site-logo-mark {
    width: 46px;
    height: 46px;
  }

  .site-title {
    font-size: 26px;
  }

  .custom-logo {
    max-height: 48px;
  }

  .search {
    flex: 0 0 32px;
    width: 32px;
    max-width: 32px;
  }

  .show_search {
    display: block;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }

  .show_search::before {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--vegas-gold);
    content: "⌕";
    font-size: 23px;
    line-height: 1;
  }

  .search form {
    width: 0;
    overflow: hidden;
    transition: width .2s ease;
  }

  .show_search.open + .search,
  .search:focus-within {
    flex-basis: min(250px, calc(100vw - 92px));
    width: min(250px, calc(100vw - 92px));
    max-width: min(250px, calc(100vw - 92px));
  }

  .show_search.open + .search form,
  .search:focus-within form {
    width: 100%;
  }

  .search-text input {
    height: 34px;
    padding-right: 50px;
    font-size: 12px;
    line-height: 34px;
  }

  .search .search-button,
  #search_form button.search-button,
  .search form button.search-button {
    width: 34px;
    min-width: 34px;
    height: calc(100% - 4px);
    padding: 0;
    font-size: 0;
  }

  .search .search-button::after {
    content: "⌕";
    font-size: 16px;
  }

  nav .navigation {
    width: min(100% - 28px, var(--vegas-width));
  }

  .navigation .button {
    display: block;
    flex: 0 0 30px;
    margin-right: 12px;
  }

  .navigation .primary {
    display: none;
    width: 100%;
    flex: 0 0 100%;
  }

  .navigation.is-open {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 8px 0;
  }

  .navigation.is-open .primary {
    display: block;
    order: 2;
  }

  .navigation .primary > li,
  .navigation .primary > li > a {
    width: 100%;
  }

  .navigation .primary > li:first-child > a,
  .navigation .primary > li > a {
    padding: 11px 0;
  }

  .navigation .primary li ul {
    position: static;
    min-width: 0;
    padding: 0 0 0 15px;
    border: 0;
    box-shadow: none;
  }

  .navigation .primary li:hover > ul,
  .navigation .primary li:focus-within > ul {
    display: block;
  }

  .menu-auth ul.auth-pill a {
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 10px;
  }

  .main-content {
    display: block;
    padding-bottom: 34px;
  }

  .main-content.single-video-layout {
    display: flex;
    flex-direction: column;
  }

  .main-content.single-video-layout > .single-taxonomy-sidebar,
  .main-content.single-video-layout > .main-container,
  .main-content.single-video-layout > .ads-sidebar {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .main-content.single-video-layout > .single-taxonomy-sidebar {
    order: 1;
    padding: 28px 0;
    margin-bottom: 28px;
    border-top: 1px solid var(--vegas-line-soft);
    border-right: 0;
    border-left: 0;
  }

  .main-content.single-video-layout > .main-container {
    order: 2;
  }

  .main-content.single-video-layout > .ads-sidebar {
    order: 3;
    padding: 28px 0 0;
    margin-top: 34px;
    border-top: 1px solid var(--vegas-line-soft);
    border-right: 0;
    border-left: 0;
  }

  .ads-sidebar .widget,
  .ads-sidebar .ad-placeholder,
  .ads-sidebar iframe,
  .ads-sidebar embed,
  .ads-sidebar img,
  .ads-sidebar video {
    max-width: 100%;
    height: auto;
  }

  .ads-sidebar .ad-placeholder {
    min-height: 180px;
  }

  .sidebar {
    display: none;
  }

  .content {
    padding-top: 22px;
    padding-bottom: 38px;
  }

  .menu-container {
    margin-bottom: 22px;
  }

  .headline h1,
  .headline h2,
  .main-container > h1 {
    font-size: 24px;
  }

  .vegas-player video,
  .vegas-player iframe {
    min-height: 0;
  }

  .preview-play {
    width: 44px;
    height: 44px;
  }

  .item .img {
    border-radius: 12px;
  }

  .video-meta {
    padding: 10px;
  }

  .container > .header,
  .container > nav:not(.pagination),
  .footer {
    border-radius: 0;
  }

  .footer {
    margin-top: 12px;
  }

  .footer-wrap {
    width: calc(100% - 28px);
    padding: 26px 0 30px;
    border-radius: 0;
    box-shadow: none;
  }

  .footer .nav {
    gap: 8px;
    margin-bottom: 20px;
  }

  .footer .nav a {
    padding: 8px 11px;
    font-size: 11px;
  }

  .featured-slider__slide {
    flex-basis: 78%;
  }

  .directory-grid {
    grid-template-columns: 1fr;
  }

  .widget-area {
    width: calc(100% - 28px);
    padding: 14px;
  }
}

@media (max-width: 460px) {
  .member-links li a {
    padding-right: 10px;
    padding-left: 10px;
  }

  .header-inner {
    min-height: 62px;
  }

  .site-logo-mark {
    width: 38px;
    height: 38px;
  }

  .site-title {
    font-size: 22px;
  }

  .custom-logo {
    max-height: 42px;
  }

  .list-videos .margin-fix {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .item .title {
    font-size: 14px;
  }

  .age-box {
    padding: 26px 18px;
  }

  .age-title {
    font-size: 26px;
  }

  .account-header {
    display: block;
  }

  .account-header .account-action {
    margin-top: 12px;
  }
}

@media (hover: none), (pointer: coarse) {
  .item .ico-fav-0,
  .item .ico-fav-1 {
    opacity: .96;
  }
}

/* Accessibility: honor reduced-motion preferences. The theme contains no
   blinking or flashing elements by design; this guarantees nothing animated
   runs for users who ask for less motion. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
