:root {
  --brand: #009ed0;
  --brand-dark: #063f52;
  --night: #032f3e;
  --cyan: #18c7f3;
  --yellow: #f1c817;
  --yellow-hover: #ffd93a;
  --red: #e50914;
  --white: #fff;
  --soft: #d7f4fb;
  --muted: #9ed6e3;
  --shadow: 0 18px 45px rgba(0, 0, 0, .28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--brand-dark);
  color: var(--white);
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(0, 158, 208, .78), rgba(0, 135, 185, .64));
  border-bottom: 1px solid rgba(24, 199, 243, .52);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
}

.topbar {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 74px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.logo img {
  width: min(205px, 44vw);
  height: auto;
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.main-nav > a,
.nav-dropdown-toggle {
  min-height: 40px;
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav > a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle {
  background: rgba(255, 255, 255, .16);
}

.star-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.star-link span {
  color: var(--yellow);
  font-size: 15px;
  line-height: 1;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: min(760px, 92vw);
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(24, 199, 243, .85);
  border-radius: 8px;
  background: #022f3f;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-dropdown-panel::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #022f3f;
  border-left: 1px solid rgba(24, 199, 243, .85);
  border-top: 1px solid rgba(24, 199, 243, .85);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown.is-open .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel,
.nav-dropdown:hover .nav-dropdown-panel {
  display: grid;
}

.nav-dropdown-panel a {
  position: relative;
  z-index: 1;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

.nav-dropdown-panel a:hover {
  background: var(--yellow);
  color: var(--night);
}

.menu-toggle {
  display: none;
  min-height: 40px;
  padding: 9px 12px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
}

.icon-btn svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.icon-btn.search {
  background: var(--yellow);
  color: var(--night);
}

.icon-btn.live {
  background: var(--red);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, rgba(24, 199, 243, .2), transparent 34%),
    linear-gradient(90deg, rgba(3, 47, 62, .98), rgba(3, 47, 62, .88));
  border-bottom: 1px solid rgba(24, 199, 243, .35);
}

.category-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 47, 62, .72), rgba(0, 158, 208, .12)),
    var(--category-hero-image, radial-gradient(circle at 82% 36%, rgba(241, 200, 23, .16), transparent 32%)),
    linear-gradient(90deg, rgba(3, 47, 62, .98), rgba(3, 47, 62, .84));
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(24, 199, 243, .35);
}

.category-hero::before {
  content: none;
}

.category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 47, 62, .14), rgba(3, 47, 62, .38));
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  right: clamp(-130px, -5vw, -40px);
  top: 50%;
  width: clamp(300px, 44vw, 620px);
  aspect-ratio: 1;
  background: url("onlyfans-logo-blue.png") center / contain no-repeat;
  opacity: .2;
  transform: translateY(-50%);
  animation: onlyfansFloat 18s linear infinite;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 47, 62, .98) 0%, rgba(3, 47, 62, .84) 44%, rgba(3, 47, 62, .42) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(42px, 8vw, 88px) 18px;
}

.category-hero .hero-content {
  padding-top: clamp(34px, 6vw, 64px);
  padding-bottom: clamp(34px, 6vw, 64px);
}

.category-hero h2 {
  width: 100%;
  max-width: none;
  margin-bottom: 16px;
  color: var(--soft);
  font-size: clamp(20px, 3vw, 31px);
  line-height: 1.2;
}

.category-hero h1,
.category-hero h2,
.category-hero .eyebrow {
  text-shadow: 0 3px 16px rgba(0, 0, 0, .42);
}

@keyframes onlyfansFloat {
  0% {
    transform: translateY(-50%) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-50%) rotate(180deg) scale(1.04);
  }

  100% {
    transform: translateY(-50%) rotate(360deg) scale(1);
  }
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  width: 100%;
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(36px, 7vw, 68px);
  line-height: .98;
  letter-spacing: 0;
}

.hero h2 {
  width: 100%;
  max-width: none;
  margin-bottom: 18px;
  color: var(--soft);
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.2;
}

.hero-count {
  color: var(--yellow);
  font-size: 1.12em;
  font-weight: 800;
}

.update-date {
  color: var(--yellow);
}

.hero p:not(.eyebrow):not(.update) {
  width: 100%;
  max-width: none;
  color: var(--soft);
  font-size: 18px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .btn {
  min-height: 38px;
  padding: 8px 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  text-align: center;
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  font-size: 15px;
  line-height: 1;
}

.btn.primary {
  background: linear-gradient(135deg, #ffe66d 0%, var(--yellow) 48%, #d7a900 100%);
  color: var(--white);
}

.btn.secondary {
  background: linear-gradient(135deg, #72e8ff 0%, var(--cyan) 48%, #008fbd 100%);
  color: var(--white);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, .55);
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.btn.live-cta {
  background: linear-gradient(135deg, #ff5962 0%, var(--red) 52%, #9b0007 100%);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(229, 9, 20, .28);
}

.btn.phone-cta {
  background: linear-gradient(135deg, #0aa6c8 0%, #075a73 52%, #033142 100%);
  color: var(--white);
}

.btn.small {
  min-height: 42px;
}

.update {
  margin: 24px 0 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.search-panel,
.section,
.seo-copy,
.faq {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 18px;
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 22px;
  align-items: end;
}

.search-panel h2,
.section-head h2,
.seo-copy h2,
.faq h2 {
  margin-bottom: 10px;
  font-size: clamp(25px, 4vw, 38px);
  line-height: 1.12;
}

.search-box {
  display: flex;
  padding: 6px;
  border: 1px solid rgba(24, 199, 243, .7);
  border-radius: 8px;
  background: rgba(3, 47, 62, .9);
  box-shadow: var(--shadow);
}

.search-field {
  position: relative;
  min-width: 0;
  width: 100%;
}

.search-box input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  padding: 12px 14px;
  background: var(--white);
  color: #173842;
  border-radius: 5px 0 0 5px;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  display: none;
  max-height: 360px;
  overflow: auto;
  padding: 8px;
  border: 1px solid rgba(24, 199, 243, .8);
  border-radius: 8px;
  background: #022f3f;
  box-shadow: var(--shadow);
}

.search-suggestions.is-open {
  display: grid;
  gap: 6px;
}

.suggestion-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 6px;
  border-radius: 7px;
  color: var(--white);
}

.suggestion-item:hover,
.suggestion-item:focus {
  background: rgba(241, 200, 23, .12);
  color: var(--yellow);
  outline: none;
}

.suggestion-item img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
}

.suggestion-item strong {
  display: block;
  font-size: 14px;
  line-height: 1.15;
}

.suggestion-item span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.suggestion-empty {
  padding: 12px;
  color: var(--soft);
  font-size: 14px;
}

.search-box button {
  border: 0;
  padding: 0 18px;
  background: var(--yellow);
  color: var(--night);
  border-radius: 0 5px 5px 0;
  font-weight: 800;
  cursor: pointer;
}

.filter-pills {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pills button,
.filter-pills a {
  border: 0;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, .08);
  color: var(--soft);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.filter-pills button.active {
  background: var(--yellow);
  color: var(--night);
}

.ad-strip {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.category-hero + .ad-strip {
  padding-top: 42px;
  padding-bottom: 30px;
}

.archive-page .ad-strip + .section {
  padding-top: 26px;
}

.archive-page .section + .ad-strip {
  padding-top: 42px;
  padding-bottom: 30px;
}

.ad-strip a {
  display: block;
  aspect-ratio: 728 / 180;
  overflow: hidden;
  border: 2px solid var(--cyan);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.ad-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-head {
  width: 100%;
  max-width: none;
  margin-bottom: 24px;
}

.section-head p:not(.eyebrow) {
  color: var(--soft);
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.creator-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid var(--cyan);
  border-radius: 8px;
  background: var(--night);
  box-shadow: var(--shadow);
}

.photo-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  background: #082f3c;
}

.photo-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 6px 9px;
  border-radius: 5px;
  background: var(--yellow);
  color: var(--night);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.card-body {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-body h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.15;
}

.card-body p {
  margin: 0;
  color: var(--soft);
  font-size: 11px;
  line-height: 1.35;
  min-height: calc(11px * 1.35 * 5);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-body .card-cta {
  margin-top: auto;
}

.creator-card .card-cta {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.15;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.tags span {
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(24, 199, 243, .16);
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
}

.card-cta {
  display: block;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 5px;
  background: var(--yellow);
  color: var(--night);
  font-weight: 800;
  text-align: center;
}

.center {
  margin-top: 24px;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.category-grid a {
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(24, 199, 243, .8);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
  font-size: 18px;
  font-weight: 800;
}

.category-grid span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.category-index-grid {
  margin-top: 28px;
}

.category-index-grid a {
  min-height: 70px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.seo-copy {
  color: var(--soft);
}

.seo-copy a {
  color: var(--yellow);
  font-weight: 800;
  text-decoration: none;
  transition: color .18s ease;
}

.seo-copy a:hover,
.seo-copy a:focus {
  color: var(--yellow-hover);
  outline: none;
}

.seo-copy ul {
  margin: 12px 0 20px;
  padding-left: 22px;
}

.seo-copy li {
  margin-bottom: 8px;
}

.legal-content {
  max-width: 1180px;
}

.legal-content h1 {
  margin-bottom: 8px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
}

.legal-content h2 {
  margin-top: 30px;
}

.legal-updated {
  margin: 0 0 24px;
  color: var(--yellow);
  font-weight: 800;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 30px;
}

.about-stats div {
  padding: 18px;
  border-radius: 8px;
  background: var(--night);
  border: 1px solid rgba(24, 199, 243, .45);
}

.about-stats strong {
  display: block;
  color: var(--yellow);
  font-size: 32px;
  line-height: 1;
}

.about-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.about-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 28px;
}

.about-category-list a {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  font-size: 14px;
  font-weight: 800;
}

.about-category-list a:hover,
.about-category-list a:focus {
  color: var(--night);
  background: var(--yellow);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 22px;
  margin-top: 28px;
}

.contact-form,
.contact-box {
  padding: 22px;
  border-radius: 8px;
  background: var(--night);
  border: 1px solid rgba(24, 199, 243, .45);
}

.contact-form {
  display: grid;
  gap: 11px;
}

.contact-form label {
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 210, 60, .16);
}

.contact-form button {
  justify-self: start;
  margin-top: 8px;
}

.contact-box h2 {
  margin-top: 0;
}

.contact-email {
  display: inline-flex;
  margin: 6px 0 18px;
  font-size: 20px;
}

.contact-note {
  color: var(--muted);
  font-weight: 700;
}

.search-page-box {
  margin-top: 24px;
}

.search-category-help {
  padding-top: 28px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid rgba(24, 199, 243, .55);
  border-radius: 8px;
  background: var(--night);
}

.blog-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  background: rgba(255, 255, 255, .08);
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.blog-card:hover .blog-thumb img,
.blog-card:focus-within .blog-thumb img {
  transform: scale(1.035);
}

.blog-card-body {
  padding: 16px;
}

.blog-card h2,
.blog-card h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
}

.blog-card h2 a,
.blog-card h3 a {
  color: var(--white);
  font-weight: 500;
}

.blog-card p {
  margin: 0 0 16px;
  color: var(--soft);
}

.seo-copy .blog-card .card-cta {
  color: var(--night);
}

.empty-state {
  margin-top: 28px;
  padding: 24px;
  border-radius: 8px;
  background: var(--night);
  border: 1px solid rgba(24, 199, 243, .45);
}

.article-page {
  padding: 34px 0 0;
}

.article-page .breadcrumbs {
  padding-top: 28px;
  padding-bottom: 34px;
}

.article-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

.article-header {
  width: 100%;
  max-width: 1180px;
  padding-bottom: 8px;
}

.article-header h1 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.08;
}

.article-intro {
  width: 100%;
  margin: 0;
  color: var(--soft);
  font-size: 20px;
  line-height: 1.55;
}

.article-cover {
  width: 100%;
  max-height: 560px;
  margin: 30px 0;
  border-radius: 8px;
  object-fit: cover;
}

.article-content {
  width: 100%;
  max-width: 1180px;
  color: var(--soft);
}

.article-content h2,
.article-content h3 {
  margin-top: 34px;
  color: var(--white);
}

.related-blog {
  margin-top: 44px;
}

.copy-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.copy-columns article {
  padding: 18px;
  border-radius: 8px;
  background: var(--night);
  border: 1px solid rgba(24, 199, 243, .45);
}

.copy-columns h3 {
  color: var(--white);
}

.faq details {
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 800;
}

.faq p {
  margin: 12px 0 0;
  color: var(--soft);
}

.site-footer {
  padding: 34px 18px 44px;
  border-top: 3px solid var(--cyan);
  background: #022733;
  color: var(--soft);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 28px;
  align-items: start;
}

.footer-brand strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 20px;
}

.footer-logo {
  display: block;
  width: min(240px, 100%);
  margin-bottom: 12px;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-brand p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
}

.site-footer nav,
.site-footer .menu {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 18px;
  list-style: none;
}

.site-footer a {
  color: var(--white);
  font-weight: 700;
  transition: color .18s ease;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--yellow);
}

.site-footer li {
  margin: 0;
}

.site-footer p {
  max-width: 1180px;
  margin: 0 auto 12px;
  font-size: 13px;
}

.footer-disclaimer {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.copyright {
  color: var(--muted);
}

.is-filtered-out,
.is-extra-hidden {
  display: none;
}

@media (max-width: 980px) {
  .topbar {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .quick-actions {
    margin-left: 0;
  }

  .main-nav {
    order: 3;
    flex: 0 0 100%;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, .2);
  }

  .main-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .main-nav > a,
  .nav-dropdown-toggle {
    min-height: 36px;
    width: 100%;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1);
    font-size: 13px;
    text-align: center;
  }

  .nav-dropdown {
    grid-column: 1 / -1;
  }

  .nav-dropdown-panel {
    position: static;
    width: 100%;
    max-height: min(58vh, 420px);
    margin-top: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 10px;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: none;
  }

  .nav-dropdown-panel a {
    min-height: 34px;
    justify-content: center;
    padding: 8px 10px;
    font-size: 13px;
    text-align: center;
  }

  .nav-dropdown-panel::before {
    display: none;
  }

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

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

  .search-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .topbar {
    min-height: 60px;
    padding-top: 6px;
    padding-bottom: 6px;
    gap: 10px;
  }

  .logo {
    flex: 1 1 150px;
  }

  .logo img {
    width: min(172px, 46vw);
  }

  .icon-btn {
    width: 40px;
    height: 40px;
  }

  .quick-actions {
    gap: 6px;
  }

  .main-nav.is-open {
    grid-template-columns: 1fr;
  }

  .nav-dropdown-panel {
    grid-template-columns: 1fr;
    max-height: min(54vh, 390px);
  }

  .main-nav {
    padding-top: 6px;
  }

  .main-nav.is-open {
    gap: 7px;
  }

  .hero-content {
    padding-top: 38px;
  }

  .hero p:not(.eyebrow):not(.update) {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .ad-strip {
    grid-template-columns: 1fr;
  }

  .creator-grid,
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .card-body {
    padding: 10px;
  }

  .card-body h3 {
    font-size: 15px;
  }

  .card-body p {
    font-size: 11px;
    min-height: calc(11px * 1.35 * 5);
  }

  .card-cta {
    font-size: 13px;
  }

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

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

  .about-stats {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer nav,
  .site-footer .menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 390px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

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

a,
button,
summary {
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease, opacity .18s ease;
}

.icon-btn:hover,
.icon-btn:focus,
.btn:hover,
.btn:focus,
.card-cta:hover,
.card-cta:focus,
.ad-strip a:hover,
.ad-strip a:focus,
.category-grid a:hover,
.category-grid a:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .26);
  outline: none;
}

.icon-btn.search:hover,
.icon-btn.search:focus,
.card-cta:hover,
.card-cta:focus,
.search-box button:hover,
.search-box button:focus {
  background: var(--yellow-hover);
  color: var(--night);
  outline: none;
}

.btn.primary:hover,
.btn.primary:focus {
  background: linear-gradient(135deg, #fff08f 0%, var(--yellow-hover) 52%, #e6b800 100%);
  color: var(--white);
  outline: none;
}

.icon-btn.live:hover,
.icon-btn.live:focus {
  background: #ff1d28;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: linear-gradient(135deg, #95efff 0%, #45dbff 52%, #00a4d4 100%);
  color: var(--white);
}

.btn.live-cta:hover,
.btn.live-cta:focus {
  background: linear-gradient(135deg, #ff7078 0%, #ff1d28 52%, #b90009 100%);
  color: var(--white);
}

.btn.phone-cta:hover,
.btn.phone-cta:focus {
  background: linear-gradient(135deg, #18c7f3 0%, #08789a 52%, #043d52 100%);
  color: var(--white);
}

.btn.ghost:hover,
.btn.ghost:focus {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(241, 200, 23, .1);
  outline: none;
}

.main-nav > a:hover,
.main-nav > a:focus,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus,
.menu-toggle:hover,
.menu-toggle:focus {
  background: rgba(255, 255, 255, .18);
  color: var(--white);
  outline: none;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a:focus {
  background: var(--yellow);
  color: var(--night);
  outline: none;
}

.filter-pills button:hover,
.filter-pills button:focus,
.filter-pills a:hover,
.filter-pills a:focus {
  color: var(--night);
  background: var(--yellow);
  outline: none;
  transform: translateY(-1px);
}

.filter-pills button.active:hover,
.filter-pills button.active:focus {
  color: var(--night);
  background: var(--yellow-hover);
}

.hero .btn,
.search-box button,
.filter-pills button,
.filter-pills a,
.creator-card .card-cta,
.category-grid a {
  font-weight: 600;
}

.category-grid span {
  font-weight: 500;
}

.faq summary {
  font-weight: 500;
}

.ad-strip a:hover,
.ad-strip a:focus,
.category-grid a:hover,
.category-grid a:focus {
  border-color: var(--yellow);
}

.category-grid a:hover span,
.category-grid a:focus span,
.faq summary:hover,
.faq summary:focus,
.site-footer a:hover,
.site-footer a:focus {
  color: var(--yellow);
  outline: none;
}

.photo-link img {
  transition: transform .25s ease;
}

.photo-link:hover img,
.photo-link:focus img {
  transform: scale(1.035);
}

.profile-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 18px;
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 28px;
  align-items: start;
}

.breadcrumbs {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--yellow);
}

.breadcrumbs a:hover,
.breadcrumbs a:focus {
  color: var(--yellow-hover);
  outline: none;
}

.breadcrumbs span:last-child {
  color: var(--soft);
}

.hero-breadcrumbs {
  max-width: none;
  margin: -12px 0 24px;
  padding: 0;
  position: relative;
  z-index: 1;
  color: rgba(215, 244, 251, .88);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .36);
}

.hero-breadcrumbs a {
  color: var(--yellow);
}

.hero-breadcrumbs span:last-child {
  color: var(--white);
}

.profile-media img {
  width: 100%;
  max-height: calc(100vh - 132px);
  object-fit: cover;
  border: 2px solid var(--cyan);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.profile-media {
  position: sticky;
  top: 96px;
  align-self: start;
}

.profile-content h1 {
  margin-bottom: 8px;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.05;
}

.profile-username {
  margin-bottom: 20px;
  color: var(--yellow);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.2;
}

.profile-info-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.profile-info-box {
  padding: 16px;
  border: 1px solid rgba(24, 199, 243, .55);
  border-radius: 8px;
  background: rgba(3, 47, 62, .64);
}

.profile-info-box h3 {
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 17px;
}

.profile-actions-box .hero-actions {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.profile-actions-box .btn {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  font-size: 13px;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .42);
}

.profile-stats {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.profile-stats div {
  display: grid;
  grid-template-columns: minmax(92px, auto) 1fr;
  gap: 8px;
  align-items: baseline;
  min-width: 0;
}

.profile-stats dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.profile-stats dd {
  margin: 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
}

.social-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.social-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.social-actions a:hover,
.social-actions a:focus {
  background: var(--yellow);
  color: var(--night);
  outline: none;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.service-list span,
.single-profile .tags a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.single-profile .tags a:hover,
.single-profile .tags a:focus {
  background: rgba(241, 200, 23, .14);
  color: var(--yellow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border: 2px solid var(--cyan);
  border-radius: 8px;
  background: var(--night);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.gallery-grid a:hover,
.gallery-grid a:focus {
  border-color: var(--yellow);
  outline: none;
}

.gallery-grid a:hover img,
.gallery-grid a:focus img {
  transform: scale(1.035);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.video-grid video {
  width: 100%;
  border: 2px solid var(--cyan);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.video-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  border: 2px dashed rgba(24, 199, 243, .7);
  border-radius: 8px;
  background: rgba(3, 47, 62, .8);
  color: var(--soft);
  font-weight: 800;
  text-align: center;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 18, 26, .76);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(720px, 94vw);
  max-height: min(86vh, 820px);
  overflow: auto;
  padding: 26px;
  border: 1px solid rgba(126, 225, 255, .72);
  border-radius: 10px;
  background: rgba(3, 47, 62, .96);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
  background: var(--yellow);
  color: #080808;
  outline: none;
}

body.modal-open {
  overflow: hidden;
}

.video-list-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  min-width: 0;
}

.video-card.is-hidden {
  display: none;
}

.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 2px solid rgba(126, 225, 255, .9);
  border-radius: 10px;
  background: #111;
  box-shadow: var(--shadow);
}

.video-thumb img,
.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .68));
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  background: rgba(241, 200, 23, .92);
  color: #080808;
  font-size: 18px;
  transition: transform .18s ease, background .18s ease;
}

.video-thumb:hover .video-play,
.video-thumb:focus .video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--yellow);
}

.video-model-link {
  display: block;
  margin-top: 9px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}

.video-model-link:hover,
.video-model-link:focus {
  color: var(--yellow);
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.profile-copy {
  padding-top: 18px;
}

@media (max-width: 980px) {
  .profile-hero {
    grid-template-columns: 1fr;
  }

  .profile-media {
    position: static;
  }

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

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

  .profile-stats {
    grid-template-columns: 1fr;
  }

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

  .profile-actions-box .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 980px) {
  .video-list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .social-actions {
    grid-template-columns: 1fr;
  }

  .profile-actions-box .hero-actions {
    grid-template-columns: 1fr;
  }

  .video-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .video-model-link {
    font-size: 13px;
  }
}

/* video icon on creator cards (ROF) */
.creator-card .photo-link .card-video-icon{
  position:absolute;top:10px;right:10px;z-index:1;width:30px;height:30px;
  display:grid;place-items:center;border-radius:999px;
  background:rgba(241,200,23,.92);color:#080808;font-size:13px;
  box-shadow:0 4px 10px rgba(0,0,0,.3);
}

/* paginazione blog */
.rof-pagination{display:flex;flex-wrap:wrap;gap:8px;justify-content:center;margin-top:28px}
.rof-pagination .page-numbers{display:inline-flex;align-items:center;justify-content:center;min-width:40px;height:40px;padding:0 12px;border:1px solid rgba(24,199,243,.45);border-radius:8px;color:#cfeffb;text-decoration:none;font-weight:700}
.rof-pagination .page-numbers.current{background:#18c7f3;color:#022f3f;border-color:#18c7f3}
.rof-pagination a.page-numbers:hover{border-color:#18c7f3;color:#fff}

/* --- Video viewer (popup singolo con frecce) --- */
.video-viewer{position:relative;display:flex;align-items:center;justify-content:center;min-height:200px}
.vv-stage{width:100%;display:flex;justify-content:center}
.vv-item{display:none;max-width:100%;max-height:54vh;border-radius:12px}
.vv-item.is-active{display:block}
.vv-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:2;width:40px;height:40px;padding:0;border:none;border-radius:50%;cursor:pointer;background:var(--yellow,#f1c817);color:#0a2740;display:flex;align-items:center;justify-content:center;font-size:22px;line-height:1;box-shadow:0 4px 14px rgba(0,0,0,.35);transition:transform .15s ease,background .15s ease}
.vv-arrow.vv-prev{left:8px}
.vv-arrow.vv-next{right:8px}
.vv-arrow:hover{background:#ffd83a;transform:translateY(-50%) scale(1.12)}
.vv-arrow:active{transform:translateY(-50%) scale(.9)}

/* --- Titoli nei contenuti: spazio costante sotto, un po' più sopra, sempre a capo --- */
.seo-copy p,.article-content p{margin:0.5em 0 0.05em}

/* --- Breadcrumbs allineati al wrapper come titolo/categoria --- */
.hero-content .breadcrumbs{max-width:none;margin-left:0;margin-right:0;padding-left:4px;padding-right:0}

/* --- Logo inline al posto del nome brand nei paragrafi --- */
.inline-logo{height:1.15em;width:auto;vertical-align:-.22em}

.hero-content .eyebrow,.hero-content h2{padding-left:4px}

html,body{overflow-x:clip}

.modal .section-head{margin-bottom:10px}
.modal .section-head h2{font-size:19px;line-height:1.2;margin-bottom:0}
.modal .eyebrow{font-size:11px}
html,body{max-width:100%}

/* --- 404 --- */
.notfound .nf-inner{text-align:center;max-width:760px;margin:0 auto}
.nf-code{font-size:clamp(90px,18vw,190px);font-weight:900;line-height:.9;color:var(--yellow);margin:0}
.notfound h1{font-size:clamp(28px,5vw,44px);margin:6px 0 12px}
.nf-text{color:var(--soft);margin:0 auto 26px;max-width:620px}
.nf-search{display:flex;gap:10px;max-width:640px;margin:0 auto 20px}
.nf-search input{flex:1;min-width:0;padding:14px 18px;border-radius:999px;border:1px solid rgba(24,199,243,.45);background:rgba(3,47,62,.6);color:var(--white)}
.nf-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.nf-head{text-align:center;margin:38px 0 18px}

.nf-search .btn{background:var(--yellow);color:#0a2740;border-color:var(--yellow)}

/* --- Barra pulsanti mobile fissa --- */
.rof-mbar{display:none}
@media (max-width:768px){
  .rof-mbar{display:flex;height:56px;box-sizing:border-box;position:fixed;left:0;right:0;bottom:0;z-index:95;background:#032f3e;border-top:1px solid rgba(24,199,243,.4);box-shadow:0 -4px 14px rgba(0,0,0,.3)}
  .rof-mbar-btn{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;padding:8px 4px;color:var(--white);text-decoration:none;font-size:11px;font-weight:700;line-height:1.1;text-align:center}
  .rof-mbar-btn .dashicons{font-size:22px;width:22px;height:22px;color:var(--yellow)}
  .rof-mbar-btn:active{background:rgba(24,199,243,.14)}
  /* spazio footer -> barra fissa. !important per battere il body{padding-bottom:0}
     iniettato dai global-styles inline di WordPress */
  body{padding-bottom:50px!important}
}

@media (max-width:768px){.search-field input,.nf-search input{font-size:12px}}
@media (min-width:769px){.creator-card .card-body .card-cta{margin-top:-15px}.creator-card .card-body{padding-bottom:5px}}

.gallery-thumb{display:block;width:100%;border:0;padding:0;margin:0;background:none;cursor:pointer}

.breadcrumbs + h1{margin-top:16px}

.profile-media-open{display:block;width:100%;border:0;padding:0;margin:0;background:none;cursor:pointer}

.seo-copy h2,.seo-copy h3,.seo-copy h4,.article-content h2,.article-content h3,.article-content h4{margin-top:0.55rem}
.blog-card{display:flex;flex-direction:column}
.blog-card-body{flex:1;display:flex;flex-direction:column}
.blog-card .card-cta{margin-top:auto}

/* l'articolo allinea il corpo al titolo/cover (niente doppio padding laterale) */
.article-content{padding-left:0;padding-right:0}
