/* =========================================================
   Link-in-bio - Golden Agency
   Motyw: ciemny, pelnoekranowy, mobile-first
   ========================================================= */

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

:root {
  --bg:        #000;
  --card:      #0d0d0f;
  --line:      rgba(255,255,255,.08);
  --text:      #fff;
  --muted:     rgba(255,255,255,.55);
  --accent:    #ff2d78;
  --accent-2:  #a855f7;
  --radius:    16px;
  --phone-w:   440px;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* --- rozmyte tlo (widoczne tylko na desktopie) --- */
.bg-blur {
  position: fixed;
  inset: -60px;
  background-size: cover;
  background-position: center;
  filter: blur(60px) saturate(1.2);
  transform: scale(1.15);
  opacity: .55;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 700px) { .bg-blur { display: none; } }

/* --- kolumna "telefonu" --- */
.phone {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--phone-w);
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg);
  box-shadow: 0 0 80px rgba(0,0,0,.9);
}

/* brakujace zdjecie - zamiast ikony "zepsuty obrazek" pokaz gradient */
img.is-missing {
  background: linear-gradient(135deg, #1b1b22, #2a1f33);
  color: transparent;
}

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; }

.hero__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #111;
}

.hero__shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,.95) 5%, rgba(0,0,0,.45) 45%, transparent 100%);
}

.hero__meta {
  position: absolute;
  left: 0; right: 0; bottom: 18px;
  text-align: center;
  padding: 0 20px;
}

.hero__name {
  margin: 0;
  font-size: clamp(28px, 8vw, 36px);
  font-weight: 800;
  letter-spacing: -.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,.6);
}

.hero__handle {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--muted);
}

/* =========================================================
   INFO
   ========================================================= */
.info { padding: 18px 20px 6px; text-align: center; }

.info__bio {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.info__loc {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.info__loc svg { width: 13px; height: 13px; flex: none; }

/* --- ikonki sociali --- */
.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1a1a1e;
  transition: transform .18s ease, filter .18s ease;
}
.socials a:hover { transform: scale(1.12); }
.socials a svg { width: 19px; height: 19px; fill: #fff; }

.socials a[data-t="instagram"] { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.socials a[data-t="tiktok"]    { background: #000; border: 1px solid rgba(255,255,255,.22); }
.socials a[data-t="twitter"]   { background: #1d9bf0; }
.socials a[data-t="snapchat"]  { background: #fffc00; }
.socials a[data-t="snapchat"] svg { fill: #000; }
.socials a[data-t="telegram"]  { background: #26a5e4; }
.socials a[data-t="reddit"]    { background: #ff4500; }
.socials a[data-t="threads"]   { background: #000; border: 1px solid rgba(255,255,255,.22); }
.socials a[data-t="youtube"]   { background: #ff0000; }
.socials a[data-t="onlyfans"]  { background: #00aff0; }

/* =========================================================
   KAFELKI Z LINKAMI
   ========================================================= */
.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 16px 8px;
}

.card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover  { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.6); }
.card:active { transform: scale(.985); }

.card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #16161a;
}

.card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,.1) 100%);
}

.card__title {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px 16px;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,.8);
}

/* ikonka platformy w rogu */
.card__badge {
  position: absolute;
  top: 10px; right: 10px;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,.45);
}
.card__badge svg { width: 16px; height: 16px; fill: #fff; }

/* wyrozniona karta (OnlyFans) */
.card--featured {
  border: none;
  padding: 2px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2), var(--accent));
  background-size: 200% 200%;
  animation: glow 4s ease infinite;
}
.card--featured > * { border-radius: calc(var(--radius) - 3px); }
.card--featured .card__img { border-radius: calc(var(--radius) - 3px); }

@keyframes glow {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .card--featured { animation: none; }
}

/* =========================================================
   STOPKA
   ========================================================= */
.foot {
  padding: 28px 20px 36px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}
.foot p { margin: 2px 0; }
.foot__small { opacity: .6; }

