/* [project]/app/globals.css [app-client] (css) */
:root {
  --bg: #cfd5dc;
  --surface: #e8ebef;
  --surface-hover: #dde2e8;
  --border: #b8c0ca;
  --text: #191d23;
  --text-dim: #545c67;
  --accent: #0f766e;
  --accent-text: #fff;
  --radius: 10px;
  --shell: 1400px;
}

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font: 15px / 1.5 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

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

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

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 16px;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  z-index: 20;
  position: sticky;
  top: 0;
  box-shadow: 0 1px 3px #14171c0f;
}

.header-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.brand {
  flex: none;
  line-height: 0;
  display: block;
}

.brand img {
  width: auto;
  height: 48px;
  display: block;
}

.search {
  flex: 0 380px;
  gap: 8px;
  min-width: 0;
  margin-right: auto;
  display: flex;
}

.search input {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  min-width: 0;
  color: var(--text);
  flex: 1;
  padding: 9px 12px;
  font-size: 15px;
}

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

.search button {
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--accent-text);
  cursor: pointer;
  border: 0;
  padding: 9px 18px;
  font-size: 15px;
  font-weight: 700;
}

.tabs {
  scrollbar-width: none;
  gap: 6px;
  padding-bottom: 10px;
  display: flex;
  overflow-x: auto;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  color: var(--text-dim);
  white-space: nowrap;
  border-radius: 999px;
  flex: none;
  padding: 6px 13px;
  font-size: 14px;
}

.tab:hover {
  background: var(--surface-hover);
  color: var(--text);
}

.tab.is-active {
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 700;
}

main {
  min-height: 60vh;
  padding-top: 20px;
  padding-bottom: 48px;
}

.page-title, .section-title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
}

.page-intro {
  max-width: 760px;
  color: var(--text-dim);
  margin: -6px 0 18px;
  font-size: 14.5px;
  line-height: 1.6;
}

.page-title .count {
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 400;
}

.empty {
  color: var(--text-dim);
  text-align: center;
  padding: 48px 0;
}

.grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px 14px;
  display: grid;
}

.card {
  display: block;
}

.card-thumb {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

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

.card:hover .card-thumb img {
  transform: scale(1.04);
}

.card-thumb-empty {
  background: linear-gradient(135deg, var(--surface), var(--surface-hover));
  width: 100%;
  height: 100%;
}

.card-duration {
  color: #fff;
  font-variant-numeric: tabular-nums;
  background: #000000c7;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  bottom: 6px;
  right: 6px;
}

.card-body {
  padding: 8px 2px 0;
}

.card-title {
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
}

.card:hover .card-title {
  color: var(--accent);
}

.card-meta {
  color: var(--text-dim);
  margin: 0;
  font-size: 12.5px;
}

.player {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: #000;
  margin-bottom: 18px;
  overflow: hidden;
}

.player iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.video-title {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
}

.video-meta {
  color: var(--text-dim);
  margin: 0 0 18px;
  font-size: 14px;
}

.tags {
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  display: flex;
}

.tag {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dim);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 13px;
  display: inline-block;
}

.tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.related {
  margin-top: 8px;
}

.crumbs {
  width: 100%;
  max-width: var(--shell);
  color: var(--text-dim);
  margin: 0 auto;
  padding: 14px 16px 0;
  font-size: 13px;
}

.crumbs ol {
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.crumbs li + li:before {
  content: "›";
  opacity: .6;
  margin-right: 6px;
}

.crumbs a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.crumbs li:last-child span {
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
  max-width: 460px;
  display: inline-block;
  overflow: hidden;
}

.crumbs + main {
  padding-top: 12px;
}

.tab-sep {
  border-left: 1px solid var(--border);
  border-radius: 0 999px 999px 0;
  margin-left: 10px;
  padding-left: 16px;
}

.cat-orders {
  margin-bottom: 18px;
  padding-bottom: 0;
}

.cat-list {
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.cat-chip {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 10px 18px;
  font-size: 14.5px;
  font-weight: 600;
  display: inline-block;
}

.cat-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pagination {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 36px;
  display: flex;
}

.page-link {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dim);
  border-radius: 8px;
  padding: 8px 13px;
  font-size: 14px;
}

a.page-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.page-link.is-current {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-text);
  font-weight: 700;
}

.page-link.is-disabled {
  opacity: .35;
}

.page-gap {
  color: var(--text-dim);
  padding: 0 4px;
}

.age-gate {
  z-index: 100;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: #14171cb8;
  place-items: center;
  padding: 16px;
  display: grid;
  position: fixed;
  inset: 0;
}

.age-gate-box {
  border: 1px solid var(--border);
  background: var(--surface);
  text-align: center;
  border-radius: 14px;
  max-width: 460px;
  padding: 28px;
}

.age-gate-box h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.age-gate-box p {
  color: var(--text-dim);
  margin: 0 0 22px;
  font-size: 14px;
}

.age-gate-actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  display: flex;
}

.btn {
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid #0000;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-text);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text-dim);
  background: none;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  margin-top: 24px;
  font-size: 14px;
}

.footer-grid {
  grid-template-columns: 1.8fr 1fr 1.3fr 1fr;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 32px;
  display: grid;
}

.footer-brand img {
  width: auto;
  height: 44px;
  display: block;
}

.footer-brand p {
  margin: 16px 0 12px;
  line-height: 1.7;
}

.footer-more {
  color: var(--accent);
  font-weight: 600;
}

.footer-more:hover, .footer-list a:hover, .footer-legal a:hover {
  color: var(--accent);
}

.footer-heading {
  color: var(--text);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 800;
}

.footer-list {
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.footer-list-2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
}

.footer-social a {
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

.footer-social svg {
  flex: none;
}

.footer-bottom {
  border-top: 1px solid var(--border);
}

.footer-bottom-row {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px 24px;
  padding-top: 18px;
  padding-bottom: 22px;
  font-size: 13px;
  display: flex;
}

.footer-bottom-row p {
  margin: 0;
}

.footer-legal {
  flex-wrap: wrap;
  gap: 18px;
  display: flex;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .footer-bottom-row {
    text-align: center;
    justify-content: center;
  }
}

.prose {
  max-width: 760px;
}

.prose h1 {
  margin: 0 0 16px;
  font-size: 22px;
}

.prose p, .prose li {
  color: var(--text-dim);
  font-size: 14.5px;
}

.prose a {
  color: var(--accent);
}

@media (max-width: 560px) {
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px 10px;
  }

  .brand img {
    height: 36px;
  }

  .search {
    flex: 100%;
    margin-right: 0;
  }
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/