@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo+Black&family=Bungee&family=Monoton&family=Quantico:ital,wght@0,400;0,700;1,400;1,700&family=Teko:wght@300..700&display=swap');

:root {
  --page-bg: #000000;
  --shell-bg: #000000;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --subtle: rgba(255, 255, 255, 0.62);
  --shell-width: min(526px, calc(100vw - 16px));
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
}

img {
  user-select: none;
  -webkit-user-drag: none;
}

.page {
  min-height: 100vh;
  background: #000;
}

.stage {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  background: #000;
}

.phone-shell {
  position: relative;
  width: var(--shell-width);
  background: var(--shell-bg);
  border-radius: 30px 30px 0 0;
  overflow: clip;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.035),
    0 26px 60px rgba(0, 0, 0, 0.54);
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 0;
}

.sticky-header__inner {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 8px 14px;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translateY(-108%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.sticky-header.is-visible .sticky-header__inner {
  opacity: 1;
  transform: translateY(0);
}

.sticky-header__avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
  flex: none;
}

.sticky-header__title-row {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}

.sticky-header__title {
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero {
  position: relative;
  min-height: 700px;
  background: #000;
}

.hero__media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Фото профиля внутри hero__media */
.hero__media img,
.hero__media .profile-photo-main {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Видео-фон — не взаимодействует, поверх фото */
.hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
  z-index: 1;
}

.hero__fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 72%, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.3) 18%, transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 47%, rgba(0, 0, 0, 0.62) 68%, rgba(0, 0, 0, 0.96) 84%, #000 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 700px;
  padding: 0 24px 24px;
  text-align: center;
}

.hero__profile {
  width: 100%;
  margin-top: auto;
  padding-top: 40px;
}

.profile-title {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  font-size: 31px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.profile-handle {
  margin: 6px 0 0;
  color: var(--subtle);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.verified-badge {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(180deg, #7e7cff 0%, #6665ff 100%);
  box-shadow: 0 8px 18px rgba(102, 101, 255, 0.38);
}

.verified-badge svg {
  width: 10px;
  height: 10px;
}

.verified-badge--tiny {
  width: 13px;
  height: 13px;
}

.verified-badge--tiny svg {
  width: 7px;
  height: 7px;
}







.followers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 13px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.followers svg {
  width: 12px;
  height: 12px;
}

.profile-note {
  max-width: 345px;
  margin: 17px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.2;
}

.content {
  display: grid;
  gap: 7px;
  padding: 0 12px;
  background: #000;
}

.content-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
  background: #111111;
}

.content-card--primary {
  min-height: 330px;
}

.content-card--secondary {
  min-height: 310px;
}

.content-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
}

.content-card--primary img {
  object-position: center 26%;
}

.content-card--secondary img {
  object-position: center 32%;
}

.content-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.04) 48%, rgba(0, 0, 0, 0.74) 100%);
}

.content-card__label {
  position: absolute;
  inset: auto 18px 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.content-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 33% 33%, #10d0ff 0 24%, transparent 26%),
    linear-gradient(135deg, #14d5ff 0%, #098de8 100%);
  box-shadow: 0 8px 16px rgba(9, 141, 232, 0.35);
}

.content-card__badge::before {
  content: "";
  position: absolute;
  right: -5px;
  top: 5px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: inherit;
}

.footer {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 13px 18px 18px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 10px;
  line-height: 1;
  background: #000;
}

@media (max-width: 768px) {
  :root {
    --shell-width: 100vw;
  }

  .stage {
    padding-top: 0;
  }

  .phone-shell {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero__media {
    inset: 0;
  }

  .hero__content {
    min-height: 620px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .content {
    gap: 10px;
    padding: 0 14px;
  }

  .content-card--primary {
    min-height: 300px;
  }

  .content-card--secondary {
    min-height: 270px;
  }

  .footer {
    padding-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .profile-title {
    font-size: 29px;
  }

  .profile-handle {
    font-size: 14px;
  }

  .profile-note {
    font-size: 11px;
  }

  .content-card--primary {
    min-height: 250px;
  }

  .content-card--secondary {
    min-height: 220px;
  }
}

@font-face {
    font-family:'GmarketSans';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight:500;
    font-style:normal;
}

@font-face {
    font-family:'GmarketSans';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
    font-weight:300;
    font-style:normal;
}

@font-face {
    font-family:'GmarketSans';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight:800;
    font-style:normal;
}

/* CSS Reset */
body,html,
header,footer,aside,nav,section,article,details,figure,figcaption,menu,command,
div,dl,dd,ol,ul,li,form,fieldset,legend,iframe,table,caption,thead,tfoot,tbody,tr,th,td, /* Block Element */
h1,h2,h3,h4,h5,h6,dt,summary,input,textarea,button,select,datalist,
img,embed,object,canvas,audio,video,meter,progress,keygen, /* Inline Block Element */
a,label,output,dialog, /* Inline Element */
address,blockquote, /* Text Block Element */
p,pre,/* Text Inline Block Element */
span,b,strong,i,em,dfn,var,u,ins,s,del,q,mark,small,sub,sup,abbr,bdi,bdo,cite,time,ruby,rp,rt,code,kbd,samp, /* Text Inline Element */
acronym,big,frame,frameset,noframes,tt, /* Not HTML5 Used Element */
map,option,hr,*{border:0;padding:0;margin:0;color:inherit;font-family:inherit;font-size:inherit;line-height:inherit;}
header,footer,aside,nav,section,article,details,summary,figure,figcaption,menu,command{display:block} /* HTML5 Block Element */
applet,basefont,center,dir,font,strike{display:none} /* XHTML4, HTML5 Element Not Used Remove */
q,blockquote{quotes:none;content:none}
li,menu{list-style:none;word-break:break-all}

table{width:100%;border-spacing:0;border-collapse:separate;} /* Table Border (separate) */
caption{text-align:left}
th,td{text-align:center;vertical-align:middle}

address{font-style:normal}
label{display:inline-block;}
a{text-decoration:none;display:inline-block;} /* A Attribute  */

/* Common Setting */
html{overflow-y:auto;}
html,body{height:100%;} /* Horizen Scroll */
body {color:#333;font-size:17px;font-family:"GmarketSans", "Montserrat", 'Noto Sans KR',  Pretendard, -apple-system, BlinkMacSystemFont, 'GmarketSans', 'Noto Sans KR', sans-serif, "Nanum Gothic";font-weight:400;min-width:320px;background-color:#F3F3F3;}
div{outline:0}
img {vertical-align:middle;}

::selection {background-color: #74e4ff;color:#c8a3cf;}
::-moz-selection {background-color: #74e4ff;color:#c8a3cf;}

.clear{position:relative;clear:both;}

.warp {position:relative;width:500px;margin:30px auto;padding:0;background-color:white;text-align:center;}

/* .topphoto {position:relative;width:100%;min-height:590px;background-position:center;background-size:auto;background-attachment:fixed;background-position:top;} */

/* ?идео */
.topphoto {
    position: relative;
    width: 100%;
    min-height: 590px;
    overflow: hidden;
    background: #000;
}

.topphoto-video-bg,
.topphoto-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

.topphoto-video-bg {
    object-fit: cover;
    object-position: center center;
    filter: blur(28px) brightness(0.75);
    transform: scale(1.12);
}

.topphoto-video {
    z-index: 2;
    object-fit: contain;
    object-position: center center;
}

@media only screen and (max-width: 500px) {
    .topphoto {
        min-height: 72.5vh;
    }
}

/* .topphoto {
    aspect-ratio: 406 / 720;
    min-height: auto;
    height: auto;
} */

.profile {position:relative;background-color:white;margin-top:-40px;border-top-left-radius:50px;border-top-right-radius:50px; z-index:3}
.profile .profile_photo {width:170px;border-radius:50%;border:solid 5px #FFF;margin-top:-85px;}
.profile h1 {font-family:'Montserrat';font-weight:400;font-size:42px;padding:15px 0 10px 0;}
.profile h1 b {font-weight:800;}
.profile p {opacity:0.7;line-height:30px;}
.profile span {font-family:'Montserrat';font-weight:700;font-size:15px;}

.sns {position:relative;padding:20px 0;}
.sns a {padding:0 5px;}
.sns a img {width:40px;}

.link {position:relative;padding:0 20px 0 20px;}
.link li {margin:10px 0;background-color:#f2f2f2;border-radius:25px;border:dashed 1px #a3a3a3;}
.link li a {display:block;font-size:17px;padding:35px 0;}
.link .imp {background-color:#000;color:#FFF;border:0px;}
.link .en {font-family:'Montserrat';font-weight:700;}
.link .viewchat {color:#ca3e00;}
.link .imp b {color:#ffc600;}

.thum {position:relative;padding:0px 20px 0 20px;}
.thum li {float:left;width:calc(50% - 10px);margin-right:10px;margin-bottom:10px}
.thum li:nth-child(even) {margin-right:0px;}

.thum h1 {font-size:24px;padding-top:40px;}
.thum span {font-size:13px;opacity:0.5;}

.swiper-slide {padding:20px 0 60px 0;}
.swiper-slide img {width:100%;border-radius:15px;filter:grayscale(0);opacity:0.9;}


/* ---- Spoiler-style gate (blur-block + dots + hint + FX variants) ---- */
.thum .swiper-slide a.gallery-item.gated {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 15px;
  -webkit-tap-highlight-color: transparent;
}

.thum .swiper-slide a.gallery-item.gated img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
}

/* main icon (lock/play) */
.thum .swiper-slide a.gallery-item .gate-lock-icon {
  position: absolute;
  z-index: 6;
  pointer-events: none;
  color: #fff;
  line-height: 1;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);

  font-variation-settings:
    "FILL" 1,
    "wght" 640,
    "GRAD" -10,
    "opsz" 48;

  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* centered icon when locked (???? в??е, ??об? б?л о????п до ?ек??а) */
.thum .swiper-slide a.gallery-item.gated.is-locked .gate-lock-icon,
.thum .swiper-slide a.gallery-item.gated.is-revealing .gate-lock-icon {
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 58px;
  padding: 14px;
  border-radius: 999px;

  background:
    radial-gradient(circle at 28% 22%,
      rgba(255,255,255,0.22) 0%,
      rgba(255,255,255,0.08) 45%,
      rgba(0,0,0,0.22) 100%);
  border: 1px solid rgba(255,255,255,0.20);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    0 18px 44px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

/* corner icon when unlocked */
.thum .swiper-slide a.gallery-item.gated.is-unlocked:not(.is-revealing) .gate-lock-icon {
  top: 10px;
  right: 10px;
  left: auto;
  transform: none;
  font-size: 32px;
  padding: 8px;
  border-radius: 999px;

  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0.92;
}

.thum .swiper-slide a.gallery-item.gated.is-revealing .gate-lock-icon {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
}

/* blur overlay base (дл? dot-??ил? о??авл?ем пло?нее) */
.thum .swiper-slide a.gallery-item.gated .blur-block {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 15px;
  overflow: hidden;

  /* default alpha if not overridden per card */
  --gate-blur-alpha-default: 0.68;

  /* use per-card override if set: --gate-blur-alpha */
  background: rgb(0 0 0 / var(--gate-blur-alpha, var(--gate-blur-alpha-default, 0.68)));
  backdrop-filter: blur(40px) brightness(1.05) saturate(1.15);
  -webkit-backdrop-filter: blur(40px) brightness(1.05) saturate(1.15);

  opacity: var(--gate-blur-layer-opacity, 1);

  transition: opacity .3s ease;
  pointer-events: none;
}

/* gradient/dual ??п?оз?а?нее (как на ?во?м п?име?е), но в?? е?? зак???о */
.thum .swiper-slide a.gallery-item.gated.gate-fx-gradient.is-locked .blur-block,
.thum .swiper-slide a.gallery-item.gated.gate-fx-dual.is-locked .blur-block {
  --gate-blur-alpha-default: 0.52;
  backdrop-filter: blur(34px) brightness(1.08) saturate(1.18);
  -webkit-backdrop-filter: blur(34px) brightness(1.08) saturate(1.18);
}

/* artificial lighting (soft) */
.thum .swiper-slide a.gallery-item.gated.is-locked .blur-block::before {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  opacity: 0.55;
  background:
    radial-gradient(closest-side at 55% 45%,
      rgba(255,255,255,0.18) 0%,
      rgba(255,255,255,0.06) 32%,
      rgba(255,255,255,0.00) 68%);
  mix-blend-mode: screen;
  animation: gateLightMove 4.2s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes gateLightMove {
  0%, 100% { transform: translate3d(-2%, -1%, 0) rotate(-2deg); opacity: 0.52; }
  50%      { transform: translate3d( 3%,  2%, 0) rotate( 2deg); opacity: 0.62; }
}

/* ===== FX: Gradient blur (animated, ALWAYS visible; NO pulsing) ===== */
.thum .swiper-slide a.gallery-item.gated.gate-fx-gradient.is-locked .blur-block::after,
.thum .swiper-slide a.gallery-item.gated.gate-fx-dual.is-locked .blur-block::after {
  content: "";
  position: absolute;
  inset: -50%;
  pointer-events: none;

  /* заме?н?й, но акк??а?н?й (?иоле?/?иан под ?ай?) */
  background:
    radial-gradient(closest-side at 25% 30%,
      rgba(122,  92, 255, 0.42) 0%,
      rgba(122,  92, 255, 0.00) 64%),
    radial-gradient(closest-side at 72% 55%,
      rgba( 80, 196, 255, 0.34) 0%,
      rgba( 80, 196, 255, 0.00) 62%),
    linear-gradient(120deg,
      rgba(255,255,255,0.00) 0%,
      rgba(255,255,255,0.14) 30%,
      rgba(255,255,255,0.00) 66%);

  opacity: 0.72;                 /* видно, но не ?�кри?и???*/
  filter: blur(22px) saturate(1.25);
  mix-blend-mode: screen;

  transform: rotate(10deg);
  animation: gateGradientFlow 4.6s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes gateGradientFlow {
  0%   { transform: translate3d(-14%, -8%, 0) rotate(10deg); opacity: 0.66; }
  50%  { transform: translate3d(  6%,  8%, 0) rotate(10deg); opacity: 0.78; }
  100% { transform: translate3d( 16%, 14%, 0) rotate(10deg); opacity: 0.66; }
}

/* ===== FX: Dual blur pulse (?ол?ко dual) ===== */
.thum .swiper-slide a.gallery-item.gated.gate-fx-dual.is-locked .blur-block {
  animation: gateBlurPulse 2.8s ease-in-out infinite;
}

/* ??NEW: snow + pulse */
.thum .swiper-slide a.gallery-item.gated.gate-fx-dots-dual.is-locked .blur-block {
  animation: gateBlurPulse var(--gate-pulse-duration, 2.8s) ease-in-out infinite;
}

@keyframes gateBlurPulse {
  0%, 100% { opacity: var(--gate-blur-layer-opacity, 1); }
  50%      { opacity: calc(var(--gate-blur-layer-opacity, 1) * 0.92); }
}

/* ===== FX: blur ??на??о??ий blur ?е?ез backdrop-filter ===== */
.thum .swiper-slide a.gallery-item.gated.gate-fx-blur.is-locked .blur-block,
.thum .swiper-slide a.gallery-item.gated.gate-fx-blur-dots.is-locked .blur-block {
  background: rgb(0 0 0 / 0.05);
  backdrop-filter: blur(var(--gate-blur-max, 18px));
  -webkit-backdrop-filter: blur(var(--gate-blur-max, 18px));
  animation: gateRealBlur var(--gate-blur-pulse-duration, 3s) ease-in-out infinite;
}

@keyframes gateRealBlur {
  0%, 100% {
    backdrop-filter: blur(var(--gate-blur-max, 18px));
    -webkit-backdrop-filter: blur(var(--gate-blur-max, 18px));
    background: rgb(0 0 0 / 0.05);
  }
  45%, 55% {
    backdrop-filter: blur(var(--gate-blur-min, 2px));
    -webkit-backdrop-filter: blur(var(--gate-blur-min, 2px));
    background: rgb(0 0 0 / 0.0);
  }
}

/* dots overlay (snow) ??ONLY for gate-fx-dots */
.thum .swiper-slide a.gallery-item.gated .dots {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  transition: opacity .3s ease;
}

.thum .swiper-slide a.gallery-item.gated .dot {
  position: absolute;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  animation: move-dot 10s infinite ease-in-out;
  will-change: transform;
  mix-blend-mode: screen;
}

@keyframes move-dot {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(50px, -30px); }
  50%  { transform: translate(-20px, 50px); }
  75%  { transform: translate(-30px, -20px); }
  100% { transform: translate(0, 0); }
}

/* IMPORTANT: ?би?аем ?нег на г?адиен?н?? ка??о?ка? */
.thum .swiper-slide a.gallery-item.gated.gate-fx-gradient.is-locked .dots,
.thum .swiper-slide a.gallery-item.gated.gate-fx-dual.is-locked .dots {
  opacity: 0 !important;
  display: none !important;
}

/* hint capsule (Korean) ??ниже, ??об? б?л о????п о? иконки */
.thum .swiper-slide a.gallery-item.gated .gate-hint {
  position: absolute;
  z-index: 7;
  left: 50%;
  top: 72%;
  transform: translate(-50%, -50%);
  pointer-events: none;

  padding: 12px 16px;
  border-radius: 999px;

  color: rgba(255,255,255,0.96);
  font-weight: 750;
  letter-spacing: -0.25px;
  white-space: nowrap;

  background:
    radial-gradient(120% 140% at 20% 10%,
      rgba(255,255,255,0.20) 0%,
      rgba(255,255,255,0.07) 35%,
      rgba(0,0,0,0.24) 100%);
  border: 1px solid rgba(255,255,255,0.20);

  box-shadow:
    0 18px 46px rgba(0,0,0,0.44),
    inset 0 1px 0 rgba(255,255,255,0.14);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  font-size: clamp(13px, 3.2vw, 16px);
  transition: opacity .24s ease, transform .24s ease;
}

.thum .swiper-slide a.gallery-item.gated.is-hint-dismissed .gate-hint {
  opacity: 0;
  transform: translate(-50%, -56%) scale(0.985);
}

/* Optional: toggle hint visibility without touching JS.
   - Add/remove class `gate-hint-hidden` to hide/show.
   - Or set data-gate-hint="off" to disable completely (JS will also remove). */
.thum .swiper-slide a.gallery-item.gated.gate-hint-hidden .gate-hint {
  opacity: 0;
  transform: translate(-50%, -56%) scale(0.985);
}

.thum .swiper-slide a.gallery-item.gated[data-gate-hint="off"] .gate-hint,
.thum .swiper-slide a.gallery-item.gated[data-gate-hint="0"] .gate-hint,
.thum .swiper-slide a.gallery-item.gated[data-gate-hint="false"] .gate-hint {
  display: none !important;
}

/* reveal -> fade overlays out */
.thum .swiper-slide a.gallery-item.gated.is-revealing .blur-block,
.thum .swiper-slide a.gallery-item.gated.is-revealing .dots,
.thum .swiper-slide a.gallery-item.gated.is-revealing .gate-hint {
  opacity: 0;
}

/* unlocked safety */
.thum .swiper-slide a.gallery-item.gated.is-unlocked .blur-block,
.thum .swiper-slide a.gallery-item.gated.is-unlocked .dots,
.thum .swiper-slide a.gallery-item.gated.is-unlocked .gate-hint {
  opacity: 0;
  display: none;
}

/* mobile tuning */
@media (max-width: 480px) {
  .thum .swiper-slide a.gallery-item.gated { border-radius: 14px; }
  .thum .swiper-slide a.gallery-item.gated .blur-block { border-radius: 14px; }

  .thum .swiper-slide a.gallery-item.gated.is-locked .gate-lock-icon {
    top: 45%;
    font-size: 54px;
    padding: 13px;
  }

  .thum .swiper-slide a.gallery-item.gated .gate-hint {
    top: 74%;
    padding: 11px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thum .swiper-slide a.gallery-item.gated .dot { animation: none; }
  .thum .swiper-slide a.gallery-item.gated .blur-block { animation: none; }
  .thum .swiper-slide a.gallery-item.gated.is-locked .blur-block::before,
  .thum .swiper-slide a.gallery-item.gated.is-locked .blur-block::after {
    animation: none;
  }
  .thum .swiper-slide a.gallery-item.gated .blur-block,
  .thum .swiper-slide a.gallery-item.gated .dots,
  .thum .swiper-slide a.gallery-item.gated .gate-hint,
  .thum .swiper-slide a.gallery-item .gate-lock-icon {
    transition: none;
  }
}

.copy {clear:both;font-size:12px;font-family:'Montserrat';font-weight:600;color:#333;padding:20px 0 20px 0;letter-spacing:1px;border-top:solid 2px #f2f2f2;background-color:#e9e9e9;}


.faqtop {position:relative;background-color:#333;color:white;padding:20px 0;}
.faqtop a {position:absolute;top:20px;left:10px;}
.faqtop a span {font-size:30px;}
.faqtop h1 {font-size:20px;}

.faq {position:relative;text-align:left;padding:20px;}
.faq li {position:relative;}
.faq li a {font-size:20px;}
.faq li span {font-size:20px;position:absolute;top:26px;right:0px;color:#999;}
.faq li b {color:#da0100;}
.faq li:first-child {border-bottom:solid 1px #e5e5e5;padding:22px 0;}
.faq li:last-child {font-size:17px;line-height:28px;padding:24px 20px;border-bottom:solid 1px #e5e5e5;background-color:#fffef9;display:none;}
.faq ul:last-child li:first-child {border-bottom:0;}

.faq .on li span {transform:rotate(180deg);}
.faq .on li:last-child {display:block;}

@media only screen and (max-width:500px) {

.warp {width:100%;margin:0px}

.topphoto {min-height:72.5vh;}

.profile {margin-top:-50px;border-top-left-radius:25px;border-top-right-radius:25px;}
.profile .profile_photo {width:120px;margin-top:-60px;}
.profile h1 {font-size:36px;padding:10px 0 5px 0;}
.profile p {line-height:24px;font-size:15px;}
.profile span {font-size:13px;}

.sns a img {width:35px;}

.link {padding:0 10px 30px 10px;}
.link li {margin:5px 0;border-radius:15px;}
.link li a {font-size:15px;padding:25px 0;}

.thum {position:relative;padding:30px 10px 0 10px;}
.thum li {float:left;width:calc(50% - 3px);margin-right:5px;margin-bottom:5px}
.thum li:nth-child(even) {margin-right:0px;}
.thum li img {border-radius:5px;width:auto;}

.copy {clear:both;font-size:11px;}

.faq {padding:10px;}
.faq li a {font-size:17px;}
.faq li span {top:22px;}
.faq li:first-child {padding:20px 0;}
.faq li:last-child {font-size:15px;line-height:26px;padding:20px 18px;}

}



/* ?�?� Photo modal page (photo.html) ?�?� */
body.photo-page {
  margin: 0;
  overflow: hidden;
  background: #000;
}

.photo-modal-backdrop {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.86);
}

.photo-modal {
  position: relative;
  width: min(100%, 980px);
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-modal img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

.photo-close {
  position: absolute;
  top: -12px;
  right: -12px;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.photo-error {
  position: absolute;
  bottom: -38px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.thum .swiper-slide a video {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;       
  display: block;
  pointer-events: none;
}
.link ul li.imp a,
.link ul li.imp.en a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 16px 72px;
    text-decoration: none;
    box-sizing: border-box;
}

.link-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 10px;
}

.imp-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    line-height: 1.2;
}

.imp-more {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    line-height: 1;
    display: block;
    font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 24;
}

.link li.imp > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 84px;
    padding: 16px 58px 16px 84px;
    box-sizing: border-box;
    overflow: hidden;
    isolation: isolate;
}

.link li.imp > a .link-text {
    position: relative;
    z-index: 4;
    display: block;
    width: 100%;
    text-align: center;
    line-height: 1.18;
    letter-spacing: -0.02em;
    white-space: nowrap;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.45);
}

.link li.imp > a .link-text span {
    display: inline;
}

.link li.imp > a .imp-more {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    font-size: 24px;
    line-height: 1;
    opacity: 0.98;
}

.link li.imp > a .link-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    object-fit: cover;
    border-radius: 14px;
    z-index: 5;
    backface-visibility: hidden;
    filter:
        saturate(1.04)
        brightness(1.02)
        drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
    animation: premiumIconFloat 5.4s ease-in-out infinite;
}

.link li.imp > a::after {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%) scale(0.94);
    border-radius: 14px;
    pointer-events: none;
    z-index: 3;
    opacity: 0.72;
    background:
        radial-gradient(circle at 28% 25%,
            rgba(255,255,255,0.30) 0%,
            rgba(255,255,255,0.12) 24%,
            rgba(255,255,255,0.00) 68%),
        radial-gradient(circle at 70% 75%,
            rgba(255,220,150,0.18) 0%,
            rgba(255,220,150,0.00) 62%);
    filter: blur(8px);
    animation: premiumIconGlow 5.4s ease-in-out infinite;
}

.link li.imp > a::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    border-radius: 14px;
    pointer-events: none;
    z-index: 6;
    opacity: 0.95;
    background:
        linear-gradient(
            115deg,
            rgba(255,255,255,0.00) 0%,
            rgba(255,255,255,0.00) 34%,
            rgba(255,255,255,0.16) 43%,
            rgba(255,255,255,0.82) 50%,
            rgba(255,255,255,0.16) 57%,
            rgba(255,255,255,0.00) 66%,
            rgba(255,255,255,0.00) 100%
        );
    background-size: 220% 220%;
    background-position: 140% 50%;
    animation: premiumIconShine 4.5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.link li.imp.en > a .link-icon,
.link li.imp.en > a::after {
    animation-delay: 0.9s;
}

.link li.imp.en > a::before {
    animation-delay: 1.15s;
}

.link li.imp > a .button-star-layer {
    position: absolute;
    left: 86px;
    right: 10px;
    top: 8px;
    bottom: 8px;
    border-radius: 18px;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.link li.imp > a .button-star {
    --x: 40px;
    --y: 20px;
    --size: 8px;
    --life: 1200ms;
    --rot: 0deg;
    --alpha: 1;

    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.14) rotate(var(--rot));
    transform-origin: center;
    will-change: transform, opacity;
    mix-blend-mode: screen;
    animation: buttonStarTwinkle var(--life) cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.link li.imp > a .button-star-halo,
.link li.imp > a .button-star-core,
.link li.imp > a .button-star-line {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    transform: translate(-50%, -50%);
}

.link li.imp > a .button-star-halo {
    width: calc(var(--size) * 2.6);
    height: calc(var(--size) * 2.6);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(225,245,246,0.28) 0%,
        rgba(225,245,246,0.14) 34%,
        rgba(225,245,246,0.00) 74%
    );
    filter: blur(2px);
    opacity: calc(var(--alpha) * 0.85);
}

.link li.imp > a .button-star-core {
    width: calc(var(--size) * 0.34);
    height: calc(var(--size) * 0.34);
    border-radius: 50%;
    background: #f8feff;
    box-shadow:
        0 0 8px rgba(255,255,255,0.92),
        0 0 16px rgba(195,234,230,0.34);
}

.link li.imp > a .button-star-line {
    border-radius: 999px;
    opacity: calc(var(--alpha) * 0.98);
    box-shadow:
        0 0 6px rgba(240,255,255,0.78),
        0 0 12px rgba(195,234,230,0.24);
}

.link li.imp > a .button-star-line.is-h {
    width: calc(var(--size) * 4.8);
    height: 1.25px;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(243,252,255,0.98) 50%,
        rgba(255,255,255,0) 100%
    );
}

.link li.imp > a .button-star-line.is-v {
    width: 1.25px;
    height: calc(var(--size) * 6.2);
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0) 0%,
        rgba(243,252,255,0.98) 50%,
        rgba(255,255,255,0) 100%
    );
}

.link li.imp > a .button-star-line.is-d1 {
    width: calc(var(--size) * 3.6);
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(243,252,255,0.82) 50%, rgba(255,255,255,0) 100%);
    transform: translate(-50%, -50%) rotate(45deg);
}

.link li.imp > a .button-star-line.is-d2 {
    width: calc(var(--size) * 3.6);
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(243,252,255,0.82) 50%, rgba(255,255,255,0) 100%);
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* ── @keyframes: button stars ── */
@keyframes buttonStarTwinkle {
    0%   { opacity: 0;                       transform: translate(-50%, -50%) scale(0.14) rotate(var(--rot)); }
    12%  { opacity: var(--alpha);            transform: translate(-50%, -50%) scale(1.08) rotate(var(--rot)); }
    40%  { opacity: var(--alpha);            transform: translate(-50%, -50%) scale(1.00) rotate(var(--rot)); }
    80%  { opacity: calc(var(--alpha)*0.55); transform: translate(-50%, -50%) scale(0.80) rotate(var(--rot)); }
    100% { opacity: 0;                       transform: translate(-50%, -50%) scale(0.20) rotate(var(--rot)); }
}

/* ── @keyframes: premium icon on buttons ── */
@keyframes premiumIconFloat {
    0%, 100% { transform: translateY(-50%) translateY(0px);  }
    50%       { transform: translateY(-50%) translateY(-3px); }
}

@keyframes premiumIconGlow {
    0%, 100% { opacity: 0.72; }
    50%       { opacity: 0.92; }
}

@keyframes premiumIconShine {
    0%   { background-position: 140% 50%; }
    40%  { background-position: -20% 50%; }
    100% { background-position: 140% 50%; }
}

/* ── @keyframes: luxeShimmer + luxePulse (from harin) ── */
@keyframes luxeShimmer {
    0%   { background-position: -300% center; }
    100% { background-position:  300% center; }
}

@keyframes luxePulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(212, 165, 116, 0.30), 0 0 0 0    rgba(212, 165, 116, 0.0); }
    50%       { box-shadow: 0 8px 48px rgba(212, 165, 116, 0.50), 0 0 0 6px rgba(212, 165, 116, 0.0); }
}

/* ── First button: shimmer + pulse (harin style, pink tones for angelina) ── */
.link li.imp:first-child > a {
    background-size: 300% auto;
    background-image: linear-gradient(
        105deg,
        #3a1a2e 0%,
        #7b3f6e 12%,
        #c47ab0 26%,
        #f0c8e8 38%,
        #fff0fa 48%,
        #f0c8e8 54%,
        #c47ab0 66%,
        #7b3f6e 80%,
        #3a1a2e 100%
    );
    border-color: rgba(196, 122, 176, 0.40);
    color: #fff0fa;
    font-weight: 800;
    text-shadow: 0 1px 4px rgba(0,0,0,0.35);
    animation: luxeShimmer 4s linear infinite, luxePulse 3s ease-in-out infinite;
    letter-spacing: 0.03em;
}

.link li.imp:first-child > a:hover {
    animation: luxeShimmer 2.5s linear infinite, luxePulse 6s ease-in-out infinite;
    transform: translateY(-2px) scale(1.01);
}

/* ── Second button: subtle glow pulse ── */
.link li.imp:nth-child(2) > a {
    animation: luxePulse 4s ease-in-out infinite;
}

/* ── Swiper pagination dots (harin style) ── */
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.10);
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper-pagination-bullet-active {
    background: #fff;
    border-color: rgba(255,255,255,0.6);
    width: 28px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

/* ── Lock icon animations (harin style) ── */
@keyframes lockFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px);  }
    50%       { transform: translate(-50%, -50%) translateY(-4px); }
}

@keyframes lockPulseRing {
    0%   { box-shadow: 0 0 0 0    rgba(255,255,255,0.55), 0 4px 24px rgba(0,0,0,0.45); }
    60%  { box-shadow: 0 0 0 10px rgba(255,255,255,0.00), 0 4px 24px rgba(0,0,0,0.45); }
    100% { box-shadow: 0 0 0 0    rgba(255,255,255,0.00), 0 4px 24px rgba(0,0,0,0.45); }
}

@keyframes lockShine {
    0%   { background-position: 160% 50%; opacity: 0; }
    18%  { opacity: 0.9; }
    50%  { background-position: -60% 50%; opacity: 0.9; }
    72%  { opacity: 0; }
    100% { background-position: -60% 50%; opacity: 0; }
}

.thum .swiper-slide a.gallery-item.gated.is-locked .gate-lock-icon {
    animation: lockFloat 3.2s ease-in-out infinite, lockPulseRing 2.4s ease-out infinite;
}

.thum .swiper-slide a.gallery-item.gated.is-locked .gate-lock-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        115deg,
        rgba(255,255,255,0.00) 30%,
        rgba(255,255,255,0.80) 50%,
        rgba(255,255,255,0.00) 70%
    );
    background-size: 220% 100%;
    background-position: 160% 50%;
    pointer-events: none;
    animation: lockShine 3.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

/* ── Scrollbar hidden ── */
::-webkit-scrollbar { display: none; }
html { scrollbar-width: none; }
body { -ms-overflow-style: none; }

/* ===== Cleaned current overrides ===== */

.desktop-bg-blur {
  position: fixed;
  inset: -5%;
  background-image: url("assets/carousel_5.webp");
  background-size: cover;
  background-position: center;
  filter: blur(20px) brightness(0.4);
  z-index: 0;
  display: none;
}

@media (min-width: 769px) {
  .desktop-bg-blur {
    display: block;
  }
}

.profile-photo-main {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.04),
    0 18px 40px rgba(0, 0, 0, 0.28);
}

.profile-title > span:first-child,
.sticky-header__title,
.profile-note b {
  display: inline-block;
  background-image: linear-gradient(
    120deg,
    #ffffff 0%,
    #d9d7ff 18%,
    #8e8bff 36%,
    #74e4ff 52%,
    #9f7cff 68%,
    #ffffff 84%,
    #cfd5ff 100%
  );
  background-size: 220% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: profileTitleGradient 5.8s linear infinite;
  text-shadow: 0 0 18px rgba(126, 124, 255, 0.18);
  will-change: background-position;
}

@keyframes profileTitleGradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 220% 50%;
  }
}

.sticky-header__title-row {
  gap: 6px;
}

.sticky-header__title {
  line-height: 1.05;
}

.links-section {
  padding: 10px 16px;
  margin-top: 28px;
  margin-bottom: 24px;
}

.links-section ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-section ul li {
  position: relative;
  border-radius: 16px;
  isolation: isolate;
}

.links-section ul li::before {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: 0;
  border-radius: 16px;
  pointer-events: none;
  background-size: 300% 100%;
  filter: blur(12px);
  -webkit-filter: blur(12px);
  opacity: 0.88;
  animation: ctaGlowFlow 7s linear infinite;
}

.links-section ul li:nth-child(1)::before {
  background-image: linear-gradient(
    90deg,
    #ff63cb 0%,
    #8f87ff 28%,
    #5ce2ff 54%,
    #a66dff 78%,
    #ff63cb 100%
  );
}

.links-section ul li:nth-child(2)::before {
  background-image: linear-gradient(
    90deg,
    #6f6cff 0%,
    #4bdfff 34%,
    #8c82ff 66%,
    #6f6cff 100%
  );
  animation-duration: 8.2s;
}

.custom-link-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 16px 20px 16px 84px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    180deg,
    rgba(24, 20, 38, 0.9) 0%,
    rgba(10, 18, 30, 0.94) 100%
  );
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.custom-link-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 22%,
    rgba(255, 255, 255, 0.18) 38%,
    rgba(255, 255, 255, 0.58) 50%,
    rgba(255, 255, 255, 0.18) 62%,
    rgba(255, 255, 255, 0) 78%
  );
  background-size: 220% 100%;
  background-position: 160% 50%;
  mix-blend-mode: screen;
  animation: ctaShine 4.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.custom-link-btn > * {
  position: relative;
  z-index: 2;
}

.custom-link-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
}

.custom-link-btn .link-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  transform: translateY(-50%) scale(1.06);
  /* filter: blur(1px) saturate(1.08) brightness(0.96);
  -webkit-filter: blur(1px) saturate(1.08) brightness(0.96); */
  opacity: 0.92;
  pointer-events: none;
  will-change: transform, filter;
  animation: ctaIconFloat 4.2s ease-in-out infinite;
}

.custom-link-btn .link-text {
  display: block;
  width: 100%;
  line-height: 1.18;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.thum {
  padding-bottom: 20px;
}

@keyframes ctaGlowFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 300% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes ctaShine {
  0% {
    background-position: 160% 50%;
    opacity: 0;
  }
  16% {
    opacity: 0.95;
  }
  42% {
    background-position: -50% 50%;
    opacity: 0.95;
  }
  60%,
  100% {
    background-position: -50% 50%;
    opacity: 0;
  }
}

@keyframes ctaIconFloat {
  0%,
  100% {
    transform: translateY(-50%) scale(1.06);
  }
  50% {
    transform: translateY(calc(-50% - 3px)) scale(1.1);
  }
}

/* unified social buttons */
.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.social-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  flex: none;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(20, 20, 26, 0.92) 0%, rgba(11, 11, 16, 0.96) 100%);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: socialButtonFloat 4.8s ease-in-out infinite, socialButtonGlow 4.8s ease-in-out infinite;
}

.social-row .social-btn:nth-child(2) {
  animation-delay: 0.18s, 0.18s;
}

.social-row .social-btn:nth-child(3) {
  animation-delay: 0.34s, 0.34s;
}

.social-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.92;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 1;
  border-radius: 11px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 55%);
  opacity: 0.72;
}

.social-btn img {
  position: relative;
  z-index: 2;
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.22));
  animation: socialIconPulse 4.8s ease-in-out infinite;
}

.social-row .social-btn:nth-child(2) img {
  animation-delay: 0.18s;
}

.social-row .social-btn:nth-child(3) img {
  animation-delay: 0.34s;
}

.social-btn svg {
  display: none;
}

.social-btn:hover::before {
  opacity: 1;
  transform: scale(1.04);
}

.social-btn:hover img {
  transform: scale(1.06);
}

.social-btn--instagram::before {
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 217, 110, 0.55) 0%, rgba(255, 217, 110, 0) 36%),
    radial-gradient(circle at 78% 22%, rgba(255, 102, 168, 0.48) 0%, rgba(255, 102, 168, 0) 42%),
    linear-gradient(145deg, rgba(255, 101, 161, 0.38) 0%, rgba(118, 104, 255, 0.18) 100%);
}

.social-btn--instagram {
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.24),
    0 0 18px rgba(255, 101, 161, 0.16);
}

.social-btn--tiktok::before {
  background:
    radial-gradient(circle at 26% 22%, rgba(58, 255, 241, 0.42) 0%, rgba(58, 255, 241, 0) 40%),
    radial-gradient(circle at 78% 78%, rgba(255, 66, 113, 0.32) 0%, rgba(255, 66, 113, 0) 42%),
    linear-gradient(145deg, rgba(24, 24, 24, 0.16) 0%, rgba(15, 15, 15, 0.06) 100%);
}

.social-btn--tiktok {
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.24),
    -1px 0 0 rgba(37, 244, 238, 0.28),
    1px 0 0 rgba(254, 44, 85, 0.26);
}

.social-btn--img::before {
  background:
    radial-gradient(circle at 30% 22%, rgba(133, 169, 255, 0.28) 0%, rgba(133, 169, 255, 0) 42%),
    radial-gradient(circle at 74% 74%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.social-btn--img img {
  width: 22px;
  height: 22px;
}

@keyframes socialButtonFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes socialButtonGlow {
  0%,
  100% {
    box-shadow:
      0 10px 25px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
  50% {
    box-shadow:
      0 14px 28px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
}

@keyframes socialIconPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.96;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

/* keep carousel HTML unchanged; show icon instead of text lock */
.thum .swiper-slide a.gallery-item .gate-lock-icon {
  font-size: 0 !important;
  color: transparent !important;
  text-shadow: none;
  --gate-lock-icon-size: 32px;
}

.thum .swiper-slide a.gallery-item .gate-lock-icon::before {
  content: "";
  display: block;
  width: var(--gate-lock-icon-size);
  height: var(--gate-lock-icon-size);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='11' width='14' height='10' rx='4'/%3E%3Cpath d='M8 11V8a4 4 0 1 1 8 0v3'/%3E%3Ccircle cx='12' cy='16' r='1.2' fill='white' stroke='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.thum .swiper-slide a.gallery-item.gated.is-locked .gate-lock-icon,
.thum .swiper-slide a.gallery-item.gated.is-revealing .gate-lock-icon {
  --gate-lock-icon-size: 34px;
}

.thum .swiper-slide a.gallery-item.gated.is-unlocked:not(.is-revealing) .gate-lock-icon {
  --gate-lock-icon-size: 18px;
}

@media (max-width: 480px) {
  .custom-link-btn {
    min-height: 78px;
    padding: 14px 16px 14px 76px;
  }

  .custom-link-btn .link-icon {
    left: 12px;
    width: 46px;
    height: 46px;
  }

  .social-btn {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

  .social-btn::after {
    border-radius: 10px;
  }

  .social-btn img {
    width: 17px;
    height: 17px;
  }

  .social-btn--img img {
    width: 21px;
    height: 21px;
  }

  .links-section ul {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .profile-title > span:first-child,
  .sticky-header__title,
  .profile-note b,
  .links-section ul li::before,
  .custom-link-btn::before,
  .custom-link-btn .link-icon,
  .social-btn,
  .social-btn img {
    animation: none;
  }

  .profile-title > span:first-child,
  .sticky-header__title,
  .profile-note b {
    background-position: 50% 50%;
  }
}

/* middle social icon: keep original look, add only animation */

.social-row .social-btn--img {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent !important;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  transform: translateY(0) scale(1);
  animation: socialAppFloat 3.6s ease-in-out infinite;
  will-change: transform;
}

.social-row .social-btn--img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  filter: drop-shadow(0 6px 14px rgba(255, 107, 154, 0.18));
  animation: socialAppPulse 3.6s ease-in-out infinite;
  will-change: transform, filter;
}

.social-row .social-btn--img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 18%,
    rgba(255, 255, 255, 0.16) 42%,
    rgba(255, 255, 255, 0.42) 50%,
    rgba(255, 255, 255, 0.16) 58%,
    rgba(255, 255, 255, 0) 82%
  );
  background-size: 220% 100%;
  background-position: 140% 50%;
  mix-blend-mode: screen;
  opacity: 0.9;
  animation: socialAppShine 4.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes socialAppFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.03);
  }
}

@keyframes socialAppPulse {
  0%, 100% {
    filter: drop-shadow(0 6px 14px rgba(255, 107, 154, 0.18));
  }
  50% {
    filter: drop-shadow(0 10px 20px rgba(255, 107, 154, 0.3));
  }
}

@keyframes socialAppShine {
  0% {
    background-position: 140% 50%;
    opacity: 0;
  }
  14% {
    opacity: 0.9;
  }
  42% {
    background-position: -30% 50%;
    opacity: 0.9;
  }
  60%, 100% {
    background-position: -30% 50%;
    opacity: 0;
  }
}

@media (max-width: 480px) {
  .social-row .social-btn--img {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-row .social-btn--img,
  .social-row .social-btn--img img,
  .social-row .social-btn--img::after {
    animation: none;
  }
}

/* cta guide from harin, adapted for current landing */

.cta-guide {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  --spot-x: 50vw;
  --spot-y: 50vh;
}

.cta-guide.is-hidden {
  display: none;
}

.cta-guide-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(
      circle at var(--spot-x) var(--spot-y),
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0.02) 82px,
      rgba(0, 0, 0, 0.12) 118px,
      rgba(0, 0, 0, 0.34) 168px,
      rgba(0, 0, 0, 0.58) 250px,
      rgba(0, 0, 0, 0.76) 100%
    );
  transition: opacity 0.24s ease;
}

.cta-guide-bubble {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  transform: translate(0%, calc(-100% - 22px));
  opacity: 0;
  will-change: transform, opacity, left, top;
}

.cta-guide-text {
  padding: 11px 15px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(34, 28, 68, 0.96) 0%,
    rgba(14, 18, 40, 0.96) 100%
  );
  background-image: linear-gradient(
    120deg,
    #ffffff 0%,
    #d9d7ff 18%,
    #8e8bff 36%,
    #74e4ff 52%,
    #9f7cff 68%,
    #ffffff 84%,
    #cfd5ff 100%
  );
  background-size: 220% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: profileTitleGradient 5.8s linear infinite;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  border: 1px solid rgba(143, 135, 255, 0.24);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(143, 135, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cta-guide-arrow {
  font-size: 56px;
  line-height: 1;
  color: #8f87ff;
  transform: rotate(200deg);
  transform-origin: center;
  margin-right: 18px;
  margin-top: 15px;
  text-shadow:
    0 12px 26px rgba(0, 0, 0, 0.34),
    0 0 18px rgba(92, 226, 255, 0.24),
    0 0 28px rgba(143, 135, 255, 0.22);
}

.cta-guide.is-active .cta-guide-backdrop {
  opacity: 1;
  animation: ctaGuideBackdrop 1.8s ease forwards;
}

.cta-guide.is-active .cta-guide-bubble {
  animation: ctaGuideBurstDiagonal 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cta-guide.is-active .cta-guide-arrow {
  animation: ctaGuideArrowNudge 0.8s ease-in-out 2;
}

.links-section li.imp:first-child > .custom-link-btn {
  position: relative;
  z-index: 10000;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.links-section li.imp:first-child > .custom-link-btn::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 24px;
  pointer-events: none;
  opacity: 0;
  box-shadow:
    0 0 0 0 rgba(255, 90, 0, 0),
    0 0 0 0 rgba(255, 255, 255, 0);
}

.links-section li.imp:first-child > .custom-link-btn.is-guide-active {
  filter: brightness(1.08) saturate(1.05);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.24),
    0 18px 44px rgba(255, 90, 0, 0.18);
}

.links-section li.imp:first-child > .custom-link-btn.is-guide-active::after {
  animation: ctaTargetBurst 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes ctaGuideBackdrop {
  0% { opacity: 0; }
  14%, 78% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes ctaGuideBurstDiagonal {
  0% {
    opacity: 0;
    transform: translate(-10%, calc(-100% - 8px)) scale(0.94) rotate(-2deg);
  }
  16% {
    opacity: 1;
    transform: translate(-14%, calc(-100% - 24px)) scale(1) rotate(0deg);
  }
  38% {
    opacity: 1;
    transform: translate(-10%, calc(-100% - 16px)) scale(1.02) rotate(0deg);
  }
  64% {
    opacity: 1;
    transform: translate(-14%, calc(-100% - 22px)) scale(1) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translate(-4%, calc(-100% - 2px)) scale(0.98) rotate(1deg);
  }
}

@keyframes ctaGuideArrowNudge {
  0%, 100% {
    transform: rotate(160deg) translate(0, 0);
  }
  50% {
    transform: rotate(160deg) translate(8px, 8px);
  }
}

@keyframes ctaTargetBurst {
  0% {
    opacity: 0;
    box-shadow:
      0 0 0 0 rgba(255, 90, 0, 0),
      0 0 0 0 rgba(255, 255, 255, 0);
  }
  16% {
    opacity: 1;
    box-shadow:
      0 0 0 10px rgba(255, 90, 0, 0.12),
      0 0 0 2px rgba(255, 255, 255, 0.22);
  }
  46% {
    opacity: 1;
    box-shadow:
      0 0 0 14px rgba(255, 90, 0, 0.16),
      0 0 0 4px rgba(255, 255, 255, 0.18);
  }
  100% {
    opacity: 0;
    box-shadow:
      0 0 0 26px rgba(255, 90, 0, 0),
      0 0 0 10px rgba(255, 255, 255, 0);
  }
}

@media only screen and (max-width: 500px) {
  .cta-guide-text {
    font-size: 13px;
    padding: 10px 13px;
  }

  .cta-guide-arrow {
    font-size: 48px;
    margin-right: 26px;
    margin-top: 8px;
  }

  .cta-guide-bubble {
    transform: translate(-10%, calc(-100% - 18px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-guide.is-active .cta-guide-backdrop,
  .cta-guide.is-active .cta-guide-bubble,
  .cta-guide.is-active .cta-guide-arrow,
  .links-section li.imp:first-child > .custom-link-btn.is-guide-active::after {
    animation: none !important;
  }

  .cta-guide-backdrop,
  .cta-guide-bubble {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .photo-close {
    top: 10px;
    right: 10px;
  }
}

/* styles.css */

/* только вторая кнопка */
.links-section ul li:nth-child(2) .custom-link-btn .link-text {
  position: relative;
  left: -10px;
}

/* если на мобилке надо чуть меньше сдвиг */
@media (max-width: 480px) {
  .links-section ul li:nth-child(2) .custom-link-btn .link-text {
    left: -8px;
  }
}

.thum .swiper-slide a video {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 15px;
  pointer-events: none;
  background: #111;
}

/* gallery videos layered above photos without changing existing gate animations */
.thum .swiper-slide a.gallery-item.gated {
  position: relative;
}

.thum .swiper-slide a.gallery-item.gated .gallery-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
  pointer-events: none;
  background: transparent;
}

.thum .swiper-slide a.gallery-item.gated .gate-lock-icon,
.thum .swiper-slide a.gallery-item.gated .blur-block,
.thum .swiper-slide a.gallery-item.gated .dots,
.thum .swiper-slide a.gallery-item.gated .gate-hint {
  z-index: 2;
}

.thum .swiper-slide a.gallery-item.gated .gate-lock-icon {
  z-index: 6;
}

/* hero slideshow */
.hero__media {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slideshow img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  animation: heroSlideshow 9s infinite;
  will-change: opacity, transform;
}

.hero-slideshow img:nth-child(1) {
  animation-delay: 0s;
}

.hero-slideshow img:nth-child(2) {
  animation-delay: 3s;
}

.hero-slideshow img:nth-child(3) {
  animation-delay: 6s;
}

@keyframes heroSlideshow {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  8% {
    opacity: 1;
    transform: scale(1.02);
  }
  28% {
    opacity: 1;
    transform: scale(1.04);
  }
  36% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slideshow img {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .hero-slideshow img:first-child {
    opacity: 1;
  }
}