:root{
  --bg:white;
  --glass:rgba(255,255,255,.06);
  --line:rgba(255,255,255,.10);
  --text:black;
  --muted:#b7c0d9;
  --hot:#f43f5e;
  --cta:#a855f7;
  --cta-2:#22d3ee;
  --ok:#22c55e;
  --shadow:0 20px 60px rgba(0,0,0,.45);
  --radius:18px;
  --tap:48px;
}

*,
*::before,
*::after{ box-sizing:border-box }

html,body{ height:100% }
body{
  margin:0;
  color:var(--text);
  background:var(--bg);
  font:500 16px/1.45 Inter, ui-sans-serif, system-ui, Segoe UI, Roboto, Apple Color Emoji, Noto Color Emoji, Arial, sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Tło dopaminowe */
.bg{ position:fixed; inset:0; overflow:hidden; z-index:-2 }
.blob{
  position:absolute; filter:blur(60px);
  width:520px; height:520px; border-radius:50%;
  opacity:.55; animation: float 18s ease-in-out infinite;
}
.b1{ left:-80px; top:-60px; background:radial-gradient(closest-side, var(--cta), transparent 70%) }
.b2{ right:-120px; bottom:-120px; background:radial-gradient(closest-side, var(--hot), transparent 70%); animation-delay: -6s }
.noise{
  position:absolute; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  mix-blend-mode:soft-light; pointer-events:none;
}

/* Karta */
.card{
  width:min(980px, 94vw);
  margin:28px auto;
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)) ;
  border:1px solid var(--line);
  border-radius:calc(var(--radius) + 6px);
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px) saturate(120%);
  padding:20px 18px;
}

.head{
  display:grid; gap:16px; align-items:center;
  grid-template-columns:auto 1fr auto;
  padding:6px 6px 12px;
  border-bottom:1px solid var(--line);
}
.avatar{
  position:relative; width:92px; height:92px; border-radius:20px; overflow:hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.avatar img{ width:100%; height:100%; object-fit:cover; display:block }
.status{
  position:absolute; right:8px; bottom:8px; width:14px; height:14px; border-radius:50%;
  background:var(--ok); box-shadow:0 0 0 2px var(--bg);
}
.meta .name{ margin:0; font-size:28px; letter-spacing:.2px }
.meta .age{ font-weight:600; color:#fff9; margin-left:4px }
.loc{ margin:.2rem 0 .6rem; color:var(--muted) }
.tags{ display:flex; gap:8px; padding:0; margin:0; list-style:none; flex-wrap:wrap }
.tags li{
  font-size:12px; padding:6px 10px; border-radius:999px; color:#101012;
  background:linear-gradient(90deg, var(--cta-2), var(--cta));
}

.btn{
  height:var(--tap); padding:0 16px; border-radius:12px; border:1px solid var(--line);
  background:rgba(255,255,255,.06); color:var(--text);
  display:inline-flex; align-items:center; gap:10px; cursor:pointer;
  transition:transform .12s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{ transform:translateY(-1px); background:rgba(255,255,255,.10) }
.btn:active{ transform:translateY(0) scale(.99) }
.btn.icon{ padding:0 10px; width:var(--tap); justify-content:center }
.btn.ghost{ background:transparent }

.bio{ padding:16px 6px 10px }
.bio p{ margin:0 0 12px; font-size:15.5px; color:#000 }

.voice{
  display:flex; align-items:center; gap:12px;
  padding:10px; border:1px dashed var(--line); border-radius:14px;
  background:var(--glass);
}
.voice .wave{
  display:flex; align-items:flex-end; gap:3px; height:24px; flex:1;
}
.voice .wave span{
  width:3px; height:6px; background:linear-gradient(180deg, var(--cta-2), var(--cta));
  border-radius:2px; transform-origin: bottom;
  animation: wave 1.1s ease-in-out infinite;
}
.voice .wave span:nth-child(3n){ animation-delay:.15s }
.voice .wave span:nth-child(2n){ animation-delay:.3s }
.voice .time{ color:#dfe6ffcc; font-size:12px }

.locked{ padding:8px 6px 4px }
.locked h2{ margin:.2rem 0 .8rem; font-size:18px; color:#f2f6ff }
.grid{
  display:grid; gap:12px;
  grid-template-columns:repeat(3, 1fr);
}
.lock-photo{
  position:relative; border:0; padding:0; cursor:pointer; background:transparent; border-radius:14px; overflow:hidden;
  aspect-ratio: 1 / 1; isolation:isolate;
}
.lock-photo img{ width:100%; height:100%; object-fit:cover; display:block; filter:grayscale(.15) saturate(1.1) }
.lock-photo .veil{
  position:absolute; inset:0;
  backdrop-filter: blur(8px);
  background:linear-gradient(180deg, rgba(15,10,26,.35), rgba(15,10,26,.65));
}
.lock-photo .padlock{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  font-size:26px; text-shadow:0 6px 20px rgba(0,0,0,.6);
}
.hint{ margin:.6rem 0 0; color:var(--muted); font-size:13px }

.cta{
  padding:14px 6px 8px; display:flex; justify-content:center; border-top:1px solid var(--line); margin-top:10px
}
.cta-btn{
  background:linear-gradient(90deg, var(--cta), var(--hot));
  border-color:transparent; color:#fff; font-weight:700; letter-spacing:.2px;
  box-shadow:0 12px 30px rgba(168,85,247,.35);
}

/* Modal */
.modal{
  position:fixed; inset:0; display:grid; place-items:center; padding:18px;
  background:rgba(5,5,8,.6); backdrop-filter:blur(8px);
  opacity:0; visibility:hidden; transition: opacity .18s ease, visibility .18s ease;
  z-index:1000;
}
.modal[aria-hidden="false"]{ opacity:1; visibility:visible }
.modal-card{
  width:min(560px, 96vw); background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border:1px solid var(--line); border-radius:20px; padding:18px; box-shadow:var(--shadow)
}
.modal-card h3{ margin:.2rem 0 .6rem }
.modal-card p{ margin:.2rem 0 .8rem; color:#e9edff }
.modal-card .price{ display:flex; align-items:baseline; gap:10px; margin:.2rem 0 1rem }
.modal-card .price strong{ font-size:28px }
.modal-card .price span{ color:var(--muted); font-size:12px }
.modal .close{
  position:absolute; top:18px; right:18px; width:40px; height:40px;
  border-radius:10px; border:1px solid var(--line); background:var(--glass); color:var(--text); cursor:pointer
}
.modal .btn.fill{
  width:100%; margin:.2rem 0 .4rem;
  background:linear-gradient(90deg, var(--cta-2), var(--cta));
  border-color:transparent; color:#101012; font-weight:800
}
.modal .btn.ghost{ width:100% }

/* Formularz */
form{ display:grid; gap:10px }
input, textarea{
  width:100%; background:rgba(255,255,255,.06); border:1px solid var(--line); color:var(--text);
  border-radius:12px; padding:12px 14px; outline:none
}
input:focus, textarea:focus{ border-color:#fff8 }
.tiny{ color:var(--muted); font-size:12px; margin-top:6px }

/* Animacje */
@keyframes float{
  0%,100%{ transform:translate3d(0,0,0) }
  50%{ transform:translate3d(0,-18px,0) }
}
@keyframes wave{
  0%,100%{ height:6px }
  50%{ height:24px }
}

/* RWD */
@media (max-width: 680px){
  .head{ grid-template-columns:auto 1fr; }
  .btn.ghost{ grid-column: 1 / -1; width:100% }
}
.hero {
  position: relative;
  width: 100%;
  height: 380px;          /* wysokość prostokąta, możesz zmienić np. na 400px */
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;    /* odstęp od bio */
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.65));
  color: #fff;
}

.hero-name {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
}

.hero-name span {
  font-weight: 500;
  opacity: .9;
  margin-left: 6px;
}

.hero-loc {
  margin: 4px 0 8px;
  font-size: 14px;
  color: #000;
}

.tags {
  display: flex;
  gap: 6px;
  padding: 0;
  list-style: none;
  margin: 0;
  flex-wrap: wrap;
}

.tags li {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22d3ee, #a855f7);
  color: #101012;
  font-weight: 600;
}
/* === CTA: jeden kolor, spójny wygląd === */

/* Ustal jeden kolor akcji – możesz podmienić na swój ulubiony */
:root{
  --cta: #a855f7;   /* główny */
  --cta-2:#8b5cf6;  /* ciut ciemniejszy do hovera */
}

/* Baza przycisku */
.btn{
  border-color: transparent;
  background: rgba(255,255,255,.06);
}

/* Główny przycisk akcji – jednolity kolor zamiast gradientu */
.cta-btn,
.modal .btn.fill{
  background: var(--cta);
  color: #fff;
  border: none;
  font-weight: 800;
  letter-spacing: .2px;
  box-shadow: 0 10px 30px rgba(168,85,247,.35);
}

/* Hover/active – ciemniej i subtelna skala */
.cta-btn:hover,
.modal .btn.fill:hover{
  background: var(--cta-2);
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(139,92,246,.45);
}
.cta-btn:active,
.modal .btn.fill:active{
  transform: translateY(0) scale(.99);
}

/* „Ghost” i inne przyciski – spójny outline */
.btn.ghost{
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}
.btn.ghost:hover{
  border-color: #ffffff33;
  background: rgba(255,255,255,.06);
}

/* Formularzowy przycisk .modal .btn.ghost zostawiamy neutralny */
.modal .btn.ghost{
  border: 1px solid var(--line);
  background: transparent;
}
.modal .btn.ghost:hover{
  background: rgba(255,255,255,.06);
}

/* Link-focus dostępnościowy (ładny ring pod kolor CTA) */
:focus-visible{
  outline: 2px solid color-mix(in oklab, var(--cta), white 25%);
  outline-offset: 2px;
  border-radius: 12px;
}
/* Usuwamy dolną obwódkę head, bo hero już robi separację */
.head{ border-bottom: none; }

/* CTA sekcja – bez dodatkowego top border, rytm robi .card > * + * */
.cta{
  border-top: none;
  justify-content: center;
}
/* 1) Zamiast height:100% użyj min-height, żeby dół mógł „oddychać” */
html, body{
  min-height: 100%;
  height: auto;
}

/* 2) Karta – więcej miejsca pod spodem + większy padding na dole */
.card{
  margin: 40px auto 72px;        /* góra 40, dół 72 */
  padding: 24px 18px 32px;       /* dół większy, żeby CTA nie kleiło się do rantu */
}

/* 3) Sekcja CTA – niech ma własny odstęp wewnątrz karty */
.cta{
  border-top: none;
  justify-content: center;
  margin: 0;                     /* bez zewnętrznych marginesów */
  padding-bottom: 6px;           /* delikatny oddech nad zaokrągleniem karty */
}

/* (opcjonalnie) jeśli chcesz jeszcze bardziej miękko na dużych ekranach */
@media (min-width: 900px){
  .card{ margin: 56px auto 96px; padding-bottom: 36px; }
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;        /* odstęp góra/dół */
}

.card {
  margin: 0;              /* flexbox załatwia centrowanie */
}
/* Modal rejestracji: lekki, „trusty”, duże CTA */
.reg-card{
  text-align:center;
  padding:28px 22px 22px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.07));
}

.reg-lock{
  font-size:28px;
  width:48px; height:48px; line-height:48px;
  margin:0 auto 8px;
  border-radius:12px;
  background:rgba(255,255,255,.10);
  border:1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.reg-title{
  margin:6px 0 8px;
  font-size:22px;
  font-weight:800;
  letter-spacing:.2px;
  color:#000;
  text-shadow:0 2px 12px rgba(0,0,0,.25);
}

.reg-text{
  margin:0 0 14px;
  color:#000;
}

.reg-avatars{
  display:flex; justify-content:center; gap:8px;
  margin:10px 0 16px;
}
.reg-avatars img{
  width:44px; height:44px; object-fit:cover; border-radius:999px;
  border:2px solid rgba(255,255,255,.8);
  box-shadow:0 6px 16px rgba(0,0,0,.35);
}

.reg-cta{
  width:100%;
  height:48px;
  border-radius:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.3px;
  margin-bottom:10px;
}

/* Badges zaufania */
.reg-trust{
  display:flex; justify-content:center; gap:18px;
  font-size:12px; color:#495057;
}
.reg-trust span{
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  padding:6px 10px;
  border-radius:999px;
}

/* Zamknij w prawym górnym rogu już masz .modal .close */
.modal {
  display: grid;
  place-items: center;  /* idealne centrum */
  padding: 18px;
}

.modal-card {
  position: relative;   /* żadnego absolute! */
  margin: 0;
  max-width: 400px;
  width: 100%;
}
.reg-avatars{
  display:flex;
  justify-content:center;
  margin:12px 0 18px;
}

.reg-avatars img{
  width:46px;
  height:46px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid #fff;
  box-shadow:0 4px 12px rgba(0,0,0,.35);
  margin-left:-12px;        /* nakładanie */
  transition: transform .2s ease;
}

.reg-avatars img:first-child{ margin-left:0; }

.reg-avatars img:hover{
  transform: scale(1.08);   /* podskok na hover */
  z-index:2;
}
/* CTA w modalu – centralnie i szeroko */
.reg-cta{
  display:block;
  width:100%;
  margin: 0 auto 14px;
  text-align:center;
  font-weight:800;
  font-size:15px;
  border-radius:10px;
  padding:14px;
}

.reg-trust{
  display:flex;
  justify-content:space-between;
  width:100%;
  margin-top:10px;
  font-size:11px;
  color:#495057;
  text-align:center;
}

.reg-trust span{
  flex:1;                /* każdy bierze 50% */
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:6px 0;
  background:none;
  border:none;
  box-shadow:none;
}
.modal .close{
  position:absolute;
  top:16px;
  right:16px;
  width:40px;
  height:40px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:#000;
  z-index:10;
  transition:background .2s ease, transform .2s ease;
}

.modal .close:hover{
  background:rgba(255,255,255,.18);
  transform:scale(1.05);
}
.modal .close svg {
  stroke: #000;         /* biały X */
  stroke-width: 2.5px;  /* pogrubienie, żeby było widoczne */
}

/* Paleta jasna + akcenty różu */
:root{
  --bg:#ffffff;
  --text:#101223;
  --muted:#6b7280;
  --line:rgba(16,18,35,.10);
  --glass:rgba(255,255,255,.65);

  /* akcenty różu */
  --cta:#ec4899;   /* pink 500 */
  --cta-2:#db2777; /* pink 600 */
  --hot:#fb7185;   /* rose 400 dla blobka */
  --ctaGradFrom:#f472b6; /* subtelny start gradientu */
  --ctaGradTo:#ec4899;
  
  --shadow:0 14px 40px rgba(16,18,35,.10);
}

/* Tło i typografia */
html,body{ background:var(--bg); color:var(--text) }
.noise{ opacity:.025; mix-blend-mode:normal }

/* Dopaminowe blobki na jasnym tle */
.blob{ filter:blur(70px); opacity:.45 }
.b1{ background:radial-gradient(closest-side, var(--ctaGradFrom), transparent 70%) }
.b2{ background:radial-gradient(closest-side, var(--hot), transparent 70%) }

/* Karta */
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.88));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  backdrop-filter:saturate(110%) blur(8px);
}

/* Head */
.head{ border-bottom:1px solid var(--line) }
.meta .name{ color:var(--text) }
.meta .age{ color:#6b7280 }

/* Avatar obrys subtelny */
.avatar{ box-shadow:0 10px 28px rgba(16,18,35,.15) }
.status{ box-shadow:0 0 0 2px var(--bg) }

/* Hero na jasnym */
.hero{ border-radius:18px }
.hero-overlay{
  background:linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.45));
  color:#fff;
}
.hero-name{ color:#fff }
.hero-loc{ color:#f3f4f6 } /* na overlay będzie czytelniejsze */

/* Bio i teksty */
.bio p{ color:#1f2433; font-size:14px; font-weight: 400; }

/* Tagi z różowym gradientem */
.tags li{
  background:linear-gradient(90deg, var(--ctaGradFrom), var(--ctaGradTo));
  color:#0f1115;
}

/* Przyciski */
.btn{
  background:rgba(255,255,255,.85);
  border:1px solid var(--line);
  color:var(--text);
  box-shadow:0 4px 16px rgba(16,18,35,.06);
}
.btn:hover{ background:#ffffff }
.btn.ghost{
  background:transparent;
  border:1px solid var(--line);
  color:var(--text);
}


/* Voice wave w różach */
.voice{
  background:#fff;
  border:1px dashed var(--line);
}
.voice .wave span{
  background:linear-gradient(180deg, var(--ctaGradFrom), var(--ctaGradTo));
}
.voice .time{ color:#6b7280 }

/* CTA sekcja na bieli */
.cta{ border-top:1px solid var(--line) }


/* Drobne oddechy na jasnym */
.card{ margin:48px auto 88px; padding:26px 20px 34px }
/* === Subtelny różowy gradient na całe tło strony === */
:root{
  --pink-0:#fff6fb;  /* bardzo jasny róż, góra/dół */
  --pink-1:#ffe8f3;  /* plama z lewej góry */
  --pink-2:#ffe1f1;  /* plama z prawej dołu */
}

html, body{
  min-height:100%;
  background: none;         /* czyścimy poprzednie tło body */
}

body{ position:relative; }

/* Warstwa tła pod całą stroną */
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-3;               /* niżej niż .bg z blobami */
  pointer-events:none;
  background:
    radial-gradient(1200px 1200px at -5% -10%, var(--pink-1) 0%, transparent 40%),
    radial-gradient(1100px 1100px at 105% 110%, var(--pink-2) 0%, transparent 42%),
    linear-gradient(180deg, #fff 0%, var(--pink-0) 100%);
}

/* Opcjonalnie: rozjaśnij delikatnie blobki na jasnym tle */
.blob{ opacity:.38; filter:blur(70px); }

/* === PASKI STATYSTYK (nowy układ) === */
.metrics-bars{
  display:flex;
  flex-direction:column;
  gap:16px;
  padding:12px 6px;
}

.bar-row{
  display:flex;
  flex-direction:column;
  gap:6px;
}

/* cienki tor paska */
.bar{
  height:8px;
  background:#e5e7eb;
  border-radius:999px;
  overflow:hidden;          /* tutaj trzymamy tylko wypełnienie */
  box-shadow:inset 0 1px 0 rgba(0,0,0,.035);
}

/* wypełnienie z gradientem */
.bar-fill{
  height:100%;
  width:0%;
  border-radius:inherit;
  background:linear-gradient(90deg, var(--cta-2), var(--cta)); /* różowy gradient */
  transition:width 1.8s cubic-bezier(.25,.8,.25,1);
}

/* podpis + procent pod paskiem */
.bar-text{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:13px;
  color:var(--text);
}

.bar-text .val{
  font-weight:700;
  font-variant-numeric: tabular-nums;
  color:var(--cta);
}
/* --- Nagłówek "O mnie" --- */
.section-title{
  margin: 0 6px 2px;   /* bardzo blisko akapitu */
  font-size: 18px;     /* większe niż tekst bio */
  font-weight: 500;    /* średnia grubość, nie bold */
  color: #000;  /* ten sam kolor co treść */
  letter-spacing: .2px;
}

/* Bio tekst */
.bio p{
  margin: 0 0 8px; 
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
}
/* Sekcja sekretne zdjęcia – nagłówek jak "O mnie" */
.locked .section-title{
  margin: 0 6px 6px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text) !important; /* nadpisuje #f2f6ff */
}
/* === Spójne odstępy między sekcjami w karcie === */

/* Nagłówki sekcji – taki sam wygląd i dół */
.section-title{
  margin: 0 6px 6px;      /* bliżej treści, ale czytelnie */
  font-size: 18px;
  font-weight: 500;
}

/* O mnie – delikatny oddech pod akapitem */
.bio{ padding: 8px 6px 4px; }    /* było 16/6/10 -> ciaśniej */
.bio p{ margin: 0 0 8px; }

/* Paski – dodaj dół, żeby nie kleiły się do kolejnego nagłówka */
.metrics-bars{ margin: 8px 0 14px; }

/* Sekcja sekretna – konsekwentny górny margines + nagłówek */
.locked{ margin-top: 16px; padding-top: 8px; }  /* nowy oddech */
.locked .section-title{ margin: 0 6px 8px; color: var(--text) !important; }
/* === Reactions on hero === */
.hero{ position:relative; }

/* Warstwa animacji (SVG + latające emoji) */
.hero-reactions .react-anim{
  position:absolute; inset:0;
  pointer-events:none;         /* klikamy tylko przyciski */
  z-index: 2;
}

/* Dock przycisków – domyślnie dół-prawy */
.hero-reactions .react-dock{
  position:absolute; right:12px; bottom:12px;
  display:flex; gap:8px;
  padding:8px;
  background:rgba(255,255,255,.28);
  border:1px solid rgba(16,18,35,.12);
  backdrop-filter: blur(8px) saturate(120%);
  border-radius:999px;
  z-index:3;
}

/* pionowy wariant przy lewej krawędzi */
.hero-reactions.side .react-dock{
  right:auto; left:12px; bottom:50%; transform:translateY(50%);
  flex-direction:column; border-radius:14px;
}

/* Guziki-emoji – same ikonki w tle */
.react-btn{
  width:40px; height:40px;
  border:0; border-radius:50%;
  background: #fff;
  box-shadow: 0 8px 18px rgba(16,18,35,.12);
  cursor:pointer;
  position:relative; overflow:hidden;
}
.react-btn::before{
  content:""; position:absolute; inset:6px;
  background-size:contain; background-repeat:no-repeat; background-position:center;
}
/* Podstawowe 4 – podkładamy ikonki z Twojej tablicy */
.react-btn[data-key=":heart:"]::before{ background-image:url("https://res.cloudinary.com/boredpheonix/image/upload/v1694239556/Codepens/ReactionAnimation/heart_ni3xhu.svg"); }
.react-btn[data-key=":fire:"]::before{ background-image:url("https://res.cloudinary.com/boredpheonix/image/upload/v1694239556/Codepens/ReactionAnimation/fire_lafrsh.svg"); }
.react-btn[data-key=":rofl:"]::before{ background-image:url("https://res.cloudinary.com/boredpheonix/image/upload/v1694239556/Codepens/ReactionAnimation/laugh_dfnomg.svg"); }
.react-btn[data-key=":mindblown:"]::before{ background-image:url("https://res.cloudinary.com/boredpheonix/image/upload/v1694239557/Codepens/ReactionAnimation/mindblown_fqklj2.svg"); }

.react-btn:hover{ transform: translateY(-1px); }
.react-btn:active{ transform: translateY(0); }

/* ciut mniejsze na mobile */
@media (max-width:520px){
  .react-btn{ width:36px; height:36px }
  .hero-reactions .react-dock{ gap:6px; padding:6px }
}
.hero{ position:relative; }
.hero-reactions .react-anim{
  position:absolute; inset:0;
  pointer-events:none;
  z-index:2;
}
.hero-reactions .react-dock{
  position:absolute; right:12px; bottom:12px;
  display:flex; gap:8px; padding:8px;
  background:rgba(255,255,255,.28);
  border:1px solid rgba(16,18,35,.12);
  backdrop-filter: blur(8px) saturate(120%);
  border-radius:999px; z-index:3;
}
.react-btn{ width:40px; height:40px; border:0; border-radius:50%; background:#fff; cursor:pointer; }
.react-btn::before{ content:""; position:absolute; inset:6px; background-size:contain; background-repeat:no-repeat; background-position:center; }
.react-btn[data-key=":heart:"]::before{ background-image:url("https://res.cloudinary.com/boredpheonix/image/upload/v1694239556/Codepens/ReactionAnimation/heart_ni3xhu.svg"); }
.react-btn[data-key=":fire:"]::before{  background-image:url("https://res.cloudinary.com/boredpheonix/image/upload/v1694239556/Codepens/ReactionAnimation/fire_lafrsh.svg"); }
.react-btn[data-key=":rofl:"]::before{  background-image:url("https://res.cloudinary.com/boredpheonix/image/upload/v1694239556/Codepens/ReactionAnimation/laugh_dfnomg.svg"); }
.react-btn[data-key=":mindblown:"]::before{ background-image:url("https://res.cloudinary.com/boredpheonix/image/upload/v1694239557/Codepens/ReactionAnimation/mindblown_fqklj2.svg"); }
.hero{ position:relative; }
.hero-reactions .react-anim{ position:absolute; inset:0; pointer-events:none; z-index:2; }
.hero-reactions .react-dock{ position:absolute; right:12px; bottom:12px; z-index:3; }
.hero-reactions .react-anim svg path{ stroke:transparent !important; }
.hero .hero-reactions .react-dock{
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column; /* pionowo pod sobą */
  gap: 8px;
  padding: 0;             /* zero paddingu */
  background: none;       /* usuwamy tło */
  border: none;           /* usuwamy obramowanie */
  backdrop-filter: none;  /* nic nie rozmywa */
}
.react-btn{
  width:40px;
  height:40px;
  border:0;
  border-radius:50%;
  background: rgba(255,255,255,.35);  /* dużo bardziej przezroczyste */
  box-shadow: 0 4px 10px rgba(0,0,0,.25); /* cień dla kontrastu */
  cursor:pointer;
  position:relative;
  overflow:hidden;
  transition: background .2s ease, transform .15s ease;
}

.react-btn:hover{
  background: rgba(255,255,255,.55); /* lekko mocniejsze przy hover */
  transform: translateY(-2px);
}
.hero-badge{
  position:absolute;
  top:10px;
  left:10px;
  padding:4px 8px;
  border-radius:8px;

  background: rgba(255,255,255,.25);   /* delikatne półprzezroczyste tło */
  backdrop-filter: blur(4px);
  color:#111827;
  font-size:11px;       /* systemowa, bardzo mała czcionka */
  font-weight:500;
  letter-spacing:.2px;
  display:inline-flex;
  align-items:center;
  gap:4px;
}

/* Ikonka w stylu systemowym */
.hero-badge::before{
  content:"✔";            /* prosty znak check */
  font-size:10px;         /* mniejszy niż tekst */
  color:#16a34a;          /* klasyczna zieleń (tailwind green-600) */
  line-height:1;
}
.hero-name {
  margin: 0;
  font-size: 20px;     /* było 26px → mniejsze */
  font-weight: 600;    /* średnia grubość */
  color: #fff;
}

.hero-age {
  font-size: 19px;     /* odrobinkę mniejsze niż imię */
  font-weight: 400;    /* cieńsze */
  opacity: .85;
  margin-left: 2px;
}
.hero-loc {
  margin: 2px 0 6px;
  font-size: 13px;     /* było 14px → mniejsze */
  font-weight: 400;    /* lżejsze */
  color: rgba(255,255,255,.85); /* subtelniejszy odcień */
}/* === CTA: trochę mniejszy przycisk i ikona === */
.cta .btn.cta-btn{
  height: 44px;          /* było 50px */
  font-size: 14px;       /* było 15px */
  border-radius: 12px;   /* delikatnie mniejszy radius */
  gap: 8px;              /* mniejszy odstęp ikona-tekst */
  padding: 0 14px;
}

/* ikona mniejsza i lekko subtelniejsza */
.cta .btn.cta-btn svg{
  width: 18px;           /* było 20px */
  height: 18px;
  opacity: .9;
  transform: translateY(.5px);
}

/* mobile: minimalnie większy, ale nadal mniejszy niż wcześniej */
@media (max-width: 520px){
  .cta .btn.cta-btn{
    height: 46px;
    font-size: 14.5px;
  }
}
/* === CTA: pełna szerokość, mniejsze proporcje === */
.cta .btn.cta-btn{
  width: 100%;           /* pełna szerokość */
  height: 44px;          /* niższy */
  font-size: 14px;       /* trochę mniejszy tekst */
  border-radius: 12px;
  gap: 8px;
  padding: 0 14px;
  justify-content: center;  /* centralne wyśrodkowanie */
}

/* ikona – mniejsza i biała, żeby pasowała */
.cta .btn.cta-btn svg{
  width: 18px;
  height: 18px;
  color: #fff;            /* biała ikona */
  opacity: .95;
  transform: translateY(.5px);
}
.live-footer {
  margin-top: 40px;
  padding: 24px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.88));
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}

.live-head {
  text-align: center;
  margin-bottom: 14px;
}

.live-head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--cta);
}

.live-head p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.live-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none; /* firefox */
}
.live-slider::-webkit-scrollbar { display: none; } /* chrome */

.live-card {
  flex: 0 0 140px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
}

.live-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.live-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
}

.live-name {
  position: absolute;
  bottom: 6px;
  left: 6px;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,.6);
}
.section-sep {
  margin: 14px 0; /* równy odstęp góra/dół */
  height: 1px;
  background: var(--line); /* ta sama linia co w CTA */
}
.traits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0 0;
}

.trait {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;

  color: #000;
  background: rgba(236,72,153,.25); /* róż lekko przezroczysty */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  line-height: 1.2;
}
.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4px 12px 8px; /* minimalny odstęp od dołu */
  background: linear-gradient(180deg, transparent 10%, rgba(0,0,0,0.7) 90%);
  color: #fff;
}
.hero-cta .cta-btn {
  width: 100%;
  max-width: 340px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  padding: 14px;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;

  background: linear-gradient(135deg, #a855f7, #ec4899, #f43f5e);
  background-size: 300% 300%;
  animation: gradientFlow 6s ease infinite;
  box-shadow: 0 10px 30px rgba(236,72,153,.35);
  transition: transform .2s ease;
}

.hero-cta .cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 40px rgba(236,72,153,.45);
}

/* animacja gradientu */
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* efekt shimmer */
.hero-cta .cta-btn::after {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
}
.hero-cta {
  margin: 10px 0 18px;   /* góra bliżej hero, dół taki sam jak sekcje */
  display: flex;
  justify-content: center;
}

.hero-cta .cta-btn {
  width: 100%;
  max-width: 340px;
}

@media (min-width: 1024px){

  /* Canvas i centrowanie */
  html, body{
    min-height:100dvh;
    height:auto;
  }
  body{
    display:grid;
    place-items:center;
    padding:24px 0;
    background: inherit;
  }

  /* Główna kolumna: zwężamy i zdejmujemy „dużą kartę” */
  .card{
    width: 460px;            /* sweet spot desktop */
    max-width: 92vw;
    margin: 0 auto;
    padding: 0;              /* panele mają własne odstępy */
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  /* Wspólna baza dla każdego „panelu” sekcji */
  .panel{
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.92));
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(16,18,35,.08);
    margin-bottom: 14px;
    overflow: hidden;
  }

  /* Mapowanie istniejących sekcji na panele */
  .head,
  .hero,
  .bio,
  .metrics-bars,
  .locked,
  .cta,
  .live-footer{
    /* stają się osobnymi panelami */
    background: unset;
    border: 0;
    box-shadow: none;
  }
  .head{ padding: 12px 12px 10px }
  .bio{  padding: 12px }
  .metrics-bars{ padding: 12px }
  .locked{ padding: 12px }
  .cta{ padding: 12px; margin: 0; border-top: 0 }
  .live-footer{
    padding: 14px 12px;
    border-top: 0;
    box-shadow: none;
    background: transparent;
  }

  /* Doklej klasę panel przez CSS bez zmian w HTML */
  .head.panel, .hero.panel, .bio.panel, .metrics-bars.panel, .locked.panel, .cta.panel{ }
  /* Jeśli nie chcesz ruszać HTML, wymuśmy „panel look” selektorami rodzica */
  .card > .head,
  .card > .hero,
  .card > .bio,
  .card > .metrics-bars,
  .card > .locked,
  .card > .cta{
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.92));
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(16,18,35,.08);
    margin-bottom: 14px;
  }

  /* Hero pion 3:4, prostokąt dłuższy niż szerszy */
  .hero{
    aspect-ratio: 3 / 4;
    height: auto;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
  }
  .hero-img{
    width:100%; height:100%;
    object-fit: cover;
    object-position: center 40%;
    display:block;
  }
  .hero-overlay{
    padding: 8px 12px 10px;
    background: linear-gradient(180deg, transparent 10%, rgba(0,0,0,.72) 95%);
  }

  /* Mała, gęsta typografia */
  .meta .name{ font-size: 18px }
  .hero-name{ font-size: 18px; font-weight: 700 }
  .hero-age{  font-size: 17px; font-weight: 500; opacity:.9 }
  .hero-loc{  font-size: 12px; opacity:.9 }
  .bio p{ font-size: 14px; line-height: 1.45; margin: 0 0 8px }
  .section-title{ font-size: 16px; margin: 0 4px 6px }

  /* Avatar i head kompaktowo */
  .head{
    display:grid; grid-template-columns:auto 1fr auto; gap:12px;
    border-bottom: 0;
  }
  .avatar{ width:72px; height:72px; border-radius:16px; box-shadow:0 8px 20px rgba(0,0,0,.12) }
  .status{ width:12px; height:12px; right:6px; bottom:6px }

  /* Guziki mniejsze */
  .btn{ height:38px; padding:0 12px; border-radius:10px; font-size:14px }
  .btn.icon{ width:38px; padding:0 }

  /* Tagi kompaktowe */
  .tags{ gap:6px }
  .tags li{ padding:4px 8px; font-size:11px }

  /* Paski metryk ciaśniej */
  .metrics-bars{ gap:12px }
  .bar{ height:8px }
  .bar-text{ font-size:12px }
  .bar-text .val{ font-weight:700 }

  /* Galeria zablokowanych zdjęć: 2 kolumny, małe kafle */
  .grid{ display:grid; gap:10px; grid-template-columns: repeat(2, 1fr) }
  .lock-photo{ border-radius:12px; aspect-ratio: 3 / 4 }

  /* CTA węższe, pełna szerokość kolumny */
  .cta{ display:flex; justify-content:center }
  .cta .btn.cta-btn{
    width:100%; max-width: 320px; height: 42px;
    font-size: 14px; border-radius: 12px;
  }

  /* Reakcje pionowo, lekkie */
  .hero .hero-reactions .react-dock{
    top:8px; right:8px; left:auto; bottom:auto;
    flex-direction: column; gap:6px; padding:0;
    background:none; border:0; backdrop-filter:none;
  }
  .react-btn{ width:36px; height:36px; background:rgba(255,255,255,.35) }
  .react-btn:hover{ background:rgba(255,255,255,.5) }

  /* Live slider dopasowany do wąskiej kolumny */
  .live-footer.panel{ padding: 12px }
  .live-head h2{ font-size:16px }
  .live-head p{ font-size:12px }
  .live-card{ flex: 0 0 120px; border-radius:12px }

  /* Drobne wygładzenie fontu */
  body, .card{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Opcjonalnie: bardzo wąski desktop 1280px+ jeszcze ciaśniej */
@media (min-width: 1280px){
  .card{ width: 440px }
}
/* Sekretne zdjęcia – desktop w 3 kolumny */
@media (min-width: 1024px){
  .locked .grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;                   /* odstęp między zdjęciami */
  }
  .locked .lock-photo{
    aspect-ratio: 3 / 4;          /* pionowy prostokąt (dłuższy niż szerszy) */
    border-radius: 14px;
  }
}
/* === Naprawa tła modali === */
.modal-card,
.reg-card{
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.92));
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  color: #111827;
}

/* Tytuły i tekst wewnątrz */
.modal-card h3,
.reg-title{
  color: #111827;
}
.modal-card p,
.reg-text{
  color: #374151;
}

/* Lock ikona + avatar badge */
.reg-lock{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.08);
}


/* Dociśnij hero jak najbliżej paska */
body{ padding-top: 58px; }            /* było więcej – zmniejszamy */
.hero{ margin-top: 0; }               /* na wszelki wypadek, zero marginesu na hero */

/* Upewnij się, że tło nie zasłania paska */
.bg{ position: fixed; inset:0; z-index:0; pointer-events:none; }
.card{ position: relative; z-index:1; }  /* treść nad tłem, pod headerem */
.brand img{
  height: 60px;       /* było 24px → dajemy 34px */
  width: auto;
  display: block;
  border-radius: 6px;
}

.brand span{
  font-weight: 800;
  font-size: 16px;    /* delikatnie większy napis */
  letter-spacing: .2px;
  color: #111;
}
.card{
  position: relative;
  z-index: 1;

  background: rgba(255,255,255,.78);   /* biały półprzezroczysty */
  border: 1px solid color-mix(in oklab, var(--pink) 72%, white);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  backdrop-filter: saturate(1.1) blur(14px);
  -webkit-backdrop-filter: saturate(1.1) blur(14px);
  padding: 20px;
  margin: 0 auto 40px;
  width: min(1100px, calc(100% - 24px));
}

/* gradientowy glow z tyłu */
.card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: inherit;
  z-index:-1;
  background: linear-gradient(135deg, var(--glow-1), var(--glow-2), var(--glow-3));
  filter: blur(22px) saturate(1.1);
  opacity:.25;
}
/* header kompaktowy */
.site-header.white-glass{
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + var(--gap));
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, calc(100% - 16px));
  z-index: 10000;

  background: rgba(255,255,255,.78);
  border: 1px solid color-mix(in oklab, var(--pink) 72%, white);
  border-radius: var(--rad);
  padding: 8px 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,.22);
  backdrop-filter: saturate(1.15) blur(10px);
  -webkit-backdrop-filter: saturate(1.15) blur(10px);
}

/* żeby karta nie wchodziła pod header */
body{
  padding-top: 0; /* wyzeruj wcześniejsze */
}

.card{
  margin-top: 120px;  /* dopasuj do wysokości headera + gapu */
}
:root{
  --gap: 8px;
  --rad: 16px;
  --pink: #ff4d8d;
  --glow-1: #f43f5e;
  --glow-2: #a855f7;
  --glow-3: #22d3ee;
}

/* HEADER */
.site-header.white-glass{
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + var(--gap));
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, calc(100% - 16px));   /* dużo węższe */
  z-index: 10000;

  background: rgba(255,255,255,.78);
  border: 1px solid color-mix(in oklab, var(--pink) 72%, white);
  border-radius: var(--rad);
  padding: 8px 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}
.site-header.white-glass::before{
  content:"";
  position:absolute; inset:-2px;
  border-radius: inherit;
  z-index:-1;
  background: linear-gradient(135deg, var(--glow-1), var(--glow-2), var(--glow-3));
  filter: blur(18px);
  opacity:.3;
}

.header-inner{
  display:flex; align-items:center; justify-content:space-between;
}

/* CARD */
.card{
  position: relative;
  z-index: 1;
  margin: 100px auto 40px;                /* odstęp od headera */
  width: min(420px, calc(100% - 16px));   /* spójna szerokość z headerem */

  background: rgba(255,255,255,.78);
  border: 1px solid color-mix(in oklab, var(--pink) 72%, white);
  border-radius: var(--rad);
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}
.card::before{
  content:"";
  position:absolute; inset:-2px;
  border-radius: inherit;
  z-index:-1;
  background: linear-gradient(135deg, var(--glow-1), var(--glow-2), var(--glow-3));
  filter: blur(20px);
  opacity:.2;
}
.unlock-cta{
  text-align: center;
  font-size: 14px;
  margin-top: 12px;
  color: #444;
}
.unlock-cta a{
  color: #f43f5e;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}
.unlock-cta a::after{
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: linear-gradient(90deg,#f43f5e,#a855f7);
  opacity: .6;
  transition: opacity .2s;
}
.unlock-cta a:hover::after{ opacity: 1; }
/* MODAL */
.modal{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.65);
  z-index: 20000; /* większe niż header (10000) */
}

.modal-card{
  background: #fff;
  border-radius: 16px;
  max-width: 420px;
  width: calc(100% - 32px);
  padding: 20px;
  position: relative;
}


/* TYLKO 20px góra/dół wokół karty */
body{
  display: block !important;      /* wyłącz grid/flex centrowanie */
  padding: 20px 0 !important;     /* stały oddech */
}

.card{
  margin: 20px auto !important;   /* stały margines */
}

/* Usuń specjalne centrowanie na desktopie */
@media (min-width: 1024px){
  body{
    display: block !important;
    padding: 20px 0 !important;
  }
  .card{
    margin: 20px auto !important;
  }
}

/* Skasuj “podpórkę” pod header, jeśli niepotrzebna */
body{ padding-top: 10px !important; }  /* nadpisuje wcześniejsze 58px */

