@font-face {
  font-family: "Porno Circus";
  src: url("/assets/fonts/Porno_Circus.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  position: relative;
  font-family: "Manrope", "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, sans-serif;
  color: #e9edf3;
  background:
    radial-gradient(circle at 10% -10%, #2a313d 0%, rgba(42, 49, 61, 0) 42%),
    radial-gradient(circle at 90% 0%, #212735 0%, rgba(33, 39, 53, 0) 36%),
    linear-gradient(180deg, #0d1015 0%, #10141b 45%, #0b0e13 100%);
  min-height: 100vh;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 244, 251, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 244, 251, 0.03) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  top: -15%;
  right: -10%;
  bottom: auto;
  left: auto;
  inset: -15% -10% auto auto;
  width: 42vw;
  height: 42vw;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(58, 69, 88, 0.42), rgba(58, 69, 88, 0));
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.topbar,
#main-content,
.after-gallery {
  position: relative;
  z-index: 1;
  width: calc(100% - 48px);
  max-width: 1920px;
  margin: 0 auto;
}

.topbar {
  margin-top: 38px;
}

.topbar {
  position: relative;
  margin-bottom: 34px;
  padding: 16px 20px 24px;
  border: none;
  border-radius: 0;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-align: center;
}

.topbar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 72vw;
  max-width: 980px;
  height: 1px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(90, 107, 134, 0), rgba(90, 107, 134, 0.85), rgba(90, 107, 134, 0));
}

.topbar h1 {
  margin: 0;
  font-family: "Porno Circus", "Manrope", "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 2rem;
  font-size: clamp(1.55rem, 2.9vw, 2.3rem);
  font-weight: 400;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  line-height: 1.02;
  text-shadow: 0 8px 22px rgba(7, 10, 15, 0.75);
}

.topbar p {
  margin: 13px auto 0;
  max-width: 780px;
  color: #aeb8c8;
  font-size: 0.9rem;
  line-height: 1.65;
}

.video-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 26px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.video-card {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 640px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc((100% - 52px) / 3);
  flex: 0 1 calc((100% - 52px) / 3);
  background: linear-gradient(180deg, #1d222b, #151a22);
  border: 1px solid #2d3542;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 24px 38px -24px rgba(0, 0, 0, 0.82);
  box-shadow: 0 24px 38px -24px rgba(0, 0, 0, 0.82);
  opacity: 0;
  -webkit-transform: translateY(20px) scale(0.985);
  transform: translateY(20px) scale(0.985);
  -webkit-animation: card-reveal 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation: card-reveal 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  -webkit-transition: -webkit-transform 0.32s ease, border-color 0.32s ease, background-color 0.32s ease, -webkit-box-shadow 0.32s ease;
  transition: transform 0.32s ease, border-color 0.32s ease, background-color 0.32s ease, box-shadow 0.32s ease;
}

.video-card:nth-child(1) { -webkit-animation-delay: 0.04s; animation-delay: 0.04s; }
.video-card:nth-child(2) { -webkit-animation-delay: 0.08s; animation-delay: 0.08s; }
.video-card:nth-child(3) { -webkit-animation-delay: 0.12s; animation-delay: 0.12s; }
.video-card:nth-child(4) { -webkit-animation-delay: 0.16s; animation-delay: 0.16s; }
.video-card:nth-child(5) { -webkit-animation-delay: 0.20s; animation-delay: 0.20s; }
.video-card:nth-child(6) { -webkit-animation-delay: 0.24s; animation-delay: 0.24s; }
.video-card:nth-child(7) { -webkit-animation-delay: 0.28s; animation-delay: 0.28s; }
.video-card:nth-child(8) { -webkit-animation-delay: 0.32s; animation-delay: 0.32s; }

.video-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 244, 251, 0), rgba(240, 244, 251, 0.28), rgba(240, 244, 251, 0));
  z-index: 3;
  pointer-events: none;
}

.video-card::after {
  content: "";
  position: absolute;
  top: -38%;
  right: -12%;
  width: 52%;
  height: 52%;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(70, 83, 104, 0.24), rgba(70, 83, 104, 0));
  pointer-events: none;
  z-index: 0;
}

.video-card:hover,
.video-card:focus-within {
  -webkit-transform: translateY(-7px) scale(1.006);
  transform: translateY(-7px) scale(1.006);
  border-color: #3a4558;
  background: linear-gradient(180deg, #202733, #171d26);
  -webkit-box-shadow: 0 32px 50px -25px rgba(0, 0, 0, 0.92);
  box-shadow: 0 32px 50px -25px rgba(0, 0, 0, 0.92);
}

.thumb {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #3a404d, #262d39);
  border-bottom: 1px solid #2d3542;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
}

.thumb::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 20, 26, 0) 26%, rgba(10, 13, 17, 0.76) 100%);
  z-index: 1;
  -webkit-transition: opacity 0.28s ease;
  transition: opacity 0.28s ease;
}

.thumb::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(230, 236, 246, 0.12) 0%, rgba(230, 236, 246, 0) 45%),
    repeating-linear-gradient(45deg, rgba(230, 236, 246, 0.015) 0, rgba(230, 236, 246, 0.015) 1px, transparent 1px, transparent 3px);
  opacity: 0.28;
  z-index: 1;
  pointer-events: none;
}

.thumb-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transform: scale(1.015);
  transform: scale(1.015);
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
}

.video-card:hover .thumb-image,
.video-card:focus-within .thumb-image {
  -webkit-transform: scale(1.065);
  transform: scale(1.065);
}

.thumb:focus {
  outline: 2px solid #dce7f8;
  outline-offset: -2px;
}

.thumb:focus:not(:focus-visible) {
  outline: none;
}

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  border: 1px solid rgba(220, 229, 242, 0.44);
  background: rgba(14, 18, 24, 0.66);
  color: #edf3ff;
  -webkit-box-shadow: 0 10px 22px -12px rgba(0, 0, 0, 0.92);
  box-shadow: 0 10px 22px -12px rgba(0, 0, 0, 0.92);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  -webkit-transition: -webkit-transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.play-badge::before {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
  left: 6px;
  inset: 6px;
  border-radius: 999px;
  border: 1px solid rgba(220, 229, 242, 0.24);
}

.play-badge i {
  font-size: 23px;
  line-height: 1;
  margin-left: 2px;
}

.video-card:hover .play-badge,
.video-card:focus-within .play-badge {
  -webkit-transform: translate(-50%, -50%) scale(1.06);
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(14, 18, 24, 0.8);
  border-color: rgba(220, 229, 242, 0.62);
  -webkit-box-shadow: 0 14px 26px -12px rgba(0, 0, 0, 0.94);
  box-shadow: 0 14px 26px -12px rgba(0, 0, 0, 0.94);
}

.meta {
  position: relative;
  z-index: 1;
  padding: 17px 16px 18px;
  background: linear-gradient(180deg, rgba(29, 34, 43, 0.96), rgba(21, 26, 34, 0.98));
}

.meta-title {
  margin: 0;
  color: #f3f6fb;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.42;
  min-height: 2.84em;
  max-height: 2.84em;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.meta-title-link {
  color: #e8eef9;
  text-decoration: none;
  -webkit-transition: color 0.24s ease, text-shadow 0.24s ease;
  transition: color 0.24s ease, text-shadow 0.24s ease;
}

.meta-title-link:hover,
.meta-title-link:focus,
.video-card:hover .meta-title-link,
.video-card:focus-within .meta-title-link {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(206, 219, 240, 0.34);
}

.meta-title-link:focus-visible {
  outline: 1px solid #5a6b86;
  outline-offset: 3px;
  border-radius: 2px;
}

.meta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px 14px;
  padding-top: 10px;
  border-top: 1px solid #2d3542;
  color: #aeb8c8;
  font-size: 0.83rem;
}

.meta-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-weight: 500;
}

.meta-item i {
  color: #bec9dc;
  font-size: 13px;
  line-height: 1;
  width: 14px;
  text-align: center;
}

.play-badge i,
.meta-item i {
  display: inline-block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.after-gallery {
  position: relative;
  margin-top: 28px;
  padding: 18px 20px 22px;
}

.page-description {
  margin: 0;
  width: 100%;
  color: #aeb8c8;
  font-size: 0.82rem;
  line-height: 1.75;
  text-align: center;
  letter-spacing: 0.012em;
}

.external-links {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 11px;
}

.external-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid #3a4558;
  border-radius: 10px;
  color: #c7d1e1;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.012em;
  text-decoration: none;
  background: rgba(24, 30, 40, 0.55);
  -webkit-transition: color 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, -webkit-transform 0.22s ease;
  transition: color 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.external-link i {
  font-size: 0.78rem;
  line-height: 1;
  color: #c7d1e1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.external-link:hover,
.external-link:focus-visible {
  color: #f2f6fd;
  border-color: #5a6b86;
  background: rgba(35, 43, 57, 0.74);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  padding: 19px 20px 27px;
  border-top: 1px solid #2d3542;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: #8f9bb0;
  font-size: 0.8rem;
  letter-spacing: 0.022em;
}

body.age-gate-open {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
  background:
    radial-gradient(circle at 16% 6%, rgba(64, 76, 98, 0.3), rgba(64, 76, 98, 0)),
    radial-gradient(circle at 86% 12%, rgba(46, 56, 73, 0.34), rgba(46, 56, 73, 0)),
    rgba(6, 9, 13, 0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.age-gate::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 244, 251, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 244, 251, 0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.25;
  pointer-events: none;
}

.age-gate__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  border: 1px solid #374355;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(43, 52, 67, 0.94), rgba(21, 27, 37, 0.98)),
    linear-gradient(180deg, #232b38, #151b25);
  -webkit-box-shadow:
    0 38px 74px -34px rgba(0, 0, 0, 0.94),
    inset 0 1px 0 rgba(240, 244, 251, 0.1);
  box-shadow:
    0 38px 74px -34px rgba(0, 0, 0, 0.94),
    inset 0 1px 0 rgba(240, 244, 251, 0.1);
  padding: 34px 30px 30px;
  text-align: center;
}

.age-gate__panel::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 244, 251, 0), rgba(240, 244, 251, 0.5), rgba(240, 244, 251, 0));
  pointer-events: none;
}

.age-gate__title {
  margin: 0;
  color: #f3f6fb;
  font-size: 1.52rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow: 0 8px 20px rgba(7, 10, 15, 0.56);
}

.age-gate__text {
  margin: 14px 0 0;
  color: #c7d1e1;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.012em;
}

.age-gate__text--muted {
  margin-top: 11px;
  color: #98a4b8;
  font-size: 0.82rem;
  line-height: 1.65;
}

.age-gate__actions {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
}

.age-gate__button {
  border: 1px solid #4b5b75;
  border-radius: 12px;
  background: rgba(30, 37, 49, 0.76);
  color: #e4ecfa;
  font-family: "Manrope", "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 11px 18px;
  min-width: 170px;
  cursor: pointer;
  -webkit-box-shadow: 0 10px 24px -18px rgba(0, 0, 0, 0.9);
  box-shadow: 0 10px 24px -18px rgba(0, 0, 0, 0.9);
  -webkit-transition: border-color 0.24s ease, background-color 0.24s ease, color 0.24s ease, -webkit-transform 0.24s ease, -webkit-box-shadow 0.24s ease;
  transition: border-color 0.24s ease, background-color 0.24s ease, color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.age-gate__button:hover,
.age-gate__button:focus-visible {
  color: #ffffff;
  border-color: #6a7f9f;
  background: rgba(48, 59, 79, 0.94);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 16px 30px -20px rgba(0, 0, 0, 0.95);
  box-shadow: 0 16px 30px -20px rgba(0, 0, 0, 0.95);
  outline: none;
}

.age-gate__button--confirm {
  background: linear-gradient(180deg, #4b5b77, #2e3b50);
  border-color: #687c9d;
  color: #f4f8ff;
}

.age-gate__button--confirm:hover,
.age-gate__button--confirm:focus-visible {
  background: linear-gradient(180deg, #56698a, #34435b);
  border-color: #7c94ba;
}

.age-gate__button--leave {
  background: rgba(20, 26, 36, 0.94);
  border-color: #3f4d62;
}

.age-gate__button--leave:hover,
.age-gate__button--leave:focus-visible {
  background: rgba(30, 37, 49, 0.96);
  border-color: #566783;
}

body.cookie-modal-open {
  overflow: hidden;
}

.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent__box {
  pointer-events: auto;
  width: 100%;
  max-width: 980px;
  border: 1px solid #374355;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(40, 49, 63, 0.95), rgba(21, 27, 37, 0.97)),
    linear-gradient(180deg, #222b37, #151b25);
  -webkit-box-shadow:
    0 30px 58px -32px rgba(0, 0, 0, 0.92),
    inset 0 1px 0 rgba(240, 244, 251, 0.08);
  box-shadow:
    0 30px 58px -32px rgba(0, 0, 0, 0.92),
    inset 0 1px 0 rgba(240, 244, 251, 0.08);
  padding: 18px 18px 16px;
}

.cookie-consent__title {
  margin: 0;
  color: #f3f6fb;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cookie-consent__text {
  margin: 9px 0 0;
  color: #c0cbe0;
  font-size: 0.82rem;
  line-height: 1.65;
}

.cookie-consent__actions {
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 9px;
}

.cookie-consent__button {
  border: 1px solid #495975;
  border-radius: 10px;
  background: rgba(29, 36, 48, 0.82);
  color: #e4ecfa;
  font-family: "Manrope", "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.028em;
  text-transform: uppercase;
  padding: 9px 13px;
  cursor: pointer;
  -webkit-transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, -webkit-transform 0.22s ease;
  transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
  color: #ffffff;
  border-color: #6f85a8;
  background: rgba(47, 58, 77, 0.95);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  outline: none;
}

.cookie-consent__button--accept {
  background: linear-gradient(180deg, #4f617f, #34455d);
  border-color: #6b83a8;
}

.cookie-consent__button--accept:hover,
.cookie-consent__button--accept:focus-visible {
  background: linear-gradient(180deg, #5f7497, #3e5371);
  border-color: #87a2ca;
}

.cookie-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  z-index: 9600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-modal__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  background: rgba(7, 10, 14, 0.82);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.cookie-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 620px;
  border: 1px solid #384558;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(42, 51, 65, 0.96), rgba(22, 28, 38, 0.98)),
    linear-gradient(180deg, #252f3c, #151b25);
  -webkit-box-shadow:
    0 36px 70px -34px rgba(0, 0, 0, 0.94),
    inset 0 1px 0 rgba(240, 244, 251, 0.08);
  box-shadow:
    0 36px 70px -34px rgba(0, 0, 0, 0.94),
    inset 0 1px 0 rgba(240, 244, 251, 0.08);
  padding: 24px 22px 20px;
}

.cookie-modal__title {
  margin: 0;
  color: #f3f6fb;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cookie-modal__text {
  margin: 8px 0 0;
  color: #bec9dc;
  font-size: 0.83rem;
  line-height: 1.65;
}

.cookie-modal__list {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 9px;
}

.cookie-modal__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  border: 1px solid #2f3949;
  border-radius: 12px;
  background: rgba(23, 29, 39, 0.72);
  padding: 12px 12px;
}

.cookie-modal__item--locked {
  background: rgba(27, 34, 45, 0.84);
}

.cookie-modal__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3px;
  margin: 0;
}

.cookie-modal__copy strong {
  color: #e9eef7;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.cookie-modal__copy span {
  color: #9ca9bf;
  font-size: 0.76rem;
  line-height: 1.5;
}

.cookie-modal__status {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: 1px solid #4d607e;
  border-radius: 999px;
  background: rgba(54, 68, 92, 0.45);
  color: #d9e5fa;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 9px;
}

.cookie-switch {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.cookie-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch__slider {
  position: relative;
  width: 42px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid #4d607e;
  background: rgba(32, 40, 54, 0.92);
  -webkit-transition: border-color 0.2s ease, background-color 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.cookie-switch__slider::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #dae4f7;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
}

.cookie-switch input:checked + .cookie-switch__slider {
  border-color: #6f85a8;
  background: rgba(76, 94, 122, 0.92);
}

.cookie-switch input:checked + .cookie-switch__slider::after {
  -webkit-transform: translateX(18px);
  transform: translateX(18px);
}

.cookie-switch input:focus-visible + .cookie-switch__slider {
  outline: 1px solid #87a2ca;
  outline-offset: 2px;
}

.cookie-switch__label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.cookie-modal__actions {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 9px;
}

.cookie-modal__button {
  border: 1px solid #4b5a74;
  border-radius: 10px;
  background: rgba(30, 37, 49, 0.82);
  color: #e4ecfa;
  font-family: "Manrope", "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 9px 13px;
  cursor: pointer;
  -webkit-transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, -webkit-transform 0.22s ease;
  transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.cookie-modal__button:hover,
.cookie-modal__button:focus-visible {
  color: #ffffff;
  border-color: #6f85a8;
  background: rgba(47, 58, 77, 0.95);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  outline: none;
}

.cookie-modal__button--save {
  background: linear-gradient(180deg, #4f617f, #34455d);
  border-color: #6b83a8;
}

.cookie-modal__button--save:hover,
.cookie-modal__button--save:focus-visible {
  background: linear-gradient(180deg, #5f7497, #3e5371);
  border-color: #87a2ca;
}

.skip-buttons {
  position: fixed;
  bottom: 14px;
  right: 14px;
  z-index: 9300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7px;
}

.skip-buttons__button {
  border: 1px solid #4a5a75;
  border-radius: 999px;
  background: rgba(18, 23, 31, 0.85);
  color: #e4ecfa;
  font-family: "Manrope", "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  width: 44px;
  height: 44px;
  padding: 0;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  -webkit-transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.skip-buttons__button:hover,
.skip-buttons__button:focus-visible {
  color: #ffffff;
  border-color: #6f85a8;
  background: rgba(43, 53, 70, 0.95);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  outline: none;
}

@media (max-width: 1180px) {
  .topbar,
  #main-content,
  .after-gallery {
    width: calc(100% - 32px);
    max-width: 1920px;
  }

  .topbar {
    margin-top: 30px;
  }

  .video-grid {
    gap: 22px;
  }

  .video-card {
    -ms-flex-preferred-size: calc((100% - 22px) / 2);
    flex-basis: calc((100% - 22px) / 2);
  }
}

@media (max-width: 700px) {
  .topbar,
  #main-content,
  .after-gallery {
    width: calc(100% - 28px);
    max-width: 1920px;
  }

  .topbar {
    margin-top: 24px;
  }

  .video-card {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  .topbar {
    margin-bottom: 24px;
    padding: 10px 6px 18px;
  }

  .topbar p {
    font-size: 0.84rem;
  }

  .after-gallery {
    margin-top: 22px;
    padding: 14px 12px 16px;
  }

  .page-description {
    font-size: 0.78rem;
  }

  .external-link {
    font-size: 0.76rem;
  }

  .site-footer {
    margin-top: 0;
    padding: 0 14px 20px;
    border-top: 0;
  }

  .age-gate {
    padding: 14px;
  }

  .age-gate__panel {
    border-radius: 16px;
    padding: 26px 17px 20px;
  }

  .age-gate__title {
    font-size: 1.3rem;
  }

  .age-gate__text {
    font-size: 0.86rem;
  }

  .age-gate__text--muted {
    font-size: 0.77rem;
  }

  .age-gate__button {
    width: 100%;
    max-width: 280px;
  }

  .cookie-consent {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .cookie-consent__box {
    padding: 14px 12px 12px;
  }

  .cookie-consent__title {
    font-size: 0.94rem;
  }

  .cookie-consent__text {
    font-size: 0.76rem;
  }

  .cookie-consent__button {
    width: 100%;
    text-align: center;
  }

  .cookie-modal {
    padding: 12px;
  }

  .cookie-modal__panel {
    border-radius: 14px;
    padding: 16px 12px 13px;
  }

  .cookie-modal__title {
    font-size: 0.97rem;
  }

  .cookie-modal__text {
    font-size: 0.76rem;
  }

  .cookie-modal__item {
    padding: 10px 10px;
  }

  .cookie-modal__copy strong {
    font-size: 0.78rem;
  }

  .cookie-modal__copy span {
    font-size: 0.72rem;
  }

  .cookie-modal__actions {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .cookie-modal__button {
    width: 100%;
    text-align: center;
  }

  .skip-buttons {
    bottom: 10px;
    right: 10px;
  }

  .skip-buttons__button {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-card,
  .thumb-image,
  .play-badge,
  .external-link,
  .age-gate__button,
  .cookie-consent__button,
  .cookie-modal__button,
  .skip-buttons__button,
  .cookie-switch__slider,
  .cookie-switch__slider::after {
    -webkit-animation: none;
    animation: none;
    -webkit-transition: none;
    transition: none;
  }
}

@supports not (aspect-ratio: 16 / 9) {
  .thumb {
    height: 0;
    padding-top: 56.25%;
  }
}

@supports not (gap: 1rem) {
  .video-grid {
    margin: -11px;
  }

  .video-card {
    margin: 11px;
  }

  .external-links {
    margin: 12px -6px 0;
  }

  .external-link {
    margin: 6px;
  }

  .age-gate__actions,
  .cookie-consent__actions,
  .cookie-modal__list,
  .cookie-modal__actions,
  .skip-buttons {
    margin: -5px;
  }

  .age-gate__actions > *,
  .cookie-consent__actions > *,
  .cookie-modal__list > *,
  .cookie-modal__actions > *,
  .skip-buttons > * {
    margin: 5px;
  }

  .cookie-modal__list {
    margin-top: 11px;
  }

  .cookie-modal__actions {
    margin-top: 11px;
  }
}

@-webkit-keyframes card-reveal {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px) scale(0.985);
            transform: translateY(20px) scale(0.985);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}

@keyframes card-reveal {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px) scale(0.985);
            transform: translateY(20px) scale(0.985);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
