/* ============================================================
   hervorah — yayıncı hub'ı
   Tema: koyu "gece euphoria" — derin erik moru + pastel parıltı
   ------------------------------------------------------------
   Creator : Bedir Önal · bedironal@hotmail.com · github.com/bedironal
   © 2026 Bedir Önal
   ============================================================ */

:root {
  --bg:       #140E1F;
  --bg-2:     #1A1329;
  --card:     #221A33;
  --card-2:   #2A2040;
  --card-3:   #332749;
  --line:     rgba(196, 168, 240, 0.12);
  --line-2:   rgba(196, 168, 240, 0.24);

  --pink:         #FF8FB6;
  --pink-deep:    #FF6CA0;
  --lavender:     #B9A2F2;
  --lavender-deep:#9F86E8;
  --peach:        #FFC59A;
  --mint:         #93E3C4;
  --sky:          #9DC4F4;

  --text:       #F2EAFB;
  --text-soft:  #B6A8C8;
  --text-faint: #80738F;

  --grad-main: linear-gradient(120deg, #FF8FB6 0%, #B9A2F2 55%, #FFC59A 100%);
  --grad-text: linear-gradient(100deg, #FF9EC1 0%, #C3AEF6 55%, #FFD2AE 100%);
  --grad-soft: linear-gradient(150deg, #2C2142 0%, #241A38 100%);

  --r-sm: 13px;
  --r:    20px;
  --r-lg: 26px;
  --r-pill: 999px;

  --shadow:    0 24px 52px -28px rgba(0, 0, 0, 0.9);
  --shadow-sm: 0 12px 26px -16px rgba(0, 0, 0, 0.8);
  --glow:      0 0 50px -14px rgba(255, 143, 182, 0.5);

  --font: 'Reddit Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --nav-h: 80px;
  --ease: cubic-bezier(0.34, 1.32, 0.5, 1);
  --ease-bounce: cubic-bezier(0.34, 1.62, 0.5, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
  background: var(--bg);
  color-scheme: dark;
}

body {
  font-family: var(--font);
  font-size: clamp(0.97rem, 0.93rem + 0.2vw, 1.04rem);
  line-height: 1.65;
  color: var(--text-soft);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, iframe { display: block; max-width: 100%; }
svg { fill: currentColor; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
h1, h2, h3 { color: var(--text); line-height: 1.18; font-weight: 800; letter-spacing: -0.02em; }

:focus-visible { outline: 3px solid var(--lavender); outline-offset: 3px; }
::selection { background: var(--pink); color: #1a1020; }

.skip-link {
  position: fixed;
  top: 12px; left: 50%;
  transform: translate(-50%, -160%);
  z-index: 999;
  background: var(--card-3);
  color: var(--text);
  padding: 11px 22px;
  border-radius: var(--r-pill);
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease);
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

/* ---------- Açılış splash'i ---------- */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--bg);
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.splash.is-out { opacity: 0; visibility: hidden; }
.splash__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: splash-pop 0.7s var(--ease-bounce) both;
}
.splash__mark {
  width: 78px; height: 78px;
  color: var(--pink);
  filter: drop-shadow(0 0 30px rgba(255, 143, 182, 0.7));
  animation: spin 2.6s linear infinite;
}
.splash__name {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--grad-text);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hue-pan 4s linear infinite alternate;
}
.splash__sub {
  letter-spacing: 1.2em;
  font-size: 0.85rem;
  color: var(--text-faint);
  padding-left: 1.2em;
}
.splash__star { position: absolute; pointer-events: none; }
.splash__star svg { width: 22px; height: 22px; }
.splash__star--1 { top: 18%;    left: 14%;  color: var(--pink);     animation: twinkle 1.7s ease-in-out infinite; }
.splash__star--2 { top: 26%;    right: 18%; color: var(--lavender); animation: twinkle 2.0s ease-in-out infinite 0.3s; }
.splash__star--3 { bottom: 22%; left: 22%;  color: var(--peach);    animation: twinkle 1.8s ease-in-out infinite 0.6s; }
.splash__star--4 { bottom: 30%; right: 16%; color: var(--mint);     animation: twinkle 2.1s ease-in-out infinite 0.9s; }
.splash__star--5 { top: 50%;    left: 8%;   color: var(--sky);      animation: twinkle 1.9s ease-in-out infinite 0.45s; }
@keyframes splash-pop {
  0%   { transform: scale(0.86); opacity: 0; }
  60%  { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
html.splash-on { overflow: hidden; }

/* ---------- Install talimat modali ---------- */
.imodal { position: fixed; inset: 0; z-index: 10000; display: grid; place-items: center; padding: 20px; }
.imodal[hidden] { display: none; }
.imodal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 6, 18, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: imodal-fade 0.3s ease both;
}
.imodal__card {
  position: relative;
  width: 100%;
  max-width: 430px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 26px 22px 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: imodal-pop 0.45s var(--ease-bounce) both;
}
.imodal__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-main);
}
.imodal__close {
  position: absolute;
  top: 12px; right: 14px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  color: var(--text-soft);
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}
.imodal__close:hover { background: var(--card-3); color: var(--text); }
.imodal__head { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.imodal__logo {
  position: relative;
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: var(--grad-main);
  color: #fff;
  overflow: hidden;
  box-shadow: inset 0 2px 1px rgba(255,255,255,0.5), 0 8px 16px -8px var(--pink);
}
.imodal__logo svg { width: 25px; height: 25px; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)); }
.imodal__title {
  font-family: 'Bagel Fat One', var(--font);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.imodal__steps { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.imodal__step {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 14px;
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-soft);
}
.imodal__num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-main);
  color: #25132B;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 0 14px -4px var(--pink);
}
.imodal__ok { margin-top: 2px; }
@keyframes imodal-fade { from { opacity: 0; } }
@keyframes imodal-pop {
  0%   { opacity: 0; transform: translateY(22px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- Arka plan dekoru ---------- */
.bg-decor { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.glow--1 { width: 44vw; height: 44vw; background: #6E3B82; top: -12vw; left: -8vw; animation: drift 26s ease-in-out infinite; }
.glow--2 { width: 38vw; height: 38vw; background: #3C3C8C; top: 30vw; right: -12vw; animation: drift 30s ease-in-out infinite reverse; }
.glow--3 { width: 34vw; height: 34vw; background: #7A4A6E; bottom: -10vw; left: 24vw; animation: drift 34s ease-in-out infinite; }
.bg-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.4px 1.4px at 20% 30%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.4px 1.4px at 70% 60%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.2px 1.2px at 45% 85%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.6px 1.6px at 85% 20%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1.2px 1.2px at 12% 70%, rgba(255,255,255,0.35), transparent);
  background-repeat: repeat;
  background-size: 540px 540px;
  opacity: 0.5;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(4vw, 4vw) scale(1.1); }
}

/* ---------- Butonlar ---------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 800;
  font-size: 0.93rem;
  letter-spacing: -0.01em;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.26s ease, background 0.24s ease, border-color 0.24s ease;
  white-space: nowrap;
}
.btn__ico { width: 18px; height: 18px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--grad-main);
  background-size: 150% 150%;
  color: #25132B;
  box-shadow: var(--shadow-sm), var(--glow);
}
.btn--primary::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(255,255,255,0.62), rgba(255,255,255,0));
  pointer-events: none;
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.03);
  background-position: 100% 50%;
  box-shadow: var(--shadow), var(--glow);
}
.btn--primary:active { transform: translateY(-1px) scale(0.97); }

.btn--soft {
  background: var(--card-2);
  color: var(--text);
  border: 1px solid var(--line-2);
}
.btn--soft:hover { transform: translateY(-3px); background: var(--card-3); border-color: var(--pink); }

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff5470;
  box-shadow: 0 0 0 0 rgba(255, 84, 112, 0.7);
  animation: ping 1.8s ease-out infinite;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(255, 84, 112, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(255, 84, 112, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 84, 112, 0); }
}

/* ---------- Navigasyon ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px clamp(14px, 3vw, 32px);
}
.nav__inner {
  max-width: 1340px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 11px 9px 20px;
  background: rgba(30, 22, 46, 0.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav.is-scrolled .nav__inner { background: rgba(26, 19, 41, 0.94); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 1.26rem;
  letter-spacing: -0.03em;
  color: var(--text);
}
.brand__mark { width: 24px; height: 24px; color: var(--pink); animation: spin 9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.brand__name { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links > a {
  --c: var(--lavender);
  position: relative;
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--text-soft);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: color 0.2s ease, background 0.24s ease, transform 0.26s var(--ease-bounce);
}
.nav__links > a:nth-child(1) { --c: var(--pink); }
.nav__links > a:nth-child(2) { --c: var(--lavender); }
.nav__links > a:nth-child(3) { --c: var(--peach); }
.nav__links > a:nth-child(4) { --c: #8B95F6; }
.nav__links > a:nth-child(5) { --c: var(--mint); }
.nav__links > a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 3px;
  width: 0; height: 3px;
  border-radius: 3px;
  background: var(--c);
  transform: translateX(-50%);
  transition: width 0.26s var(--ease-bounce);
}
.nav__links > a:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--c) 18%, transparent);
  transform: translateY(-1px);
}
.nav__links > a:hover::after { width: 14px; }
.nav__links > a.is-active { color: var(--text); background: color-mix(in srgb, var(--c) 20%, transparent); }
.nav__links > a.is-active::after { width: 18px; }

.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__mobile-extra { display: none; }

.lang-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  padding: 3px;
}
.lang-btn {
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  padding: 6px 11px;
  border-radius: var(--r-pill);
  transition: color 0.2s ease, background 0.2s ease;
}
.lang-btn.is-active { color: #25132B; background: var(--grad-main); }

/* Install butonu — sadece mobil + PWA install desteği var iken */
.install-btn {
  display: none;
  position: relative;
  align-items: center;
  gap: 6px;
  background: var(--grad-main);
  background-size: 150% 150%;
  color: #25132B;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: -0.01em;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm), 0 0 24px -8px rgba(255, 143, 182, 0.55);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.26s var(--ease-bounce), box-shadow 0.26s ease;
}
.install-btn::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0));
  pointer-events: none;
}
.install-btn:hover { transform: translateY(-2px); }
.install-btn:active { transform: translateY(0) scale(0.96); }
.install-btn__ico { width: 15px; height: 15px; position: relative; }
.install-btn > span { position: relative; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 13px;
  background: var(--card-2);
  border: 1px solid var(--line-2);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav__burger span { width: 20px; height: 2.4px; border-radius: 3px; background: var(--text); transition: transform 0.3s var(--ease), opacity 0.2s ease; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ---------- Hub düzeni ---------- */
.hub {
  max-width: 1340px;
  margin-inline: auto;
  padding: calc(var(--nav-h) + 20px) clamp(14px, 3vw, 32px) 70px;
  display: grid;
  grid-template-columns: 276px minmax(0, 1fr) 300px;
  grid-template-areas: "left center right";
  gap: 22px;
  align-items: start;
}
.col { display: flex; flex-direction: column; gap: 22px; min-width: 0; }
.col--left  { grid-area: left; }
.col--center{
  grid-area: center;
  border: 2.5px dashed var(--line-2);
  border-radius: 30px;
  padding: clamp(12px, 1.6vw, 20px);
  background: rgba(255, 255, 255, 0.016);
}
.col--right { grid-area: right; }
.col--left, .col--right { position: sticky; top: calc(var(--nav-h) + 20px); }

/* ---------- Kart temeli ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.card__title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.12rem;
  font-weight: 800;
  padding-bottom: 9px;
}
.card__title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 38px; height: 3px;
  border-radius: 3px;
  background: var(--grad-main);
}
.card__spark { width: 17px; height: 17px; color: var(--pink); }

/* ---------- Discord topluluk kartı ---------- */
.discord-card { position: relative; }
.dc {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 11px;
}
.dc__glow {
  position: absolute;
  top: -8px; left: 50%;
  width: 140px; height: 120px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(88, 101, 242, 0.45), transparent 66%);
  filter: blur(6px);
  pointer-events: none;
}
/* amblem ↔ pp yüz: yavaş 3D flip (ikisini animasyonla birleştirir) */
.dc__logo {
  position: relative;
  width: 64px; height: 64px;
  transform-style: preserve-3d;
  animation: dc-flip 7s ease-in-out infinite;
}
.dc__logo-wrap:hover .dc__logo { animation-play-state: paused; }
.dc__side {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  border-radius: 21px;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.dc__side--front {
  background: linear-gradient(155deg, #AAB1FF, #5865F2);
  color: #fff;
  box-shadow: 0 14px 24px -10px #5865F2,
              inset 0 2px 1px rgba(255, 255, 255, 0.65),
              inset 0 -5px 9px rgba(0, 0, 0, 0.24);
}
.dc__side--front::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(64% 44% at 32% 16%, rgba(255, 255, 255, 0.92), transparent 70%);
}
.dc__side--front svg { position: relative; width: 33px; height: 33px; filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.28)); }
.dc__side--back {
  transform: rotateY(180deg);
  background:
    url('../assets/hervorah.webp') center 22%/cover no-repeat,
    linear-gradient(155deg, #FFB0CB, #B49BEF 55%, #FFCBA6);
  box-shadow: 0 14px 24px -10px rgba(88, 101, 242, 0.55),
              inset 0 0 0 2px rgba(255, 255, 255, 0.55),
              inset 0 0 0 4px rgba(88, 101, 242, 0.5);
}
.dc__badge {
  position: absolute;
  right: 3px; bottom: 3px;
  width: 25px; height: 25px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(155deg, #AAB1FF, #5865F2);
  border: 2.5px solid var(--card);
  box-shadow: 0 3px 7px -2px #5865F2;
}
.dc__badge svg { width: 14px; height: 14px; color: #fff; }
@keyframes dc-flip {
  0%, 42%  { transform: rotateY(0deg); }
  50%, 92% { transform: rotateY(180deg); }
  100%     { transform: rotateY(360deg); }
}
.dc__name { font-weight: 900; font-size: 1.35rem; color: var(--text); letter-spacing: -0.02em; line-height: 1.1; }
.dc__online {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.79rem;
  font-weight: 700;
  color: var(--text-soft);
  background: rgba(91, 217, 140, 0.12);
  border: 1px solid rgba(91, 217, 140, 0.32);
  padding: 5px 13px;
  border-radius: var(--r-pill);
}
.dc__online b { color: #74E3A1; font-size: 0.92rem; font-weight: 900; }
.dc__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #5BD98C;
  box-shadow: 0 0 0 0 rgba(91, 217, 140, 0.7);
  animation: ping 1.9s ease-out infinite;
}
.dc__faces { display: flex; padding-left: 9px; }
.dc__face {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2.5px solid var(--card);
  margin-left: -9px;
  object-fit: cover;
  background: var(--card-3);
}
.dc__face--more {
  display: grid; place-items: center;
  font-size: 0.64rem;
  font-weight: 800;
  color: var(--text);
  background: var(--card-3);
}
.dc__note { font-size: 0.82rem; font-weight: 600; color: var(--text-faint); }
.dc__join { margin-top: 3px; }
.discord-card[data-state="static"] .dc__online,
.discord-card[data-state="static"] .dc__faces { display: none; }

.dc__sparkle { position: absolute; pointer-events: none; }
.dc__sparkle svg { width: 14px; height: 14px; }
.dc__sparkle--1 { top: 4px;  left: 12%;  color: var(--pink);  animation: twinkle 2.6s ease-in-out infinite; }
.dc__sparkle--2 { top: 96px; right: 10%; color: var(--peach); animation: twinkle 2.3s ease-in-out infinite 0.7s; }

.dc__logo-wrap {
  position: relative;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin-bottom: 2px;
  perspective: 600px;
}
.dc__orbit {
  position: absolute;
  inset: 0;
  border: 1.5px dashed rgba(137, 145, 246, 0.45);
  border-radius: 50%;
  pointer-events: none;
}

.dc__hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: rgba(137, 145, 246, 0.14);
  border: 1px solid rgba(137, 145, 246, 0.32);
  padding: 4px 12px;
  border-radius: var(--r-pill);
}
.dc__hint-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #8B95F6;
  box-shadow: 0 0 0 0 rgba(137, 145, 246, 0.6);
  animation: ping 2.2s ease-out infinite;
}

.dc__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 1px;
}
.dc__feat {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: var(--r-pill);
}
.dc__feat--pink  { color: var(--pink);     background: rgba(255, 143, 182, 0.13); border: 1px solid rgba(255, 143, 182, 0.32); }
.dc__feat--lav   { color: var(--lavender); background: rgba(185, 162, 242, 0.13); border: 1px solid rgba(185, 162, 242, 0.32); }
.dc__feat--peach { color: var(--peach);    background: rgba(255, 197, 154, 0.13); border: 1px solid rgba(255, 197, 154, 0.32); }

/* ---------- Yıldız şeridi ---------- */
.star-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}
.star-strip svg { width: 14px; height: 14px; animation: twinkle 3s ease-in-out infinite; }
.star-strip svg:nth-child(even) { width: 10px; }
.star-strip svg:nth-child(1) { color: var(--pink);     animation-delay: 0s; }
.star-strip svg:nth-child(2) { color: var(--lavender); animation-delay: 0.3s; }
.star-strip svg:nth-child(3) { color: var(--peach);    animation-delay: 0.6s; }
.star-strip svg:nth-child(4) { color: var(--mint);     animation-delay: 0.9s; }
.star-strip svg:nth-child(5) { color: var(--sky);      animation-delay: 1.2s; }
.star-strip svg:nth-child(6) { color: var(--pink);     animation-delay: 1.5s; }
.star-strip svg:nth-child(7) { color: var(--lavender); animation-delay: 1.8s; }


/* ---------- Anlar / fotoğraf ---------- */
.photo {
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: linear-gradient(170deg, #FBF6FF, #EFE7FA);
  padding: 11px 11px 14px;
  border-radius: 9px;
  transform: rotate(-2.4deg);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: transform 0.45s var(--ease-bounce);
}
.photo:hover { transform: rotate(0deg) scale(1.025); }
.photo__img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 5px;
  background:
    radial-gradient(120% 80% at 25% 15%, rgba(255,255,255,0.18), transparent 55%),
    linear-gradient(155deg, #C99CE0 0%, #8E7AD6 48%, #E8A8B6 100%);
  overflow: hidden;
}
.photo__spark {
  position: absolute;
  width: 40px; height: 40px;
  right: 12px; bottom: 12px;
  color: #fff;
  filter: drop-shadow(0 3px 8px rgba(120,70,140,0.5));
  animation: twinkle 3.4s ease-in-out infinite;
}
.photo figcaption { font-size: 0.84rem; font-weight: 700; color: #7A6A8C; text-align: center; }
@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0); opacity: 0.95; }
  50%      { transform: scale(0.62) rotate(40deg); opacity: 0.45; }
}

/* ---------- Efes & Hamlet — anısına ---------- */
.card__spark.memo__pawhead { color: var(--lavender); animation: none; }
.memo__frame {
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: linear-gradient(170deg, #FBF6FF, #EFE7FA);
  padding: 11px 11px 14px;
  border-radius: 9px;
  transform: rotate(-2.4deg);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: transform 0.45s var(--ease-bounce);
}
.memo__frame:hover { transform: rotate(0deg) scale(1.025); }
.memo__photo {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  border-radius: 5px;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 25% 15%, rgba(255, 255, 255, 0.22), transparent 55%),
    linear-gradient(155deg, #C7B6F0 0%, #B49BE5 50%, #F0BFD0 100%);
  background-size: cover;
  background-position: center;
}
.memo__paw {
  width: 60px; height: 60px;
  color: rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 4px 12px rgba(120, 70, 140, 0.45));
  animation: breathe 4.6s ease-in-out infinite;
}
.memo__photo.has-photo .memo__paw { display: none; }
.memo__ribbon {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  background: rgba(108, 74, 140, 0.42);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.32);
}
.memo__cap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #7A6A8C;
}
.memo__heart { color: var(--pink); font-size: 0.95rem; animation: breathe 2.6s ease-in-out infinite; }
@keyframes breathe {
  0%, 100% { transform: scale(1);    opacity: 0.92; }
  50%      { transform: scale(1.09); opacity: 1; }
}

/* slayt — Efes & Hamlet'in fotoğrafları, yavaş Ken Burns geçişiyle */
.memo__slides { position: absolute; inset: 0; z-index: 0; }
.memo__slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.memo__slide.is-active { opacity: 1; animation: kenburns 7s ease-out both; }
@keyframes kenburns {
  from { transform: scale(1.001); }
  to   { transform: scale(1.08) translate(var(--kbx, -1.5%), var(--kby, -2%)); }
}

/* sıcak yükselen ışık — "melekler" + cam kubbe ışıltısı */
.memo__motes { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.memo__mote {
  position: absolute;
  bottom: 0;
  width: var(--s, 5px); height: var(--s, 5px);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #FFF7E8, rgba(255, 211, 150, 0.55));
  box-shadow: 0 0 9px 2px rgba(255, 206, 140, 0.5);
  opacity: 0;
  animation: mote-rise var(--d, 11s) linear infinite;
  animation-delay: var(--delay, 0s);
}
.memo__dome {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(120% 55% at 50% -8%, rgba(255, 230, 190, 0.34), transparent 60%),
    radial-gradient(140% 110% at 50% 42%, transparent 52%, rgba(48, 28, 64, 0.4));
}
.memo__paw, .memo__ribbon { z-index: 3; }
@keyframes mote-rise {
  0%   { transform: translate(0, 0) scale(0.6);                   opacity: 0; }
  18%  { opacity: var(--o, 0.85); }
  82%  { opacity: var(--o, 0.85); }
  100% { transform: translate(var(--sway, 12px), -118%) scale(1); opacity: 0; }
}

/* ====== "efes"/"hamlet" (yazı) + mobil 4-dokunuş → sinematik anma ====== */
html.tribute-on { overflow: hidden; }
.tribute {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 5vh, 46px);
  padding: 24px;
  overflow: hidden;
  background: radial-gradient(120% 100% at 50% 28%, rgba(34, 20, 52, 0.6), rgba(6, 4, 12, 0.93));
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.tribute.is-open { opacity: 1; }
.tribute.is-closing { opacity: 0; }
.tribute__x {
  position: absolute;
  top: 16px; right: 18px;
  width: 42px; height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.2s var(--ease-bounce);
}
.tribute__x:hover { background: rgba(255, 255, 255, 0.24); transform: scale(1.08); }

/* üstten dökülen yıldızlar */
.tribute__stars { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.tstar {
  position: absolute;
  top: 0;
  width: calc(14px * var(--sc, 1));
  height: calc(14px * var(--sc, 1));
  color: #FFE8AE;
  filter: drop-shadow(0 0 5px rgba(255, 214, 140, 0.8));
  animation: tstar-fall var(--d, 5s) linear var(--delay, 0s) infinite;
}
@keyframes tstar-fall {
  0%   { transform: translateY(-12vh) rotate(0deg);   opacity: 0; }
  12%  { opacity: 0.95; }
  88%  { opacity: 0.95; }
  100% { transform: translateY(112vh) rotate(220deg); opacity: 0; }
}

/* tarot deste — kartlar yelpaze gibi açılır */
.tribute__deck {
  position: relative;
  width: 100%;
  max-width: 760px;
  height: clamp(220px, 40vh, 300px);
  perspective: 1100px;
}
.tcard {
  position: absolute;
  left: 50%; top: 50%;
  width: 150px; height: 188px;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--card-2);
  box-shadow: 0 20px 38px -14px rgba(0, 0, 0, 0.8), inset 0 0 0 3px rgba(255, 255, 255, 0.9);
  transform: translate(-50%, calc(-50% + 46px)) scale(0.6) rotateY(-58deg);
  opacity: 0;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
  will-change: transform;
}
.tcard img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tcard::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 50% at 30% 12%, rgba(255, 255, 255, 0.26), transparent 60%);
  pointer-events: none;
}
.tribute.is-open .tcard { opacity: 1; }
.tribute.is-open .tcard--1 { transform: translate(calc(-50% - 252px), calc(-50% + 36px)) rotate(-22deg); transition-delay: 0.05s; }
.tribute.is-open .tcard--2 { transform: translate(calc(-50% - 128px), calc(-50% + 8px))  rotate(-11deg); transition-delay: 0.16s; }
.tribute.is-open .tcard--3 { transform: translate(-50%, calc(-50% - 6px))                 rotate(0deg);   transition-delay: 0.27s; }
.tribute.is-open .tcard--4 { transform: translate(calc(-50% + 128px), calc(-50% + 8px))  rotate(11deg);  transition-delay: 0.38s; }
.tribute.is-open .tcard--5 { transform: translate(calc(-50% + 252px), calc(-50% + 36px)) rotate(22deg);  transition-delay: 0.49s; }

/* karta gel/dokun → tıklayıp büyütme ipucu + lightbox */
.tcard { cursor: pointer; }
.tcard img { transition: transform 0.4s ease, filter 0.4s ease; }
.tcard:hover { box-shadow: 0 24px 46px -14px rgba(0, 0, 0, 0.85), inset 0 0 0 3px #fff, 0 0 30px -4px rgba(255, 224, 180, 0.7); }
.tcard:hover img { transform: scale(1.07); filter: brightness(1.08); }
.tribute__x { z-index: 7; }
.tribute__zoom {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 5, 14, 0.62);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
  cursor: zoom-out;
}
.tribute__zoom.is-show { opacity: 1; pointer-events: auto; }
.tribute__zoom img {
  max-width: min(92vw, 540px);
  max-height: 82vh;
  width: auto; height: auto;
  border-radius: 16px;
  box-shadow: 0 34px 64px -22px rgba(0, 0, 0, 0.9), inset 0 0 0 3px rgba(255, 255, 255, 0.92);
  transform: scale(0.9);
  transition: transform 0.38s var(--ease-bounce);
}
.tribute__zoom.is-show img { transform: scale(1); }

/* caption */
.tribute__cap {
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease 0.6s, transform 0.7s var(--ease-bounce) 0.6s;
}
.tribute.is-open .tribute__cap { opacity: 1; transform: none; }
.tribute__cap span { display: block; font-size: clamp(1.1rem, 3.4vw, 1.5rem); font-weight: 800; }
.tribute__cap small {
  display: block;
  margin-top: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 224, 180, 0.85);
}

/* mumlar */
.tribute__candles {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(10px, 3vw, 22px);
  height: 80px;
}
.candle {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(70px);
  opacity: 0;
  transition: transform 0.6s var(--ease-bounce), opacity 0.5s ease;
  transition-delay: calc(0.4s + var(--i) * 0.08s);
}
.tribute.is-open .candle { transform: none; opacity: 1; }
.candle__flame {
  width: 12px; height: 18px;
  border-radius: 50% 50% 50% 50% / 62% 62% 40% 40%;
  background: radial-gradient(60% 60% at 50% 70%, #FFF4C2, #FF9D3C 70%, #FF6A3C);
  box-shadow: 0 0 14px 4px rgba(255, 160, 70, 0.7);
  transform-origin: 50% 90%;
  animation: flame-flicker 1.6s ease-in-out infinite;
  margin-bottom: -2px;
}
.candle__stick {
  position: relative;
  width: 18px; height: 46px;
  border-radius: 7px 7px 4px 4px;
  box-shadow: inset 0 2px 1px rgba(255, 255, 255, 0.6), inset -3px 0 6px rgba(0, 0, 0, 0.18), 0 6px 12px -6px rgba(0, 0, 0, 0.6);
}
.candle__stick::before {
  content: "";
  position: absolute;
  top: -4px; left: 50%;
  width: 2px; height: 5px;
  transform: translateX(-50%);
  background: #4a3a2a;
  border-radius: 2px;
}
.candle--1 .candle__stick { background: linear-gradient(#FFD0E0, #FF9EC0); }
.candle--2 .candle__stick { background: linear-gradient(#E2D7FF, #B9A2F2); }
.candle--3 .candle__stick { background: linear-gradient(#FFE6CC, #FFC59A); }
.candle--4 .candle__stick { background: linear-gradient(#CFF5E6, #93E3C4); }
.candle--5 .candle__stick { background: linear-gradient(#D6E8FF, #9DC4F4); }
@keyframes flame-flicker {
  0%, 100% { transform: scaleY(1) scaleX(1) rotate(-1deg);      opacity: 0.95; }
  50%      { transform: scaleY(1.13) scaleX(0.92) rotate(1.5deg); opacity: 1; }
}

/* mobil / tablet */
@media (max-width: 560px) {
  .tribute__deck { height: clamp(170px, 32vh, 230px); }
  .tcard { width: 88px; height: 110px; border-radius: 11px; box-shadow: 0 14px 26px -12px rgba(0,0,0,0.8), inset 0 0 0 2.5px rgba(255,255,255,0.9); }
  .tribute.is-open .tcard--1 { transform: translate(calc(-50% - 112px), calc(-50% + 38px)) rotate(-16deg); }
  .tribute.is-open .tcard--2 { transform: translate(calc(-50% - 58px),  calc(-50% + 10px)) rotate(-8deg); }
  .tribute.is-open .tcard--3 { transform: translate(-50%, calc(-50% - 6px))                rotate(0deg); }
  .tribute.is-open .tcard--4 { transform: translate(calc(-50% + 58px),  calc(-50% + 10px)) rotate(8deg); }
  .tribute.is-open .tcard--5 { transform: translate(calc(-50% + 112px), calc(-50% + 38px)) rotate(16deg); }
  .candle__stick { width: 15px; height: 38px; }
  .candle__flame { width: 10px; height: 15px; }
  .tribute__candles { gap: 10px; height: 66px; }
}

/* ---------- Profil kartı ---------- */
.profile__top { display: flex; gap: 18px; align-items: center; margin-bottom: 18px; }
.avatar { position: relative; flex-shrink: 0; width: 104px; height: 104px; cursor: pointer; }
.avatar__ring {
  position: absolute; inset: -5px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #FF8FB6, #B9A2F2, #FFC59A, #9DC4F4, #FF8FB6);
  animation: spin 12s linear infinite;
  transition: animation-duration 0.3s ease, filter 0.3s ease;
}
.avatar__img { transition: transform 0.4s var(--ease-bounce); }
.avatar:hover .avatar__img { transform: scale(1.06); }
.avatar:hover .avatar__ring { animation-duration: 4s; filter: drop-shadow(0 0 14px var(--pink)); }
.avatar__img {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 4px solid var(--card);
  background:
    url('../assets/hervorah.webp') center 25%/cover no-repeat,
    radial-gradient(120% 90% at 30% 20%, rgba(255,255,255,0.35), transparent 55%),
    linear-gradient(155deg, #FFB0CB, #B49BEF 55%, #FFCBA6);
}
.avatar__status {
  position: absolute;
  right: 5px; bottom: 5px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 3px solid var(--card);
  background: var(--text-faint);
}
.avatar__status[data-state="live"] { background: #ff5470; box-shadow: 0 0 12px rgba(255,84,112,0.8); }

.profile__name {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.profile__verified { width: 22px; height: 22px; color: var(--pink); -webkit-text-fill-color: var(--pink); }
.profile__bio { margin: 5px 0 12px; font-size: 0.96rem; color: var(--text-soft); }

.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--r-pill);
}
.tag--pink  { color: var(--pink);     background: rgba(255, 143, 182, 0.14); }
.tag--lav   { color: var(--lavender); background: rgba(185, 162, 242, 0.14); }
.tag--peach { color: var(--peach);    background: rgba(255, 197, 154, 0.14); }
.tag--mint  { color: var(--mint);     background: rgba(147, 227, 196, 0.14); }

.profile__cta { display: flex; gap: 10px; }
.profile__cta .btn--primary { flex: 1; }

/* ---------- Canlı yayın ---------- */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  background: var(--card-2);
  border: 1px solid var(--line-2);
  color: var(--text-soft);
}
.status-pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text-faint); }
.status-pill[data-state="live"] { color: var(--pink); border-color: var(--pink); }
.status-pill[data-state="live"] .status-pill__dot {
  background: #ff5470;
  box-shadow: 0 0 0 0 rgba(255, 84, 112, 0.7);
  animation: ping 1.8s ease-out infinite;
}

.player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--grad-soft);
  border: 1px solid var(--line-2);
  container-type: inline-size;
}
/* iframe sabit "tasarım genişliği"nde render olur, container'a göre ölçeklenir.
   Bu sayede Kick'in fixed-layout offline sayfası mobilde ezilmez. */
.player iframe {
  position: absolute;
  top: 0; left: 0;
  width: 760px;
  height: 427.5px;
  max-width: none; /* global iframe max-width:100% override */
  border: 0;
  transform-origin: top left;
  transform: scale(calc(100cqi / 760px));
  opacity: 0;
  transition: opacity 0.5s ease;
}
.player iframe.is-ready { opacity: 1; }

.live__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 15px;
}
.live__now { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.live__label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); }
.live__game { font-weight: 700; color: var(--text); font-size: 0.98rem; }

/* ---------- Bölümler (klipler / videolar) ---------- */
.sec__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.sec__title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
  font-weight: 900;
  padding-bottom: 10px;
}
.sec__title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 46px; height: 3px;
  border-radius: 3px;
  background: var(--grad-main);
}
.sec__spark { width: 19px; height: 19px; color: var(--pink); }
.sec__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--lavender);
  transition: color 0.2s ease;
}
.sec__more svg { width: 16px; height: 16px; transition: transform 0.24s var(--ease); }
.sec__more:hover { color: var(--pink); }
.sec__more:hover svg { transform: translateX(4px); }

/* Shorts — emiru.gg ölçüleri (100:135 = ~3:4 dikey) */
.clips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.clip { display: flex; flex-direction: column; gap: 9px; }
.clip__thumb {
  position: relative;
  aspect-ratio: 100 / 135;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line-2);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.clip__thumb::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(15, 8, 25, 0.55)); }
.clip:hover .clip__thumb { transform: translateY(-6px) rotate(-2deg); box-shadow: var(--shadow); }
.clip__title { font-size: 0.86rem; font-weight: 700; color: var(--text); line-height: 1.35; }

/* Videolar — yatay 16:9 */
.videos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.video { display: flex; flex-direction: column; gap: 10px; }
.video__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line-2);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.video__thumb::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(15, 8, 25, 0.5)); }
.video:hover .video__thumb { transform: translateY(-6px) rotate(1.6deg); box-shadow: var(--shadow); }
.video__title { font-size: 0.94rem; font-weight: 700; color: var(--text); line-height: 1.4; }

/* placeholder kapak gradyanları */
.clip--1 .clip__thumb, .video--1 .video__thumb { background: linear-gradient(155deg, #FF9CC0, #9F86E8); }
.clip--2 .clip__thumb, .video--2 .video__thumb { background: linear-gradient(155deg, #B49BEF, #FFC9A6); }
.clip--3 .clip__thumb, .video--3 .video__thumb { background: linear-gradient(155deg, #FFB0CB, #9DC4F4); }
.clip--4 .clip__thumb { background: linear-gradient(155deg, #C99CE0, #FFB0CB); }
.clip--5 .clip__thumb { background: linear-gradient(155deg, #FFC9A6, #9F86E8); }
.clip--6 .clip__thumb { background: linear-gradient(155deg, #9DC4F4, #FF9CC0); }
.video--4 .video__thumb { background: linear-gradient(155deg, #9DC4F4, #C99CE0); }

.clip__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.55);
  z-index: 2;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--pink-deep);
  box-shadow: var(--shadow);
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.32s var(--ease);
}
.clip__play svg { width: 22px; height: 22px; margin-left: 3px; }
.clip:hover .clip__play,
.video:hover .clip__play { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ---------- Bağlantılar ---------- */
.links__list { display: flex; flex-direction: column; gap: 10px; }
.link {
  --brand: var(--lavender);
  --ico-grad: var(--grad-main);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  border-radius: 18px;
  background-color: var(--card-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='22'%3E%3Cpath d='M0 11q5.75-9 11.5 0t11.5 0 11.5 0 11.5 0' fill='none' stroke='%23ffffff' stroke-width='2' stroke-opacity='0.055'/%3E%3C/svg%3E");
  background-size: 46px 22px;
  border: 1.5px solid var(--line);
  transition: transform 0.32s var(--ease-bounce), border-color 0.24s ease, box-shadow 0.3s ease, background-color 0.24s ease;
}
.link:hover {
  transform: translateX(5px) scale(1.02);
  background-color: var(--card-3);
  border-color: color-mix(in srgb, var(--brand) 55%, transparent);
  box-shadow: 0 0 28px -10px var(--brand), 0 12px 24px -16px #000;
}
.link__ico {
  position: relative;
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: var(--ico-grad);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 8px 16px -9px var(--brand),
              inset 0 2px 1px rgba(255, 255, 255, 0.6),
              inset 0 -4px 7px rgba(0, 0, 0, 0.2);
  transition: transform 0.32s var(--ease-bounce);
}
.link__ico::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(65% 46% at 32% 15%, rgba(255, 255, 255, 0.9), transparent 70%);
}
.link:hover .link__ico { transform: rotate(-8deg) scale(1.08); }
.link__ico svg { position: relative; width: 22px; height: 22px; filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.28)); }
.link__name {
  margin-left: auto;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 32%, transparent);
  padding: 5px 13px;
  border-radius: var(--r-pill);
}
.link__go { flex-shrink: 0; width: 17px; height: 17px; color: var(--brand); transition: transform 0.24s var(--ease-bounce); }
.link:hover .link__go { transform: translateX(4px); }
/* Hover'da kalp pop — link__ico üstünden çıkar */
.link::before {
  content: "♥";
  position: absolute;
  top: 1px;
  left: 38px;
  font-size: 14px;
  line-height: 1;
  color: var(--brand);
  opacity: 0;
  transform: translateY(6px) scale(0.3) rotate(-18deg);
  transition: opacity 0.28s ease, transform 0.45s var(--ease-bounce);
  pointer-events: none;
  filter: drop-shadow(0 0 6px var(--brand));
  z-index: 2;
}
.link:hover::before {
  opacity: 1;
  transform: translateY(-2px) scale(1) rotate(8deg);
}

.link--youtube   { --brand: #FF9090; --ico-grad: linear-gradient(150deg, #FFB1A8, #FF3D3D); }
.link--instagram { --brand: #F58FC6; --ico-grad: linear-gradient(150deg, #FEC163, #F056A0 48%, #9B5DE5); }
.link--kick      { --brand: #6FE04A; --ico-grad: linear-gradient(150deg, #8DF96E, #3FCE12); }
.link--discord   { --brand: #97A0F8; --ico-grad: linear-gradient(150deg, #B3B9FF, #5865F2); }
.link--spotify   { --brand: #43D667; --ico-grad: linear-gradient(150deg, #2BE36B, #1AA34A); }

.links__cta {
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  text-align: center;
  color: var(--text-faint);
}
.links__cta a { display: block; margin-top: 3px; font-weight: 800; color: var(--lavender); }
.links__cta a:hover { color: var(--pink); }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  margin-top: 30px;
  background: linear-gradient(180deg, transparent, var(--bg-2) 40%);
  border-top: 1px solid var(--line);
}
.footer__inner {
  max-width: 1340px;
  margin-inline: auto;
  padding: clamp(36px, 5vw, 58px) clamp(18px, 4vw, 44px) 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 34px;
}
.brand--footer { font-size: 1.5rem; margin-bottom: 10px; }
.footer__brand { max-width: 340px; }
.footer__brand p { font-size: 0.94rem; margin-bottom: 16px; }
.footer__social { display: flex; flex-wrap: wrap; gap: 9px; }
.footer__social a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--card-2);
  border: 1px solid var(--line);
  color: var(--text-soft);
  transition: transform 0.26s var(--ease), color 0.2s ease, background 0.24s ease;
}
.footer__social a svg { width: 19px; height: 19px; }
.footer__social a:hover { transform: translateY(-4px) rotate(-8deg) scale(1.08); color: #25132B; background: var(--grad-main); }

.footer__nav { display: flex; flex-direction: column; gap: 9px; }
.footer__navlabel {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 3px;
}
.footer__nav a { font-weight: 700; color: var(--text-soft); width: fit-content; transition: color 0.2s ease; }
.footer__nav a:hover { color: var(--pink); }

.footer__bottom {
  max-width: 1340px;
  margin-inline: auto;
  padding: 20px clamp(18px, 4vw, 44px);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-faint);
}

/* ---------- Yukarı çık ---------- */
.to-top {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 90;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-main);
  color: #25132B;
  box-shadow: var(--shadow), var(--glow);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.34s var(--ease);
}
.to-top svg { width: 21px; height: 21px; }
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-4px) scale(1.07); }

/* ---------- Scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(28px) scale(0.97); transition: opacity 0.55s ease, transform 0.6s var(--ease-bounce); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- Parıltı & gradyan akışı ---------- */
@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0); opacity: 1; }
  50%      { transform: scale(0.78) rotate(45deg); opacity: 0.65; }
}
.card__spark, .sec__spark { animation: sparkle 3.6s ease-in-out infinite; }
.sec__spark { animation-duration: 4.2s; }

@keyframes hue-pan { to { background-position: 100% 50%; } }
.brand__name, .profile__name { background-size: 220% auto; animation: hue-pan 7s linear infinite alternate; }
.brand__name, .profile__name, .dc__name { font-family: 'Bagel Fat One', var(--font); font-weight: 400; letter-spacing: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1160px) {
  .hub {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "center center"
      "left right";
  }
  .col--left, .col--right { position: static; }
}

@media (max-width: 860px) {
  :root { --nav-h: 72px; }

  .nav__burger { display: flex; }
  .nav__actions > .lang-switch,
  .nav__cta { display: none; }
  .install-btn:not([hidden]) { display: inline-flex; }

  .nav__links {
    position: fixed;
    inset: calc(var(--nav-h) + 6px) 12px auto 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 14px;
    border-radius: var(--r-lg);
    background: rgba(26, 19, 41, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line-2);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-14px) scale(0.99);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s var(--ease);
  }
  .nav__links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links > a { padding: 12px 15px; font-size: 1.02rem; }
  .nav__links > a::after { display: none; }
  .nav__links > a.is-active { background: color-mix(in srgb, var(--c) 16%, transparent); }
  .nav__mobile-extra {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 11px;
    padding-top: 13px;
    border-top: 1px solid var(--line);
  }
  .nav__mobile-extra .lang-switch { align-self: center; }
  .nav__mobile-extra .btn { justify-content: center; }

  .hub {
    grid-template-columns: 1fr;
    grid-template-areas:
      "center"
      "right"
      "left";
  }
}

@media (max-width: 540px) {
  .clips-grid { grid-template-columns: 1fr 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .profile__top { flex-direction: column; text-align: center; gap: 14px; }
  .profile__name { justify-content: center; }
  .tags { justify-content: center; }
  .profile__cta { flex-direction: column; }
  .live__meta { flex-direction: column; align-items: stretch; }
  .live__meta .btn { justify-content: center; }
  .footer__inner { flex-direction: column; gap: 26px; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* ---------- Hareket azaltma ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}
