/* ============================================================
   DESIGN SYSTEM — Mobile-first dark platform
   ============================================================ */

:root {
  --bg:          #050507;
  --bg-card:     rgba(14, 3, 11, 0.86);
  --bg-card-2:   #10030c;

  --border:      rgba(255, 0, 102, 0.14);
  --border-hot:  rgba(255, 0, 102, 0.46);

  --pink:        #ff0066;
  --pink-lite:   #ff4d94;
  --pink-glow:   rgba(255, 0, 102, 0.22);
  --purple:      #1a0033;
  --purple-lite: #5f1f8f;
  --gold:        #ffd700;
  --wine:        #a0001e;
  --teal:        #14b8a6;
  --green-wa:    #22c55e;
  --blue-tg:     #2aabee;

  --txt:         #fff5f8;
  --txt-muted:   rgba(255, 245, 248, 0.66);
  --txt-dim:     rgba(255, 245, 248, 0.42);

  --radius-card: 12px;
  --radius-btn:  10px;
  --radius-pill: 999px;

  --touch: 44px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 0, 102, 0.18), transparent 34%),
    linear-gradient(135deg, #050507 0%, #a0001e 55%, #ff0066 118%);
  color: var(--txt);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px; /* iOS zoom threshold */
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom);
}

a, button, [role="button"] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

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

/* ============================================================
   SHELL
   ============================================================ */
.dark-shell {
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(ellipse 70% 42% at 10% -8%, rgba(255,0,102,0.20) 0%, transparent 62%),
    radial-gradient(ellipse 52% 32% at 92% 0%, rgba(160,0,30,0.30) 0%, transparent 58%),
    radial-gradient(ellipse 44% 28% at 50% 18%, rgba(26,0,51,0.45) 0%, transparent 62%),
    linear-gradient(135deg, #050507 0%, #1a0033 42%, #a0001e 78%, #ff0066 132%),
    var(--bg);
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 7, 0.86);
  border-bottom: 1px solid rgba(255, 0, 102, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding-top: env(safe-area-inset-top);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1rem;
  min-height: 64px;
}

.site-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  border: 1px solid rgba(245, 158, 11, 0.62);
  background: #050507;
  overflow: hidden;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.08), 0 10px 24px rgba(0, 0, 0, 0.32);
}

.site-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.site-telegram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 40px;
  max-width: 100%;
  padding: 0 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 0, 102, 0.36);
  background: linear-gradient(135deg, #a0001e 0%, #ff0066 100%);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(255, 0, 102, 0.20);
}

@media (hover: hover) {
  .site-telegram-link:hover {
    background: var(--blue-tg);
    border-color: var(--blue-tg);
    transform: translateY(-1px);
  }
}

/* ============================================================
   MAIN WRAP
   ============================================================ */
.main-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 1.25rem 0.875rem 5rem;
  padding-left:  max(0.875rem, env(safe-area-inset-left));
  padding-right: max(0.875rem, env(safe-area-inset-right));
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--txt-muted);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--txt-muted);
  text-decoration: none;
  min-height: var(--touch);
  display: inline-flex;
  align-items: center;
}
.breadcrumb span[aria-current] { color: var(--txt); font-weight: 700; }

/* ============================================================
   PAGE HEADING
   ============================================================ */
.page-head { margin-bottom: 1.25rem; }

.page-head h1 {
  font-size: clamp(1.4rem, 5vw, 2.4rem);
  font-weight: 900;
  color: var(--txt);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
  word-break: break-word;
}

.page-head p {
  color: var(--txt-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.page-head-count {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 0, 102, 0.10);
  color: var(--txt);
  border: 1px solid rgba(255, 0, 102, 0.22);
  font-size: 0.78rem;
  font-weight: 700;
}

/* ============================================================
   USER CARD — yatay kayan foto şeridi
   ============================================================ */
.uc-section {
  margin-top: 1rem;
}

.uc-section + .uc-section {
  margin-top: 1.4rem;
}

.uc-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.uc-section-head h2 {
  color: var(--txt);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.uc-section-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  min-height: 28px;
  padding: 0 0.55rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 0, 102, 0.10);
  color: var(--txt);
  border: 1px solid rgba(255, 0, 102, 0.18);
  font-size: 0.74rem;
  font-weight: 900;
}

.uc-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.uc-grid-silver {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.75rem;
}

.uc-row {
  position: relative;
  height: 200px;
  overflow: hidden;
  border: 1px solid rgba(255, 0, 102, 0.14);
  border-radius: 12px;
  background: var(--bg-card);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  isolation: isolate;
  cursor: pointer;
  /* GPU katmanı — layout reflow'u izole et */
  contain: layout style;
}

.uc-row-silver {
  height: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  contain: layout style;
  border-color: rgba(201, 204, 209, 0.34);
  background: linear-gradient(180deg, rgba(18, 20, 24, 0.92), rgba(5, 5, 7, 0.96));
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(201, 204, 209, 0.14),
    inset 0 0 24px rgba(201, 204, 209, 0.05);
}

.uc-row-silver::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(201, 204, 209, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 18px rgba(201, 204, 209, 0.16);
}

.uc-row-silver::after {
  content: none;
}

.uc-silver-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-card-2);
  z-index: 1;
  flex: 0 0 auto;
}

.uc-row-vip {
  border-color: rgba(245, 158, 11, 0.56);
  background: linear-gradient(135deg, #ffd700 0%, #ff0033 48%, #2a0000 100%);
  box-shadow:
    0 18px 48px rgba(255, 0, 51, 0.28),
    0 0 0 1px rgba(255, 215, 0, 0.28);
}

.uc-row-vip::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 215, 0, 0.32);
}

.uc-row-vip::before {
  content: '';
  position: absolute;
  inset: -40% -55%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.24) 48%, rgba(255,215,0,0.24) 52%, transparent 60%);
  transform: translateX(-45%);
  animation: vipShimmer 5.2s ease-in-out infinite;
  mix-blend-mode: screen;
}

@media (hover: hover) {
  .uc-row:hover {
    border-color: var(--border-hot);
    box-shadow: 0 18px 42px var(--pink-glow);
  }
  .uc-row:hover .uc-track {
    animation-play-state: paused;
  }
}

/* Foto şeridi */
.uc-strip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.uc-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: ucSlide 16s linear infinite;
  will-change: transform; /* GPU compositing */
}

.uc-frame {
  position: relative;
  display: block;
  width: 180px;
  height: 100%;
  flex: 0 0 auto;
}

/* Gradyan gölge */
.uc-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg,
      rgba(5, 5, 7, 0.96) 0%,
      rgba(42, 0, 0, 0.82) 30%,
      rgba(160, 0, 30, 0.16) 65%,
      rgba(5, 5, 7, 0.58) 100%),
    linear-gradient(0deg, rgba(255, 0, 51, 0.16), rgba(255, 215, 0, 0.08));
  pointer-events: none;
}

/* Sağ üst detay butonu */
.uc-detail-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.9rem;
  height: var(--touch);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  color: #fff;
  background: rgba(8, 8, 15, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity 0.15s;
}

/* Bilgi paneli */
.uc-info {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: calc(100% - 110px);
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(18, 12, 18, 0.54);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.uc-row-vip .uc-info {
  top: 0;
  bottom: 0;
  left: 0;
  width: min(34%, 300px);
  height: 100%;
  max-width: none;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(20, 10, 16, 0.58), rgba(20, 10, 16, 0.38));
}

.uc-name-row,
.uc-meta,
.uc-tags,
.uc-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.28rem;
}

.uc-name {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  gap: 0.28rem;
}

.uc-verified,
.profil-verified {
  color: #1d9bf0;
  fill: #1d9bf0;
  flex: 0 0 auto;
  filter: drop-shadow(0 1px 4px rgba(29, 155, 240, 0.34));
}

.uc-meta {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
}
.uc-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.uc-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.uc-tag-gold   { background: #ffd700; color: #050507; }
.uc-tag-green  { background: #10b981; color: #fff; }
.uc-tag-purple { background: var(--purple); color: #fff; }

/* İletişim butonları */
.uc-role-tag   { letter-spacing: 0.02em; }
.uc-role-vip   { background: linear-gradient(135deg, #ffd700, #ff0033); color: #2a0000; }
.uc-role-silver { background: linear-gradient(135deg, #c9ccd1, #7a7f87); color: #050507; }

.uc-row-silver .uc-shade {
  display: none;
}

.uc-row-silver .uc-detail-btn {
  top: 8px;
  right: 8px;
  height: 36px;
  padding: 0 0.7rem;
  font-size: 0.68rem;
  background: rgba(8, 8, 15, 0.72);
}

.uc-row-silver .uc-info {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 4;
  max-width: none;
  flex: 1;
  padding: 0.75rem;
  border: 0;
  border-top: 1px solid rgba(201, 204, 209, 0.22);
  border-radius: 0;
  background: rgba(10, 11, 14, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.uc-row-silver .uc-name {
  font-size: 0.95rem;
  color: #f7f8fa;
}

.uc-row-silver .uc-meta {
  color: #c9ccd1;
}

.uc-row-silver .uc-tags {
  display: none;
}

.uc-row-silver .uc-btns {
  margin-top: 0.2rem;
}

.uc-row-silver .uc-btn-icon {
  background: rgba(201, 204, 209, 0.12);
  border-color: rgba(201, 204, 209, 0.24);
  color: #c9ccd1;
}

.uc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: var(--touch);
  padding: 0 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 900;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.uc-btn-wa   { background: var(--green-wa); border-color: var(--green-wa); }
.uc-btn-tg   { width: var(--touch); padding: 0; background: var(--blue-tg); border-color: var(--blue-tg); }
.uc-btn-icon { width: var(--touch); padding: 0; background: rgba(255,255,255,0.12); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }

/* Dokunma geri bildirimi — yalnızca touch cihazlarda */
@media (hover: none) {
  .uc-btn:active        { opacity: 0.68; }
  .uc-detail-btn:active { opacity: 0.68; }
}

@keyframes ucSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

@keyframes vipShimmer {
  0%, 62% { transform: translateX(-45%); opacity: 0; }
  72% { opacity: 0.62; }
  100% { transform: translateX(45%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .uc-track { animation: none; will-change: auto; }
  .uc-row-vip,
  .uc-row-vip::before {
    animation: none;
  }
}

/* ============================================================
   PROFILE DETAIL PAGE
   ============================================================ */
.profil-shell { min-height: 100vh; min-height: 100dvh; background: var(--bg); }

.profil-wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: 1rem 1rem 5rem;
  padding-left:  max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
}

.profil-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: #10030c;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.profil-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.profil-gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: #10030c;
}

.profil-image-button {
  display: block;
  border: 0;
  padding: 0;
  color: inherit;
  cursor: zoom-in;
}

.profil-image-button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.2s ease;
  pointer-events: none;
}

.profil-image-button:hover::after {
  background: rgba(255, 255, 255, 0.08);
}

.profil-zoom-hint {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 36px;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(8, 8, 15, 0.72);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.profile-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 1.25rem;
}

.lightbox-stage {
  width: min(100%, 1100px);
  height: min(82vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  cursor: zoom-in;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform-origin: center;
  transition: transform 0.18s ease;
  user-select: none;
}

.lightbox-close,
.lightbox-nav,
.lightbox-toolbar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lightbox-close {
  position: fixed;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 64px;
  border-radius: 999px;
  transform: translateY(-50%);
}

.lightbox-prev { left: max(1rem, env(safe-area-inset-left)); }
.lightbox-next { right: max(1rem, env(safe-area-inset-right)); }

.lightbox-toolbar {
  position: fixed;
  left: 50%;
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(8, 8, 15, 0.72);
  color: #fff;
  font-weight: 800;
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lightbox-toolbar button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.lightbox-toolbar span {
  min-width: 48px;
  text-align: center;
  font-size: 0.8rem;
}

.profil-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
}

.profil-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.profil-name {
  font-size: clamp(1.5rem, 6vw, 2rem);
  font-weight: 900;
  color: var(--txt);
  line-height: 1.05;
  letter-spacing: -0.03em;
  word-break: break-word;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.profil-breed-badge {
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #a0001e, #ff0066);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

.profil-role-badge {
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

.profil-role-vip {
  background: linear-gradient(135deg, #ffd700, #ff0033, #2a0000);
  color: #050507;
}

.profil-role-silver {
  background: linear-gradient(135deg, #c9ccd1, #7a7f87);
  color: #050507;
}

.profil-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  color: var(--txt-muted);
  font-size: 0.88rem;
  margin-bottom: 1.1rem;
}
.profil-meta span { display: flex; align-items: center; gap: 0.3rem; }

.profil-desc {
  color: rgba(255, 245, 248, 0.78);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  word-break: break-word;
}

.profil-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}

.profil-feature-tag {
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 0, 102, 0.10);
  border: 1px solid rgba(255, 0, 102, 0.18);
  color: var(--txt);
  font-size: 0.8rem;
  font-weight: 700;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}

.profil-cta-grid { display: grid; gap: 0.6rem; }

.profil-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 56px;
  padding: 0 1rem;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  transition: opacity 0.15s, transform 0.12s;
}

.profil-cta-wa  { background: var(--green-wa); color: #fff; }
.profil-cta-tg  { background: var(--blue-tg);  color: #fff; }
.profil-cta-tel { background: rgba(255,255,255,0.08); border: 1px solid var(--border); color: var(--txt); }

@media (hover: none) {
  .profil-cta:active { opacity: 0.80; transform: scale(0.98); }
}

.profil-disclaimer {
  margin-top: 1.1rem;
  font-size: 0.75rem;
  color: var(--txt-dim);
  text-align: center;
  line-height: 1.5;
}

/* ── Sticky iletişim barı (yalnızca mobil) ── */
.profil-sticky-bar {
  display: none;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-grid {
  display: grid;
  min-height: 200px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--bg-card);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.30);
  text-align: center;
  padding: 2rem 1rem;
  color: var(--txt-muted);
  font-size: 0.95rem;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(5, 5, 7, 0.90);
  color: var(--txt-muted);
  padding-bottom: env(safe-area-inset-bottom);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.footer-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 2rem 1rem;
  padding-left:  max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
}

.footer-brand {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #a0001e, #ff0066);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.83rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.footer-seo-copy {
  max-width: 860px;
  color: rgba(255, 245, 248, 0.58);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: -0.65rem 0 1.35rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.footer-nav a {
  color: var(--txt-muted);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 800;
  min-height: var(--touch);
  display: inline-flex;
  align-items: center;
  padding-right: 0.5rem;
}

.footer-seo {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.1rem 0 0.4rem;
}

.footer-seo-block {
  min-width: 0;
}

.footer-section-title {
  margin-bottom: 0.65rem;
  color: var(--txt);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.footer-tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.68rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 0, 102, 0.18);
  background: rgba(255, 0, 102, 0.08);
  color: rgba(255, 245, 248, 0.76);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
}

.footer-tag.active {
  border-color: rgba(255, 215, 0, 0.46);
  background: rgba(255, 215, 0, 0.12);
  color: #ffd700;
}

@media (hover: hover) {
  .footer-tag:hover {
    border-color: rgba(255, 0, 102, 0.42);
    background: rgba(255, 0, 102, 0.14);
    color: #fff;
  }
}

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.74rem;
  color: var(--txt-dim);
}

/* ============================================================
   UTILITIES
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.6s ease-out both; }

@media (prefers-reduced-motion: reduce) {
  .fade-in, .uc-track { animation: none !important; }
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .main-wrap {
    padding: 1rem 0.875rem 4.5rem;
    padding-left:  max(0.875rem, env(safe-area-inset-left));
    padding-right: max(0.875rem, env(safe-area-inset-right));
  }

  .uc-row   { height: 192px; }
  .uc-frame { width: 155px; }
  .uc-grid-silver { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .uc-row-silver { height: auto; }

  .profil-gallery { grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
  .profil-card    { padding: 1.25rem; }

  /* Sticky bar profil sayfasında görünür */
  .profil-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    gap: 0.5rem;
    background: rgba(8, 8, 15, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 0.7rem 1rem;
    padding-bottom: max(0.7rem, env(safe-area-inset-bottom));
    padding-left:  max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 50px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none;
    color: #fff;
    border: none;
    transition: opacity 0.15s;
  }
  .sticky-btn:active { opacity: 0.75; }
  .sticky-wa  { background: var(--green-wa); }
  .sticky-tg  { background: var(--blue-tg); }
  .sticky-tel { background: rgba(255,255,255,0.1); border: 1px solid var(--border); }

  /* Sticky bar alanı için extra padding */
  .profil-wrap { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
}

/* ============================================================
   RESPONSIVE — Telefon (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .site-header-inner {
    min-height: 58px;
    padding: 0 0.75rem;
  }
  .site-logo-img {
    width: 100%;
    height: 100%;
  }
  .site-logo {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
  .site-telegram-link {
    min-height: 38px;
    padding: 0 0.75rem;
    font-size: 0.78rem;
  }

  .main-wrap {
    padding: 0.875rem 0.75rem 4rem;
    padding-left:  max(0.75rem, env(safe-area-inset-left));
    padding-right: max(0.75rem, env(safe-area-inset-right));
  }

  .page-head { margin-bottom: 1rem; }
  .page-head h1 { font-size: clamp(1.25rem, 6.5vw, 1.55rem); }
  .page-head p  { font-size: 0.85rem; }

  /* ── UserCard: foto üstte, butonlar altta ── */
  .uc-row {
    height: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    contain: none; /* flex layout için override */
  }

  .uc-strip {
    position: relative;
    inset: unset;
    height: 160px;
    overflow: hidden;
  }

  .uc-shade {
    height: 160px;
    top: 0;
    bottom: auto;
    background:
      linear-gradient(180deg, rgba(8,8,15,0.28) 0%, transparent 40%),
      linear-gradient(0deg,   rgba(8,8,15,0.20) 0%, transparent 40%);
  }

  .uc-detail-btn {
    top: 8px;
    right: 8px;
    height: 34px;
    padding: 0 0.65rem;
    font-size: 0.7rem;
  }

  .uc-info {
    position: static;
    left: auto; right: auto; bottom: auto;
    max-width: none;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--bg-card-2);
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .uc-row-vip .uc-info,
  .uc-row-silver .uc-info {
    position: relative;
    z-index: 4;
  }

  .uc-row-silver .uc-info {
    background: rgba(10, 11, 14, 0.94);
    border-top: 1px solid rgba(201, 204, 209, 0.22);
  }

  .uc-name-row { flex: 1 1 auto; min-width: 0; }
  .uc-btns     { flex: 0 0 auto; flex-wrap: nowrap; }
  .uc-meta     { flex: 0 0 100%; font-size: 0.67rem; order: 5; }
  .uc-tags     { display: none; }

  .uc-frame { width: 140px; }
  .uc-name  { font-size: 0.9rem; }
  .uc-tag   { font-size: 0.58rem; padding: 0.12rem 0.38rem; }
  .uc-btn   { min-height: 38px; font-size: 0.75rem; }

  .uc-grid-silver {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }
  .uc-row-silver .uc-silver-media {
    height: auto;
    aspect-ratio: 3 / 4;
  }
  .uc-row-silver .uc-info {
    padding: 0.55rem;
    gap: 0.25rem;
  }
  .uc-row-silver .uc-meta {
    flex: 0 0 100%;
  }
  .uc-row-silver .uc-btn {
    min-height: 34px;
    font-size: 0.7rem;
    padding: 0 0.55rem;
  }
  .uc-row-silver .uc-btn-tg,
  .uc-row-silver .uc-btn-icon {
    width: 34px;
  }
  .uc-row-vip .uc-info {
    top: auto;
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
    max-width: none;
    justify-content: flex-start;
    padding: 0.5rem 0.75rem;
    background: rgba(5, 5, 7, 0.72);
    border-color: rgba(255, 255, 255, 0.16);
  }

  /* Profil detay */
  .profil-wrap    { padding: 0.875rem 0.75rem; padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
  .profil-hero    { border-radius: 12px; aspect-ratio: 3 / 4; }
  .profil-gallery { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
  .profil-card    { padding: 1rem; border-radius: 14px; }
  .profil-cta     { min-height: 52px; font-size: 0.95rem; }

  /* Sticky bar daha compact */
  .sticky-btn { min-height: 46px; font-size: 0.8rem; gap: 0.3rem; }
  .sticky-btn span { display: none; } /* sadece ikon göster */

  /* Footer */
  .footer-inner    { padding: 1.5rem 0.75rem; }
  .footer-tagline  { font-size: 0.8rem; margin-bottom: 1.1rem; }
  .footer-seo      { grid-template-columns: 1fr; gap: 1rem; }
  .footer-tag      { min-height: 32px; font-size: 0.7rem; padding: 0 0.58rem; }
  .footer-copy     { flex-direction: column; gap: 0.35rem; }
}

/* ============================================================
   RESPONSIVE — Küçük telefon (≤ 360px)
   ============================================================ */
@media (max-width: 360px) {
  .site-telegram-link span { display: none; }
  .site-telegram-link {
    width: 40px;
    padding: 0;
  }
  .uc-grid-silver {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .uc-strip { height: 140px; }
  .uc-shade { height: 140px; }
  .uc-frame { width: 128px; }
  .uc-info  { padding: 0.4rem 0.6rem; }
  .uc-name  { font-size: 0.85rem; }
  .uc-btn   { min-height: 36px; font-size: 0.72rem; padding: 0 0.6rem; }

  .profil-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   LANDSCAPE — telefon yatay tutulduğunda
   ============================================================ */
@media (max-height: 500px) and (orientation: landscape) {
  .profil-hero { aspect-ratio: 16 / 9; max-height: 65vw; }
  .site-header-inner { min-height: 50px; }
  .site-logo { width: 42px; height: 42px; min-width: 42px; }
  .profil-sticky-bar { padding-top: 0.4rem; padding-bottom: max(0.4rem, env(safe-area-inset-bottom)); }
  .sticky-btn { min-height: 40px; }
}
/* Blog Grid Home */
.blog-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.home-featured-tags {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

.blog-card-lite {
  display: block;
  text-decoration: none;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.blog-card-lite::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple-lite));
  opacity: 0.5;
}

.blog-card-lite h3 {
  color: var(--pink-lite);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card-lite img,
.blog-list-image,
.blog-detail-image {
  width: 100%;
  display: block;
  object-fit: cover;
  background: var(--bg-soft);
}

.blog-card-lite img {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  margin-bottom: 0.85rem;
}

.blog-list-image {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  margin-bottom: 0.85rem;
}

.blog-detail-image {
  max-height: 420px;
  border-radius: 18px;
  margin: 0.75rem 0 1rem;
}

.blog-card-category {
  display: inline-flex;
  color: var(--pink-lite);
  font-size: 0.72rem;
  font-weight: 900;
  margin-top: 0.75rem;
  margin-bottom: 0.45rem;
}

.blog-card-lite p {
  color: var(--txt-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-long-copy {
  color: var(--txt-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.footer-long-copy h2,
.footer-long-copy h3 {
  color: var(--txt);
  line-height: 1.25;
  margin-bottom: 0.7rem;
}

.footer-long-copy h2 {
  font-size: 1.2rem;
}

.footer-long-copy h3 {
  font-size: 1rem;
  margin-top: 1rem;
}

.footer-long-copy p + p {
  margin-top: 0.75rem;
}

.footer-long-copy strong {
  color: var(--pink-lite);
  font-weight: 800;
}

.seo-panel {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.25rem;
}

.seo-panel h2 {
  color: var(--txt);
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.seo-panel p {
  color: var(--txt-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0.55rem 0 0;
}

.related-profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
}

.related-profile-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.75rem;
  align-items: center;
  min-height: 74px;
  padding: 0.55rem;
  color: inherit;
  text-decoration: none;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.related-profile-card img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
}

.related-profile-card b,
.related-profile-card small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.related-profile-card b {
  color: var(--txt);
  font-size: 0.9rem;
}

.related-profile-card small {
  color: var(--txt-muted);
  font-size: 0.75rem;
  margin-top: 0.18rem;
}

@media (hover: hover) {
  .blog-card-lite:hover {
    border-color: var(--pink);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 0, 102, 0.05);
  }
}

@media (max-width: 480px) {
  .blog-grid-home {
    grid-template-columns: 1fr;
  }
}
