/* =========================================================
   COMPONENTS.CSS — Clean & Modern
   ========================================================= */

/* ---------- Yerel değişkenler (NAV, Hamburger, Drawer, Hero) ---------- */
:root {
  /* NAV */
  --nav-h: 72px;
  --nav-xpad: 16px;

  /* Hamburger (tamamı değişkenle) */
  --menu-size: 44px; /* buton kutusu (px) */
  --menu-radius: 12px; /* köşe */
  --menu-bd: rgba(255, 214, 136, 0.6);
  --menu-bg: rgba(255, 255, 255, 0.05);
  --menu-fg: #ffd688; /* çizgi rengi */
  --menu-fg-hover: #ffe4a3;

  --menu-line-w: 26px;
  --menu-line-h: 3px;
  --menu-line-r: 999px;
  --menu-gap: 6px;

  /* Drawer (cam) */
  --drawer-bg: rgba(17, 24, 39, 0.55);
  --drawer-blur: 10px;

  /* Altın efekti */
  --gold: #ffd688;
  --gold-soft: rgba(255, 214, 136, 0.18);
  --gold-bd: rgba(255, 214, 136, 0.55);

  /* HERO (rectangle kutu için de kullanılıyor) */
  --hero-h: 44vh;
  --hero-min: 320px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --menu-fg: #ffd688;
    --menu-fg-hover: #ffe4a3;
  }
}

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(31, 35, 40, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--nav-xpad);
}

/* Marka rozet – altın */
.brand-badge {
  --gold1: #ffe6a3;
  --gold2: #ffd36b;
  --gold3: #ffbe45;
  --ring: rgba(255, 255, 255, 0.18);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 14px;
  border-radius: 14px;
  color: #1a1a1a;
  font: 800 18px/1.1 Montserrat, Inter, system-ui, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    var(--gold1),
    var(--gold2) 45%,
    var(--gold3)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 4px 20px rgba(255, 206, 73, 0.25);
  border: 1px solid rgba(255, 214, 120, 0.55);
  overflow: hidden;
  isolation: isolate;
}
.brand-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  background: radial-gradient(
    220px 220px at var(--mx, -100px) var(--my, -100px),
    rgba(255, 255, 255, 0.35),
    transparent 60%
  );
  mix-blend-mode: soft-light;
}
.brand-badge:hover::after {
  opacity: 0.9;
}
.brand-badge:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

/* ===== Hamburger — klasik 3 çizgi, belirgin ===== */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--menu-size);
  height: var(--menu-size);
  border-radius: var(--menu-radius);
  border: 1.5px solid var(--menu-bd);
  background: var(--menu-bg);
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 6px 18px rgba(0, 0, 0, 0.25);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s,
    transform 0.15s;
}
.menu-toggle:hover {
  border-color: var(--menu-fg);
  background: linear-gradient(
    180deg,
    rgba(255, 214, 120, 0.12),
    rgba(255, 214, 120, 0.05)
  );
  transform: translateY(-1px);
}
.menu-toggle:focus-visible {
  outline: 3px solid rgba(125, 211, 252, 0.35);
  outline-offset: 3px;
}

/* çizgiler */
.menu-toggle span {
  display: block;
  width: var(--menu-line-w);
  height: var(--menu-line-h);
  background: var(--menu-fg);
  border-radius: var(--menu-line-r);
  transition: transform 0.25s ease, opacity 0.2s ease,
    background-color 0.2s ease;
}
.menu-toggle span + span {
  margin-top: var(--menu-gap);
}
.menu-toggle:hover span {
  background: var(--menu-fg-hover);
}

/* Açıkken “X” animasyonu */
.menu-open .menu-toggle span:nth-child(1),
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(calc(var(--menu-gap) + var(--menu-line-h)))
    rotate(45deg);
}
.menu-open .menu-toggle span:nth-child(2),
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translateX(6px);
}
.menu-open .menu-toggle span:nth-child(3),
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(calc(-1 * (var(--menu-gap) + var(--menu-line-h))))
    rotate(-45deg);
}

/* =========================================================
   SCRIM & DRAWER (cam/blur)
   ========================================================= */
.scrim {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(1px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.scrim.open,
.menu-open .scrim {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  width: min(86vw, 380px);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  background: var(--drawer-bg);
  backdrop-filter: blur(var(--drawer-blur));
  -webkit-backdrop-filter: blur(var(--drawer-blur));
  border-left: 1px solid var(--border);
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.drawer.open,
.menu-open .drawer {
  transform: none;
  pointer-events: auto;
}

.drawer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  height: 100%;
}
.drawer-inner a {
  position: relative;
  display: block;
  color: var(--text);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid transparent;
  background: linear-gradient(
        var(--surface-2, #a9abad),
        var(--surface-2, #bcbec1)
      )
      padding-box,
    radial-gradient(
        220px 220px at var(--mx, -100px) var(--my, -100px),
        var(--gold-soft),
        transparent 60%
      )
      border-box;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s,
    background 0.18s;
}
.drawer-inner a + a {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 4px;
  padding-top: 16px;
}
.drawer-inner a:hover,
.drawer-inner a:focus-visible {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 10px 26px rgba(255, 204, 64, 0.18);
  transform: translateY(-1px);
  outline: none;
}

/* =========================================================
   KONTEYNERLER
   ========================================================= */
.container--xl {
  width: min(80vw, 1800px);
  margin-inline: auto;
}
.container--full {
  width: min(99vw, 1700px);
  margin-inline: auto;
}

/* =========================================================
   GALERİ
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.gallery-item {
  --bd: rgba(255, 214, 120, 0.5);
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  border: 1.5px solid transparent;
  background: linear-gradient(var(--surface-2, #111), var(--surface-2, #111))
      padding-box,
    radial-gradient(
        200px 200px at var(--mx, -100px) var(--my, -100px),
        rgba(255, 214, 120, 0.18),
        transparent 60%
      )
      border-box;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transform: translateZ(0) scale(1);
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
  filter: saturate(1.03) contrast(1.02);
  transition: transform 0.25s, opacity 0.25s, filter 0.25s;
}
.gallery-item:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
  border-color: var(--bd);
}
.gallery-item:hover img {
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.05);
}
.gallery-item.in {
  animation: gi-reveal 0.45s ease both;
}
@keyframes gi-reveal {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lb-scrim {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.86));
  backdrop-filter: blur(2px);
  z-index: 9990;
}
.lb {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: transparent;
  z-index: 9991;
}
.lb[hidden],
.lb-scrim[hidden] {
  display: none;
}
.lb img {
  max-width: 92vw;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.lb-btn {
  --size: 56px;
  position: absolute;
  width: var(--size);
  height: var(--size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #ffd769;
  background: rgba(18, 20, 22, 0.55);
  color: #ffd769;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s, background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  user-select: none;
}
.lb-btn:hover,
.lb-btn:focus-visible {
  background: #ffd769;
  color: #1a1a1a;
  transform: scale(1.06);
  outline: none;
}
.lb-prev,
#lbPrev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-next,
#lbNext {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-close,
#lbClose {
  top: 24px;
  right: 24px;
  transform: none;
  font-size: 28px;
}
@media (max-width: 560px) {
  .lb-btn {
    width: 44px;
    height: 44px;
  }
  .lb-prev,
  #lbPrev {
    left: 12px;
  }
  .lb-next,
  #lbNext {
    right: 12px;
  }
  .lb-close,
  #lbClose {
    right: 12px;
    top: 12px;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  margin-top: 5px;
  padding: 6px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
}
footer .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
footer .gold-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-inline: auto;
  padding: 8px 0;
}
footer .gold-icons a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
}
footer .gold-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255, 206, 73, 0.25));
  transition: transform 0.18s, filter 0.18s, opacity 0.18s;
}
footer .gold-icons a:hover img {
  transform: translateY(-1px) scale(1.05);
  filter: drop-shadow(0 6px 16px rgba(255, 206, 73, 0.45));
}
@media (max-width: 540px) {
  footer .gold-icons a {
    width: 42px;
    height: 42px;
  }
}

/* =========================================================
   BIO (kısaltılmış)
   ========================================================= */
.bio-page .section-title,
.bio-page .pill,
.bio-page .pills,
.bio-page .meta-row,
.bio-page .meta-card {
  display: none !important;
}
.bio {
  padding: 28px 0 56px;
}
.bio-grid {
  display: grid;
  grid-template-columns: clamp(280px, 34vw, 520px) 1fr;
  gap: clamp(18px, 3vw, 40px);
  align-items: start;
}
.bio-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0f1114;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.bio-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: saturate(1.02);
}
.bio-body {
  min-width: 0;
}
.bio-text {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(16px, 1.05vw + 0.6rem, 18.5px);
  line-height: 1.9;
  color: var(--text);
  letter-spacing: 0.01em;
}
.bio-text p + p {
  margin-top: 1rem;
}
@media (max-width: 980px) {
  .bio-grid {
    grid-template-columns: 1fr;
  }
  .bio-photo {
    max-width: 560px;
    margin-inline: auto;
  }
}
.bio-sources {
  margin-top: 28px;
}
.hr-lite {
  height: 1px;
  border-radius: 999px;
  margin-bottom: 16px;
  background: linear-gradient(
    90deg,
    rgba(255, 214, 120, 0.18),
    rgba(255, 214, 120, 0.06) 40%,
    transparent
  );
}
.sources {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.sbtn-icon {
  --ring: rgba(255, 214, 136, 0.55);
  position: relative;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  text-decoration: none;
  background: linear-gradient(var(--surface-2, #111), var(--surface-2, #111))
      padding-box,
    radial-gradient(
        220px 220px at var(--mx, -100px) var(--my, -100px),
        rgba(255, 214, 136, 0.18),
        transparent 60%
      )
      border-box;
  border: 1.6px solid var(--ring);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.16s, box-shadow 0.16s, border-color 0.16s;
}
.sbtn-icon img {
  width: 54px;
  height: 54px;
  display: block;
  pointer-events: none;
}
.sbtn-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 204, 64, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-color: #ffd688;
}
.sbtn-icon:focus-visible {
  outline: 2px solid rgba(255, 214, 120, 0.7);
  outline-offset: 3px;
}

/* =========================================================
   SONGS (grid + altın kart) — (özet)
   ========================================================= */
.songs-grid {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1200px) {
  .songs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .songs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .songs-grid {
    grid-template-columns: 1fr;
  }
}
.song-card {
  position: relative;
  display: block;
  color: var(--text);
  text-decoration: none;
  border-radius: 22px;
  aspect-ratio: 1/1;
  overflow: hidden;
  transform: translateZ(0);
  background: linear-gradient(
        rgba(255, 255, 255, 0.035),
        rgba(255, 255, 255, 0.035)
      )
      padding-box,
    radial-gradient(
        220px 220px at var(--mx, -100px) var(--my, -100px),
        rgba(255, 214, 136, 0.18),
        transparent 60%
      )
      border-box;
  border: 2px solid rgba(255, 214, 136, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 26px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
}
.song-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 50px rgba(255, 206, 73, 0.18);
  filter: saturate(1.03) contrast(1.02);
}
.song-card .card-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 18px;
  gap: 10px;
  background: radial-gradient(
    140px 140px at var(--mx, -100px) var(--my, -100px),
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );
}
.song-card h3 {
  margin: 0;
  font: 800 clamp(16px, 1.2vw + 0.6rem, 22px) / 1.15 Montserrat, Inter,
    sans-serif;
  letter-spacing: 0.02em;
}
.platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}
.platform.sp {
  color: #a8f79c;
}
.platform.yt {
  color: #f6b08a;
}
.platform.am {
  color: #f5d27f;
}

/* =========================================================
   ETKİNLİKLER (özet)
   ========================================================= */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 12px;
}
.event-card {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 16px;
  border-radius: 16px;
  background: var(--surface-2, #111);
  border: 1px solid var(--border);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  background: radial-gradient(
    280px 280px at var(--mx, -120px) var(--my, -120px),
    rgba(255, 214, 120, 0.14),
    transparent 60%
  );
  mix-blend-mode: soft-light;
}
.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.36);
  border-color: rgba(255, 214, 120, 0.38);
}
.event-card:hover::after {
  opacity: 1;
}
.event-left {
  align-self: center;
}
.event-poster {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.event-right {
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 12px;
}
.event-head .event-date {
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-weight: 700;
  font-size: clamp(18px, 1.2vw + 0.6rem, 22px);
  color: #f5e7c8;
  background: rgba(255, 214, 120, 0.08);
  border: 1px solid rgba(255, 214, 120, 0.35);
  padding: 6px 10px;
  border-radius: 10px;
  margin-right: 10px;
}
.event-head .event-title {
  display: inline-block;
  margin: 8px 0 0;
  font: 800 clamp(18px, 1.1vw + 0.6rem, 24px) / 1.2 Inter, system-ui, sans-serif;
  color: var(--text);
  letter-spacing: 0.01em;
}
.event-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.buy-btn {
  --gold1: #ffe6a3;
  --gold2: #ffd36b;
  --gold3: #ffbe45;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: #1b1b1b;
  text-decoration: none;
  background: linear-gradient(
    135deg,
    var(--gold1),
    var(--gold2) 45%,
    var(--gold3)
  );
  border: 1px solid rgba(255, 214, 120, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 8px 22px rgba(255, 206, 73, 0.22);
  transition: transform 0.16s, filter 0.16s, box-shadow 0.16s;
}
.buy-btn:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 14px 36px rgba(255, 206, 73, 0.3);
}
.buy-btn.disabled {
  cursor: default;
  opacity: 0.65;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.06);
  color: #c9cdd4;
  border: 1px solid var(--border);
}
@media (max-width: 760px) {
  .event-card {
    grid-template-columns: 1fr;
  }
  .event-left {
    order: 1;
  }
  .event-right {
    order: 2;
  }
  .event-poster {
    aspect-ratio: 16/9;
  }
}

/* =========================================================
   İLETİŞİM (özet)
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}
@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.card-base {
  position: relative;
  padding: 18px;
  border-radius: 32px;
  background: var(--surface-2, #111);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
  border: 1px solid var(--border);
  overflow: hidden;
}
.card-gold {
  background: linear-gradient(var(--surface-2, #111), var(--surface-2, #111))
      padding-box,
    radial-gradient(
        260px 260px at var(--mx, -100px) var(--my, -100px),
        rgba(255, 214, 120, 0.18),
        transparent 60%
      )
      border-box;
  border: 1.5px solid rgba(255, 214, 120, 0.55);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.card-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
  border-color: rgba(255, 214, 120, 0.75);
}
.contact-card form {
  display: grid;
  gap: 10px;
}
.contact-card label {
  font-weight: 600;
  color: #e9edf4;
}
.contact-card input,
.contact-card textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0e1217;
  color: var(--text);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-card input:focus,
.contact-card textarea:focus {
  border-color: rgba(255, 214, 120, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 214, 120, 0.18);
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
.gold-btn {
  --gold1: #ffe6a3;
  --gold2: #ffd36b;
  --gold3: #ffbe45;
  appearance: none;
  border: 1px solid rgba(255, 214, 120, 0.6);
  background: linear-gradient(
    135deg,
    var(--gold1),
    var(--gold2) 45%,
    var(--gold3)
  );
  color: #1a1a1a;
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 10px 24px rgba(255, 206, 73, 0.25);
  transition: transform 0.16s, filter 0.16s, box-shadow 0.16s;
}
.gold-btn:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 16px 34px rgba(255, 206, 73, 0.32);
}
.info-card h3 {
  margin: 6px 0 8px;
  font: 800 20px/1.2 Inter, system-ui, sans-serif;
}
.info-list {
  display: grid;
  gap: 8px;
  margin: 10px 0 6px;
}
.info-list .label {
  display: inline-block;
  min-width: 84px;
  color: #f1dca4;
  font-weight: 700;
}
.link-underline {
  color: #e8eef7;
  border-bottom: 1px dashed rgba(255, 214, 120, 0.6);
  padding-bottom: 1px;
  text-decoration: none;
}
.link-underline:hover {
  color: #fff;
  border-bottom-color: rgba(255, 214, 120, 0.85);
}
.info-card .gold-icons {
  display: none !important;
}

/* =========================================================
   SÜS ÇİZGİLERİNİ (sticks) KAPATMA — sadece body.no-sticks’te
   ========================================================= */
.no-sticks .section-title::before,
.no-sticks .section-title::after,
.no-sticks .section-with-label::before,
.no-sticks .hr-lite {
  display: none !important;
}
.no-sticks .section-with-label::after {
  content: attr(data-label);
} /* başındaki “—” kalksın */

/* =========================================================
   Motion / Accessibility
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .menu-toggle span,
  .drawer,
  .scrim,
  .gallery-item,
  .song-card,
  .lyrics-card {
    transition: none !important;
  }
}

/* “Biraz küçük” sürüm */
/* gerekirse 860–980px aralığında ayarlayabilirsin */

/* === [OVERRIDE] Klasik kare hamburger (X animasyonu YOK) === */
.menu-toggle {
  /* boyut */
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* görünüm: beyaz zemin + siyah çerçeve (örnekteki gibi) */
  background: #fff !important;
  border: 2px solid #111 !important;
  border-radius: 12px !important;

  /* küçük derinlik */
  box-shadow: 0 1.5px 6px rgba(0, 0, 0, 0.18);

  /* eski stilleri bastır */
  padding: 0 !important;
  backdrop-filter: none !important;
  transform: none !important;
}
.menu-toggle:hover {
  background: #f5f5f5 !important;
}
.menu-toggle:active {
  background: #eee !important;
}

/* ÇİZGİLER */
.menu-toggle span {
  display: block;
  width: 24px; /* çizgi uzunluğu */
  height: 2.5px; /* çizgi kalınlığı */
  background: #111 !important;
  border-radius: 2px;
  transition: none !important;
}
.menu-toggle span + span {
  margin-top: 6px;
}

/* AÇIKKEN de çizgiler aynı kalsın (X dönüşümünü iptal et) */
.menu-toggle[aria-expanded="true"] span,
.menu-open .menu-toggle span {
  transform: none !important;
  opacity: 1 !important;
}

/* Karanlık temada kontrastı otomatik ayarla (opsiyonel) */
@media (prefers-color-scheme: dark) {
  .menu-toggle {
    border-color: #0f172a !important;
  }
  .menu-toggle span {
    background: #0f172a !important;
  }
}

/* === MENÜ BUTONU (metinli, altın) — hamburger çizgileri kapalı === */
.menu-toggle {
  /* kare/pil görünümü */
  width: auto !important;
  height: 44px !important;
  padding: 0 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 12px !important;
  border: 2px solid #ffd688 !important; /* altın çerçeve */
  background: rgba(255, 255, 255, 0.03) !important; /* koyu zemin */
  box-shadow: 0 1.5px 6px rgba(0, 0, 0, 0.18);
  -webkit-tap-highlight-color: transparent;
}

/* hamburger çizgilerini gizle */
.menu-toggle span {
  display: none !important;
}

/* buton yazısı */
.menu-toggle::before {
  content: "MENÜ";
  color: #ffd688; /* altın metin */
  font: 800 14px/1 Montserrat, Inter, system-ui, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* etkileşim halleri */
.menu-toggle:hover {
  background: rgba(255, 214, 136, 0.12) !important;
}
.menu-toggle:active {
  background: rgba(255, 214, 136, 0.18) !important;
}
.menu-toggle:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(255, 214, 136, 0.4);
}

/* açıkken de aynı kalsın (X animasyonu vs. yok) */
.menu-toggle[aria-expanded="true"]::before {
  content: "MENÜ";
}
.menu-toggle[aria-expanded="true"] span,
.menu-open .menu-toggle span {
  transform: none !important;
  opacity: 1 !important;
}

/* küçük ekranlarda yazıyı biraz küçült */
@media (max-width: 420px) {
  .menu-toggle {
    height: 40px !important;
    padding: 0 12px !important;
  }
  .menu-toggle::before {
    font-size: 13px;
    letter-spacing: 0.12em;
  }
}
/* Sticky nav altında başlık gizlenmesin */
.gallery-page main {
  padding-top: calc(var(--nav-h, 72px) + 12px);
}

/* Sayfa başlığı */
.page-title {
  margin: clamp(16px, 4vw, 40px) 0 18px;
  font: 800 clamp(28px, 4.2vw, 52px) / 1.08 Montserrat, Inter, system-ui,
    sans-serif;
  letter-spacing: 0.02em;
  color: var(--text, #f2f5f8);
}

/* Eski başlık çizimi kullanılıyorsa tamamen kapat */
.section-with-label::before,
.section-with-label::after {
  display: none !important;
  content: none !important;
}
/* GALERİ başlığı ile grid arasındaki boşluğu kısalt */
.gallery-page main {
  /* nav yüksekliğine ek boşluğu biraz azaltıyoruz */
  padding-top: calc(var(--nav-h, 1px) + 1px);
}

.gallery-page .page-title {
  /* başlığın alt marjını küçült */
  margin: clamp(1px, 2.2vw, 1px) 0 6px;
}

.gallery-page #gallery {
  /* her ihtimale karşı üst boşlukları sıfırla */
  margin-top: 5 !important;
  padding-top: 5 !important;
  margin-block-start: 5 !important;
}

/* Eğer #gallery yanlışlıkla .section sınıfını da taşıyorsa, bu da dursun */
.gallery-page #gallery.section {
  padding-top: 0 !important;
}
.gallery-page h1:first-of-type {
  margin-bottom: 1px;
}
/* GALERİ sayfasında fazlalık paddingleri iptal et */
.gallery-page .section,
.gallery-page .container.section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Başlık-nav arası ve başlık-grid arası boşlukları kısalt */
.gallery-page main {
  padding-top: calc(var(--nav-h, 20px) + 2px) !important;
}

.gallery-page .page-title {
  margin: 4px 0 5px !important; /* başlık ile grid arası */
}

/* Grid'in tepesini sıfırla */
.gallery-page #gallery {
  margin-top: 5 !important;
  padding-top: 5 !important;
}
/* ===== GALERİ: başlık ortala + boşlukları kısalt ===== */

/* Eski section paddinglerini iptal et */
.gallery-page .section,
.gallery-page .container.section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Nav ile başlık arasını kısalt (sticky nav yüksekliği kadar) */
.gallery-page main {
  padding-top: calc(var(--nav-h, 72px) + 4px) !important;
}

/* Başlığı ortaya al ve grid ile arayı daralt */
.gallery-page .page-title {
  max-width: min(1100px, 94vw);
  margin: 14px auto 10px !important; /* üstte/ altta çok az boşluk */
  text-align: center; /* ortalama */
}

/* Grid’in tepesindeki fazlalığı sıfırla */
.gallery-page #gallery {
  margin-top: 6px !important;
  padding-top: 0 !important;
}

/* (İsteğe bağlı) Galeri sayfasında genel içerik genişliğini 1100px’e hizala */
.gallery-page .container--xl {
  width: min(1100px, 94vw) !important;
}
/* contact-grid artık tek kolon ve ortalı */
.contact-grid {
  grid-template-columns: 1fr !important;
  max-width: 980px; /* isteğe göre 880–1080 arası */
  margin-inline: auto;
}

/* info-card tek başına geniş görünsün */
.info-card {
  width: 100%;
}
/* ===== BİZE ULAŞIN — büyütülmüş panel + iç mini kartlar ===== */

.contact-wrap {
  margin-top: 50px; /* başlıkla arası */
  margin-bottom: 28px;
}

.contact-panel {
  max-width: min(1300px, 96vw);
  margin-inline: auto;
  padding: clamp(22px, 3.2vw, 32px);
  border-radius: 18px;
  background: var(--surface-2, #111);
  border: 1.5px solid var(--gold-bd, rgba(255, 214, 136, 0.55));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.panel-title {
  margin: 0 0 32px;
  font: 800 clamp(22px, 2.2vw, 28px) / 1.2 Montserrat, Inter, system-ui,
    sans-serif;
  letter-spacing: 0.02em;
  color: var(--text, #eef2f7);
}

.cp-grid {
  display: grid;
  gap: clamp(12px, 2vw, 18px);
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .cp-grid {
    grid-template-columns: 1fr;
  }
}

.cp-card {
  position: relative;
  border-radius: 14px;
  padding: clamp(14px, 2.2vw, 18px);
  background: linear-gradient(
        var(--surface-2, #121418),
        var(--surface-2, #121418)
      )
      padding-box,
    radial-gradient(
        260px 260px at 20% -50%,
        rgba(255, 214, 120, 0.14),
        transparent 60%
      )
      border-box;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
  color: var(--text, #eaeef7);
  text-decoration: none; /* <a> olan kart için */
}

.cp-card:hover,
.cp-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold, #ffd688);
  box-shadow: 0 18px 48px rgba(255, 206, 73, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  outline: none;
}

.cp-card h3 {
  margin: 0 0 8px;
  font: 800 clamp(16px, 1.2vw, 18px) / 1.2 Inter, system-ui, sans-serif;
  letter-spacing: 0.02em;
  color: #f5e7c8; /* altın tonlu başlık */
}

.cp-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--text, #eaeef7);
  word-break: break-word;
}

/* E-posta kartında hafif vurgulu görünüm */
.cp-mail {
  background: linear-gradient(
        var(--surface-2, #121418),
        var(--surface-2, #121418)
      )
      padding-box,
    radial-gradient(
        220px 220px at 80% -40%,
        rgba(255, 214, 120, 0.18),
        transparent 60%
      )
      border-box;
  border-color: rgba(255, 214, 120, 0.38);
}
/* ---- Lyrics grid + modal (minimal, modern) ---- */
.page-title {
  margin: 8px 0 6px;
  font: 800 clamp(22px, 2.4vw, 36px) / 1.15 Montserrat, Inter, sans-serif;
  letter-spacing: 0.02em;
}
.page-sub {
  color: var(--muted);
  margin: 0 0 18px;
}

.lyr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

/* Kart */
.lyr-tile {
  position: relative;
  display: grid;
  place-items: center;
  padding: 24px 16px;
  border-radius: 18px;
  border: 2px solid rgba(255, 214, 136, 0.55);
  background: linear-gradient(var(--surface-2, #111), var(--surface-2, #111))
      padding-box,
    radial-gradient(
        220px 220px at var(--mx, -100px) var(--my, -100px),
        rgba(255, 214, 136, 0.18),
        transparent 60%
      )
      border-box;
  color: var(--text);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 26px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.lyr-tile:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(255, 214, 136, 0.8);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
}
.lyr-tile .lyr-name {
  text-align: center;
  font: 800 clamp(16px, 1.2vw + 0.6rem, 22px) / 1.15 Montserrat, Inter,
    sans-serif;
  letter-spacing: 0.02em;
}

/* Modal */
.lyr-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, visibility 0.22s;
  z-index: 9991;
}
.lyr-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.lyr-modal-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s, visibility 0.22s;
  z-index: 998;
}
.lyr-modal-scrim.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lyr-dialog {
  width: min(1000px, 94vw);
  max-height: 90vh;
  overflow: auto;
  border-radius: 18px;
}
.lyr-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}
.lyr-title {
  margin: 0;
  font: 800 20px/1.2 Montserrat, Inter, sans-serif;
  letter-spacing: 0.02em;
}
.lyr-close {
  --size: 42px;
  width: var(--size);
  height: var(--size);
  border-radius: 999px;
  border: 2px solid #ffd769;
  background: rgba(18, 20, 22, 0.55);
  color: #ffd769;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.16s, background 0.16s, color 0.16s;
}
.lyr-close:hover,
.lyr-close:focus-visible {
  background: #ffd769;
  color: #1a1a1a;
  transform: scale(1.06);
  outline: none;
}

.lyr-body {
  padding: 16px 18px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lyr-col {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.lyr-col h4 {
  margin: 0 0 10px;
  font: 800 16px/1.2 Inter, system-ui, sans-serif;
  letter-spacing: 0.02em;
  color: #f5d27f;
}
.mono {
  font: 500 15.5px/1.85 ui-monospace, SFMono-Regular, Menlo, Consolas,
    "Liberation Mono", monospace;
  white-space: pre-wrap;
  color: var(--text);
}

@media (max-width: 820px) {
  .lyr-body {
    grid-template-columns: 1fr;
  }
}
/* Sadece şarkı sözleri sayfasında, pseudo ile gelen ikinci MENÜ’yü kapat */
.sozler-akorlar.page .menu-toggle::before,
.sozler-akorlar.page .menu-toggle::after {
  content: none !important;
}
/* SADECE Şarkı Sözleri ve Akorlar sayfasında: pseudo ile gelen ikinci MENÜ yazısını kapat */
.sozler-page .menu-toggle::before,
.sozler-page .menu-toggle::after {
  content: none !important;
  display: none !important;
}
/* ==== PDF OVERLAY ==== */
.pdf-overlay[hidden] {
  display: none;
}
.pdf-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.pdf-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}

.pdf-modal {
  position: relative;
  width: min(1000px, 92vw);
  height: min(85vh, 900px);
  margin: 5vh auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pdf-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.pdf-close {
  position: absolute;
  top: 8px;
  right: 8px;
  appearance: none;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.pdf-close:hover {
  filter: brightness(1.05);
}

/* gold-btn yoksa basit bir stil (sende zaten var): */
.gold-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  color: #1a1a1a;
  background: var(--gold-grad);
  border: 1px solid rgba(255, 214, 120, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 8px 22px rgba(255, 206, 73, 0.22);
  cursor: pointer;
}
.gold-btn:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
}
.gold-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ====== PDF modal ====== */
.pdf-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(1px);
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.pdf-modal[aria-hidden="false"] + .pdf-scrim {
  opacity: 1;
  visibility: visible;
}

.pdf-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 9991;
  pointer-events: none;
}
.pdf-modal[aria-hidden="false"] {
  pointer-events: auto;
}

.pdf-dialog {
  width: min(96vw, 1100px);
  height: min(90vh, 820px);
  border-radius: 18px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.pdf-modal[aria-hidden="false"] .pdf-dialog {
  transform: translateY(0);
  opacity: 1;
}

.pdf-title {
  margin: 0;
  padding: 14px 54px 10px 18px;
  font: 800 20px/1.2 Inter, system-ui, sans-serif;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.pdf-close {
  position: absolute;
  right: 12px;
  top: 8px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 2px solid var(--gold);
  background: linear-gradient(var(--surface), var(--surface)) padding-box,
    radial-gradient(
        220px 220px at var(--mx, -100px) var(--my, -100px),
        rgba(255, 214, 136, 0.25),
        transparent 60%
      )
      border-box;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.pdf-close:hover {
  transform: scale(1.02);
}

#pdfFrame {
  width: 100%;
  height: calc(100% - 54px);
  border: 0;
  display: block;
  background: var(--surface-2);
}
/* Modal ve scrim gizli iken tamamen DOM'dan kaldır */
.pdf-modal[aria-hidden="true"],
.pdf-scrim[aria-hidden="true"] {
  display: none !important;
}

/* Modal açıkken scrim görünsün */
.pdf-modal[aria-hidden="false"] + .pdf-scrim {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* === MENÜ butonu — altın dolgu + siyah yazı === */
.menu-toggle {
  --gold1: #ffe6a3;
  --gold2: #ffd36b;
  --gold3: #ffbe45;

  min-width: 116px;
  height: 44px;
  padding: 0 18px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    135deg,
    var(--gold1),
    var(--gold2) 45%,
    var(--gold3)
  );
  color: #111; /* siyah yazı */
  border: 2px solid rgba(255, 214, 120, 0.9); /* altın çerçeve */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 8px 20px rgba(0, 0, 0, 0.18);
  font: 800 16px/1.1 Montserrat, Inter, system-ui, sans-serif;
  letter-spacing: 0.06em;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* Hamburger çizgilerini gizle */
.menu-toggle span {
  display: none !important;
}

/* Butonun yazısını CSS’ten bas (HTML’de boş bırakmışsan bile çalışır) */
.menu-toggle::before {
  content: "MENÜ";
}

/* Hover/active hisleri */
.menu-toggle:hover {
  filter: saturate(1.05) brightness(1.03);
  transform: translateY(-1px);
}
.menu-toggle:active {
  transform: translateY(0);
}

/* =========================
   NAV — TEK VE UYUMLU TANIM
   (dosyanın en SONUNA ekle)
   ========================= */

/* Varsayılan NAV boşlukları */
:root {
  --nav-gap: clamp(16px, 3.5vw, 28px);
}

/* NAV iç hizalama / aralık */
.nav .inner {
  gap: var(--nav-gap) !important;
  flex-wrap: nowrap !important;
}

/* Marka rozeti (logo) — ölçeklenebilir */
.brand-badge {
  margin-right: auto !important;
  padding: clamp(8px, 1.2vw, 12px) clamp(10px, 1.6vw, 16px) !important;
  border-radius: 12px !important;
  font-size: clamp(13px, 0.9vw + 10px, 18px) !important;
  white-space: nowrap !important;
  max-width: 60vw !important; /* küçük ekranda taşmayı önle */
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* MENÜ butonu — tek tanım (text buton) */
.nav .menu-toggle {
  /* önce tüm eski kuralları sıfırla ve scope'u nav içine daralt */
  all: unset;
  box-sizing: border-box;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: clamp(36px, 4.2vw, 44px);
  padding: 0 clamp(10px, 1.8vw, 18px);
  min-width: clamp(88px, 10vw, 128px);
  border-radius: 12px;

  background: linear-gradient(135deg, #ffe6a3, #ffd36b 45%, #ffbe45);
  color: #111;
  border: 2px solid rgba(255, 214, 120, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 8px 20px rgba(0, 0, 0, 0.18);

  font: 800 clamp(12px, 0.9vw + 9px, 16px) / 1.1 Montserrat, Inter, system-ui,
    sans-serif;
  letter-spacing: 0.06em;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  text-transform: uppercase;
}

/* Hamburger çizgileri varsa gizle (HTML’de kalsın sorun değil) */
.nav .menu-toggle span {
  display: none !important;
}

/* Buton metnini HTML’den al; HTML boşsa pseudo yedek */
.nav .menu-toggle:empty::before {
  content: "MENÜ";
}

/* Hover/Active */
.nav .menu-toggle:hover {
  filter: saturate(1.05) brightness(1.03);
  transform: translateY(-1px);
}
.nav .menu-toggle:active {
  transform: translateY(0);
}

/* === HERO — KANONİK VE RESPONSIVE (final override) === */
:root {
  --hero-max-w: 1200px; /* desktop üst sınır */
  --hero-ratio: 21/9; /* genel oran; mobilde 16/9'a geçeceğiz */
  --hero-focus-x: 50%; /* kompozisyon odağı (yatay) */
  --hero-focus-y: 40%; /* kompozisyon odağı (dikey) */
  --hero-radius: 18px;
}

/* Konteyner: ortala, nefes ver, yanlardan taşma yok */
html body .hero,
html body .hero.small,
html body .hero.box {
  max-width: min(var(--hero-max-w), 96vw) !important;
  width: 100% !important;
  margin: clamp(12px, 3vw, 24px) auto 0 !important;
  padding: 0 !important;
  position: relative !important;
}

/* Görsel: oran sabit, kompozisyon odaklı kırpma */
html body .hero > .hero-img,
html body .hero.small > .hero-img,
html body .hero.box > .hero-img {
  display: block !important;
  width: 100% !important;
  aspect-ratio: var(--hero-ratio) !important; /* CLS yok, oran kilit */
  height: auto !important; /* intrinsic boyuta izin ver */
  object-fit: cover !important; /* taşanı kırpar → boşluk yok */
  object-position: var(--hero-focus-x) var(--hero-focus-y) !important;
  border-radius: var(--hero-radius) !important;
  background: #0e1217 !important; /* transparan kenarları gizle */
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18) !important;
}

/* Mobil: oran 16/9, odak biraz sağa (istersen oynat) */
@media (max-width: 560px) {
  :root {
    --hero-ratio: 16/9;
    --hero-focus-x: 58%;
    --hero-focus-y: 50%;
    --hero-radius: 16px;
  }
}

/* Tablet bandı: oranı 2/1 yapıp görseli daha yayvan tutmak güzel durur */
@media (min-width: 768px) and (max-width: 1024px) {
  :root {
    --hero-ratio: 2/1;
  }
}

/* Güvenlik: img üzerinde sabit width/height attribute varsa etkisini kır */
html body .hero img[height] {
  height: auto !important;
}
html body .hero img[width] {
  max-width: 100% !important;
}
/* === PREVIEW/PLAYER — KANONİK, TAM RESPONSIVE, MERKEZDE === */
:root {
  /* Tek düğme: istediğin sabit “görünür genişlik” aralığı */
  --player-w: clamp(320px, 92vw, 780px);
  --player-radius: 14px;
}

html body .player {
  position: relative;
  width: min(var(--player-w), 100%) !important; /* konteyneri aşma */
  margin: clamp(12px, 2.5vw, 20px) auto !important; /* ortala */
  aspect-ratio: 16 / 9; /* yükseklik otomatik */
  border-radius: var(--player-radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

html body .player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: inherit;
}

/* Çok dar telefonlar için mikro dokunuş (isteğe bağlı) */
@media (max-width: 160px) {
  :root {
    --player-w: 94vw;
  }
}
/* === MENÜ BUTONU — ALTIN ZEMİN + SİYAH METİN (FINAL) === */
.nav .menu-toggle {
  all: unset; /* önce her şeyi sıfırla */
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 40px;
  min-width: 96px;
  padding: 0 16px;
  border-radius: 14px;

  /* Altın zemin */
  background: linear-gradient(135deg, #d4ac3f, #5c5b5b 45%, #d4ac3f) !important;
  border: 2px solid rgba(196, 196, 195, 0.95) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 6px 18px rgba(0, 0, 0, 0.2);

  /* SİYAH METİN */
  color: #111 !important;

  font: 800 14px/1.1 Montserrat, Inter, system-ui, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
/* === BANNER: BREAKPOINTTE KIRPMAYI DURDUR (oran sabit) === */
:root {
  --hero-ratio: 16/9 !important; /* tek oran: mobil/tablet/desktop aynı */
  --hero-focus-x: 58%; /* yüz/odak noktası (oynatabilirsin) */
  --hero-focus-y: 50%;
  --hero-radius: 18px;
}

/* Konteyner */
html body .hero,
html body .hero.small,
html body .hero.box {
  max-width: min(1200px, 96vw) !important;
  width: 100% !important;
  margin: clamp(12px, 3vw, 24px) auto 0 !important;
  padding: 0 !important;
  position: relative !important;
}

/* Görsel */
html body .hero > .hero-img,
html body .hero.small > .hero-img,
html body .hero.box > .hero-img {
  display: block !important;
  width: 100% !important;
  aspect-ratio: var(--hero-ratio) !important; /* oran sabit → sıçrama yok */
  height: auto !important;
  object-fit: cover !important; /* boşluk yok */
  object-position: var(--hero-focus-x) var(--hero-focus-y) !important;
  border-radius: var(--hero-radius) !important;
  background: #0e1217 !important;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18) !important;
}

/* Güvenlik: img'e gömülü width/height varsa etkisiz kıl */
html body .hero img[height] {
  height: auto !important;
}
html body .hero img[width] {
  max-width: 100% !important;
}
/* === DESKTOP: Banner'ı bir tık küçült (kırpma/oran aynen kalsın) === */
@media (min-width: 1025px) {
  html body .hero,
  html body .hero.small,
  html body .hero.box {
    max-width: min(
      1080px,
      90vw
    ) !important; /* 1200→1080; istersen 1040/1100 yap */
    margin-top: clamp(12px, 2.6vw, 22px) !important; /* aynı hizayı koru */
  }
}

@media (min-width: 1025px) {
  footer .row {
    justify-content: space-between !important;
  }
  footer .gold-icons {
    margin-inline: 0 !important;
    margin-left: auto !important;
    justify-content: flex-end !important;
  }
}
/* BIO sayfasındaki sosyal kutular: kontrast yükselt */
.bio-page .sbtn-icon {
  background: linear-gradient(rgba(17, 24, 39, 0.78), rgba(17, 24, 39, 0.78))
      padding-box,
    radial-gradient(
        220px 220px at var(--mx, -100px) var(--my, -100px),
        rgba(255, 214, 136, 0.22),
        transparent 60%
      )
      border-box;
  border: 1.6px solid rgba(255, 214, 136, 0.7);
  color: #fff;
}
.bio-page .sbtn-icon span,
.bio-page .sbtn-icon .label {
  /* varsa metin */
  color: #fff !important;
  font: 800 14px/1.1 Montserrat, Inter, sans-serif;
  letter-spacing: 0.04em;
}
.bio-page .sbtn-icon img,
.bio-page .sbtn-icon svg {
  mix-blend-mode: normal; /* arka planla karışıp solmasın */
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35)) contrast(1.05)
    brightness(1);
  opacity: 0.95;
}
.bio-page .sbtn-icon:hover {
  border-color: #ffd688;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}
/* ===== ŞARKILAR SAYFASI — nefes ayarları ===== */
.songs-page {
  /* Oynayacağın knobs */
  --songs-top-gap: clamp(18px, 3vw, 16px); /* Nav → Başlık */
  --songs-title-gap: clamp(12px, 2.4vw, 44px); /* Başlık → Grid */
  --footer-gap: clamp(
    28px,
    6vw,
    200px
  ); /* Footer üst nefes (yalnız bu sayfa) */
}

/* Nav → Başlık arası nefes */
.songs-page main {
  padding-top: calc(var(--songs-top-gap) + 2px);
}

/* Başlığın kendi marjinleri (hem section-title hem page-title için) */
.songs-page .section-title,
.songs-page .page-title {
  margin: var(--songs-top-gap) 0 var(--songs-title-gap) !important;
}

/* Başlık → kutucuk grid arası */
.songs-page .songs-grid {
  margin-top: var(--songs-title-gap) !important;
}

/* Footer bu sayfada aşağı insin */
.songs-page footer {
  margin-top: var(--footer-gap) !important;
}
/* ===== GALERİ: başlık üst nefesini ZORLA KIS ===== */

/* 1) Nav→Başlık arası: main ve olası sarmalayıcıların üst boşluklarını kilitle */
html body main,
html body .content,
html body .container,
html body .container--xl,
html body .section {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* 2) Sticky nav için yalnızca 4px pay bırak (istersen 0–8px arası oynat) */
html body main {
  padding-top: calc(var(--nav-h, 72px) + 4px) !important;
}

/* 3) Başlığın KENDİ üst marjinini küçült (global tanımları ezer) */
html body h1.page-title,
html body .page-title,
html body .section-with-label > .section-title,
html body h1.section-title {
  margin-top: 6px !important; /* ← ÜST NEFES BURADA */
  margin-bottom: 10px !important; /* başlık→içerik nefesi */
}

/* 4) Başlıktan önce gelen ilk elemanın marjı varsa onu da kes */
html body main > *:first-child {
  margin-top: 6px !important;
}

/* 5) Başlık→galeri grid arası çoksa kıs */
html body #gallery,
html body .gallery {
  margin-top: 8px !important; /* 4–12px arası rahatça oynat */
  padding-top: 0 !important;
}
/* ===== İLETİŞİM — nefes ve footer (dominant) ===== */

/* Başlıktaki “İLETİŞİM” ile alttaki büyük panel (Bize Ulaşın) arasını aç */
html body.contact-page .contact-panel {
  margin-top: 56px !important; /* ↑ Burayı 24–56px arası zevkine göre ayarla */
}

/* Footer’ı aşağı indir (sadece iletişim sayfasında) */
html body.contact-page footer {
  margin-top: 106px !important; /* 64–140px arasında oynatabilirsin */
}
/* ===== İLETİŞİM — Logo (nav) → Başlık arası nefesi ZORLA büyüt ===== */

/* 1) Nav'dan sonra gelen ana içerik bloğuna ekstra üst padding ver */
html body.contact-page .nav + main,
html body.contact-page .nav + * {
  /* nav yüksekliği + ekstra boşluk */
  padding-top: calc(
    var(--nav-h, 72px) + 28px
  ) !important; /* 20–48px arası oynat */
  margin-top: 0 !important; /* marjin çakışmalarını iptal et */
}

/* 2) Başlığın kendi üst marjını da garanti et (bazı temalar sıfırlıyor) */
html body.contact-page h1.section-title,
html body.contact-page .section-with-label > .section-title,
html body.contact-page .page-title {
  margin-top: 40px !important; /* istersen 12–24px */
}

/* 3) Sayfayı class'la hedefleyemiyorsan: panel varlığına göre yakala */
html body:has(.contact-panel) .nav + main,
html body:has(.contact-panel) .nav + * {
  padding-top: calc(var(--nav-h, 72px) + 28px) !important;
  margin-top: 0 !important;
}
/* === İLETİŞİM BAŞLIKLARI: belirgin + kontrastlı (final) === */
/* sadece iletişim panelindeki kart başlıkları */
html body .contact-panel .cp-card h3 {
  color: #c48711 !important; /* koyu altın (yüksek kontrast) */
  font-weight: 800 !important;
  text-transform: none; /* istersen 'uppercase' yap */
  letter-spacing: 0.02em;
  filter: none !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08); /* kenarı netleştirir */
  margin-bottom: 8px !important;
  padding-bottom: 6px !important;
  position: relative;
}

/* altına kısa altın çizgi (görsel vurgu) */
html body .contact-panel .cp-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffe6a3, #ffd36b 45%, #ffbe45);
  opacity: 0.95;
}

/* E-posta kartı zaten vurguluysa rengi biraz daha koyulaştır */
html body .contact-panel .cp-mail h3 {
  color: #b1730e !important;
}

/* Koyu temada metin yine koyu-altın kalsın (soluklaşmasın) */
@media (prefers-color-scheme: dark) {
  html body .contact-panel .cp-card h3 {
    color: #d3981e !important;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
  }
}
/* 1) Başlık: biraz yukarı, altına nefes */
html body h1.page-title {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

/* 2) Footer: sayfada daha aşağı dursun */
html body footer {
  margin-top: 196px !important; /* 64–120 arası keyfine göre */
}
/* === MOBİL (≤560px): kartları yarı yükseklik yap ve ortala === */
@media (max-width: 560px) {
  /* Söz/Akor ve Şarkı kutuları (tüm varyantları kapsaın) */
  html body .songs-grid .song-card,
  html body .tile-grid .song-tile,
  html body .song-tile,
  html body .lyr-grid .lyr-tile,
  html body .lyr-tile,
  html body .lyrics-card {
    aspect-ratio: 2 / 1 !important; /* 1:1 → 2:1 ≈ %50 yükseklik */
    padding: 12px !important; /* üst–alt nefesi kıs */
    align-items: center !important; /* içerik ortalı dursun */
    justify-content: center !important;
  }

  /* İç bloklar/başlıklar (tek satıra yakın dursun) */
  html body .song-card .card-inner {
    padding: 12px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  html body .song-card h3,
  html body .song-name,
  html body .lyr-tile .lyr-name {
    font-size: clamp(14px, 4.2vw, 18px) !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    text-align: center !important;
  }
}
/* === BANNER → BAŞLIK → PREVIEW: evrensel nefes (final) === */
:root {
  /* Tek oynayacağın düğmeler */
  --gap-hero-after: clamp(16px, 3.2vw, 44px); /* banner sonrası boşluk */
  --gap-head-top: clamp(6px, 1.6vw, 14px); /* başlığın üstü */
  --gap-head-bottom: clamp(8px, 2.2vw, 18px); /* başlığın altı */
  --gap-player-top: clamp(12px, 3vw, 44px); /* preview üst boşluk */
}

/* 1) Banner’ın altına nefes */
html body .hero,
html body .hero.small,
html body .hero.box {
  margin-bottom: var(--gap-hero-after) !important;
}

/* 2) “ÖNE ÇIKAN” başlığı (hero’dan hemen sonra gelen başlık ne ise) */
html body .hero + h1,
html body .hero + h2,
html body .hero + .section-title,
html body .hero + .page-title,
html body .hero.small + h1,
html body .hero.small + h2,
html body .hero.small + .section-title,
html body .hero.small + .page-title,
html body .hero.box + h1,
html body .hero.box + h2,
html body .hero.box + .section-title,
html body .hero.box + .page-title {
  margin-top: var(--gap-head-top) !important;
  margin-bottom: var(--gap-head-bottom) !important;
}

/* 3) Preview kutusunun başlıktan sonraki nefesi */
html body .player {
  margin-top: var(--gap-player-top) !important;
}
/* MOBİL ANA SAYFA — footer'ı yukarı çek (baskın, kısa) */
@media (max-width: 560px) {
  :root {
    --footer-pull: -5px;
  } /* ↑ ne kadar çekeceğini burada ayarla */

  /* tercih edersen sadece home'da uygula: body.home-page footer { ... } */
  html body footer {
    margin-top: var(--footer-pull) !important; /* negatif → yukarı taşır */
  }

  /* küçük bir destek: main alt dolgusu varsa sıfırla */
  html body main {
    padding-bottom: 0 !important;
  }
}
/* === MOBİL NAV — logo SOL, MENÜ SAĞ; banner genişliğiyle hizala === */
@media (max-width: 560px) {
  :root {
    /* Banner’ın mobil genişliği kaç ise aynısını kullan: 94–96vw arası */
    --mobile-container-w: 94vw; /* ← istersen 96vw yap */
    --mobile-gutter: 0px; /* kenar iç boşluk; 0–12px arası dene */
  }

  /* Nav içi: banner ile aynı genişlikte, ortalı, uçlara yasla */
  html body .nav .inner {
    width: var(--mobile-container-w) !important;
    max-width: var(--mobile-container-w) !important;
    margin: 0 auto !important;
    padding-left: var(--mobile-gutter) !important;
    padding-right: var(--mobile-gutter) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important; /* ← solda logo, sağda MENÜ */
    gap: 0 !important;
  }

  /* Önceki auto margin hacklerini iptal et */
  html body .brand-badge {
    margin: 0 !important;
  }
  html body .nav .menu-toggle {
    margin: 0 !important;
  }

  /* iPhone çentik güvenliği (opsiyonel) */
  @supports (padding: env(safe-area-inset-left)) {
    html body .nav .inner {
      padding-left: calc(
        var(--mobile-gutter) + env(safe-area-inset-left)
      ) !important;
      padding-right: calc(
        var(--mobile-gutter) + env(safe-area-inset-right)
      ) !important;
    }
  }
}
.player {
  max-width: 960px;
  margin: 0 auto;
}
.player-aspect {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 16px;
}
.player-aspect iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.yt-fallback {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.yt-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.93);
}
.yt-fallback .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
}
.yt-fallback .play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  border-left: 22px solid #fff;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}
/* === ŞARKI KARTLARI: yazıyı BÜYÜT + TAM ORTALA (nükleer) === */

/* Kart kapsayıcıyı ızgara yap ve merkeze al */
html body .songs-grid .song-card.song-card,
html body .tile-grid .song-tile.song-tile,
html body .lyr-grid .lyr-tile.lyr-tile {
  display: grid !important;
  place-items: center !important; /* hem yatay hem dikey merkez */
  text-align: center !important;
}

/* Eski absolute/flex yerleşimi tamamen iptal */
html body .songs-grid .song-card.song-card .card-inner.card-inner {
  position: static !important;
  inset: auto !important;
  display: contents !important; /* çocukları doğrudan grid öğesi yap */
  padding: 0 !important;
  gap: 0 !important;
  background: none !important;
}

/* Başlık tipografisi ve hizası */
html body .song-card h3,
html body .song-name,
html body .lyr-tile .lyr-name {
  position: static !important;
  margin: 0 !important;
  align-self: center !important;
  justify-self: center !important;
  font-family: "Plus Jakarta Sans", Montserrat, Inter, system-ui, sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(20px, 1.1vw + 1rem, 30px) !important;
  line-height: 1.2 !important;
  letter-spacing: 0.015em;
}
@media (max-width: 560px) {
  html body .song-card h3,
  html body .song-name,
  html body .lyr-tile .lyr-name {
    font-size: clamp(17px, 5.2vw, 20px) !important;
  }
}
/* ❶ Font (sadece CSS ile yükleme) */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@700;800&display=swap");

/* ❷ Ayarlar */
:root {
  --song-title-size: clamp(20px, 1.1vw + 1rem, 30px); /* desktop boyutu */
  --song-title-size-m: clamp(17px, 5.2vw, 20px); /* mobil boyutu  */
  --hover-spot: 220px; /* parıltı çapı  */
}

/* ❸ Kartları ortalı tut (önceki düzeni ezmeden) */
html body .songs-grid .song-card.song-card,
html body .tile-grid .song-tile.song-tile,
html body .lyr-grid .lyr-tile.lyr-tile {
  position: relative;
  display: grid !important;
  place-items: center !important;
  text-align: center !important;
  overflow: hidden;
  cursor: pointer;
  will-change: transform, filter;
}

/* ❹ Başlık tipografisi */
html body .song-card h3,
html body .song-name,
html body .lyr-tile .lyr-name {
  margin: 0 !important;
  font-family: "Plus Jakarta Sans", Montserrat, Inter, system-ui, sans-serif !important;
  font-weight: 800 !important;
  font-size: var(--song-title-size) !important;
  line-height: 1.15 !important;
  letter-spacing: 0.015em;
  transform-origin: center center;
  transition: transform 0.18s ease, text-shadow 0.18s ease, filter 0.18s ease;
}

/* ❺ Hover parıltısı (imleç takibi varsa onunla, yoksa kart ortası) */
html body .song-card::after,
html body .song-tile::after,
html body .lyr-tile::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    var(--hover-spot) var(--hover-spot) at var(--mx, 50%) var(--my, 50%),
    rgba(255, 214, 136, 0.22),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.22s ease;
}
html body .song-card:hover::after,
html body .song-tile:hover::after,
html body .lyr-tile:hover::after {
  opacity: 1;
}

/* ❻ Hover’da hafif kaldır + yazıyı büyüt */
html body .song-card:hover,
html body .song-tile:hover,
html body .lyr-tile:hover {
  transform: translateY(-2px);
  filter: saturate(1.03) contrast(1.02);
}
html body .song-card:hover h3,
html body .song-tile:hover .song-name,
html body .lyr-tile:hover .lyr-name {
  transform: scale(1.06);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

/* ❼ Dokunmatiklerde de his ver (hover yoksa :active) */
@media (hover: none) {
  html body .song-card:active::after,
  html body .song-tile:active::after,
  html body .lyr-tile:active::after {
    opacity: 1;
  }
  html body .song-card:active h3,
  html body .song-tile:active .song-name,
  html body .lyr-tile:active .lyr-name {
    transform: scale(1.06);
  }
}

/* ❽ Mobil boyut */
@media (max-width: 560px) {
  html body .song-card h3,
  html body .song-name,
  html body .lyr-tile .lyr-name {
    font-size: var(--song-title-size-m) !important;
  }
}

/* ❾ Erişilebilirlik: hareket azalt */
@media (prefers-reduced-motion: reduce) {
  html body .song-card,
  html body .song-tile,
  html body .lyr-tile {
    transition: none !important;
  }
  html body .song-card h3,
  html body .song-name,
  html body .lyr-tile .lyr-name {
    transition: none !important;
  }
}
/* ====== Şarkı kartları (kare, temiz) ====== */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(14px, 2.2vw, 20px);
  margin-top: 14px;
}
.song-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--surface);
  color: var(--text);
  border: 2px solid rgba(255, 214, 136, 0.45);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease, filter 0.18s ease;
  text-align: center;
  padding: 22px;
}
.song-tile:hover,
.song-tile:focus-visible {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--gold);
  box-shadow: 0 18px 50px rgba(255, 206, 73, 0.18);
  outline: none;
  filter: saturate(1.03) contrast(1.02);
}
.song-name {
  font: 800 clamp(16px, 1.2vw + 0.6rem, 22px) / 1.15 Montserrat, Inter,
    system-ui, sans-serif;
  letter-spacing: 0.02em;
  padding: 0 8px;
}
/* MOBİL: Sosyal linkler ile footer arasına nefes */
@media (max-width: 560px) {
  html body footer {
    margin-top: clamp(
      16px,
      5vw,
      28px
    ) !important; /* ↑ değeri arttır = daha fazla nefes */
  }
}
