:root {
  /* Pastel ama canlı */
  --ink: #0c0c10;
  --paper: #fbf4e7;
  /* krem */
  --paper2: #fff9ef;
  --gold: #d7b16e;
  /* sıcak gold */
  --gold2: #e7c991;
  --rose: #ff6fae;
  /* canlı pembe */
  --mint: #2dd4bf;
  /* canlı mint */
  --sky: #60a5fa;
  /* canlı mavi */
  --txt: #1b1b22;
  --mut: #5a5a66;
  --line: rgba(0, 0, 0, .10);
  --shadow: 0 18px 70px rgba(0, 0, 0, .18);
  --r: 18px;
  --playerH: 96px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--txt);
  background:
    radial-gradient(1200px 650px at 20% 5%, rgba(255, 111, 174, .18), rgba(255, 111, 174, 0) 55%),
    radial-gradient(1000px 600px at 85% 0%, rgba(45, 212, 191, .16), rgba(45, 212, 191, 0) 55%),
    radial-gradient(1200px 800px at 50% 110%, rgba(96, 165, 250, .12), rgba(96, 165, 250, 0) 55%),
    linear-gradient(180deg, var(--paper2), var(--paper));
  padding-bottom: calc(var(--playerH) + 300px) !important;
}

/* TOP NAV */
.top {
  background: var(--ink);
  color: #fff;
  height: 60px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
}

.top .inner {
  width: min(1440px, 100%);
  padding: 0 18px;
  display: flex;
  align-items: center;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  width: 100%;
}

.mark {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #41244e;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  /* Bar 60px, Logo 120px. Bar altı logo ortasına gelsin diye:
     Logo üst sınırı barın en üstünde (0) başlarsa, 60px'de (merkezinde) bar biter.
  */
  margin-top: 80px;
}

.mark img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}

.topTitle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .5px;
  white-space: nowrap;
  pointer-events: none;
}

@media (max-width: 600px) {
  .topTitle {
    font-size: 14px;
    /* Mobilde yazıyı biraz küçültelim ki sığsın */
  }
}

/* HERO */
.hero {
  width: min(1440px, 100%);
  margin: 40px auto 300px !important;
  padding: 0 18px;
}

.heroCard {
  position: relative;
  background: rgba(255, 255, 255, .55);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  /* overflow: hidden; -> İçerik aşağı taşarsa görünmesi için kaldırıldı */
  min-height: auto;
  /* İçeriğe göre uzasın */
  padding-bottom: 20px;
}

.heroCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(215, 177, 110, .22), rgba(215, 177, 110, 0) 55%),
    radial-gradient(900px 520px at 85% 10%, rgba(255, 111, 174, .16), rgba(255, 111, 174, 0) 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .45), rgba(255, 255, 255, .18));
  pointer-events: none;
}

.heroInner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 40px 40px 40px 80px;
  /* 20px -> 80px: Sağa kaydırma */
}

@media (max-width: 980px) {
  body {
    padding-bottom: calc(var(--playerH) + 120px) !important;
  }

  .top {
    height: 50px !important;
    padding: 5px 0;
  }

  .mark {
    width: 90px !important;
    height: 90px !important;
    margin-top: 50px !important;
  }

  .topTitle {
    font-size: 16px;
  }

  .hero {
    margin-bottom: 80px !important;
  }

  .top .inner {
    flex-direction: row;
    justify-content: flex-start;
  }

  .heroInner {
    grid-template-columns: 1fr;
    padding: 20px;
    text-align: center;
    /* Metinleri ortala */
  }

  .heroLeft {
    align-items: center;
    /* Flex öğelerini ortala */
  }

  .note {
    margin-left: auto;
    margin-right: auto;
  }

  .collage {
    margin-top: 20px;
  }

  nav {
    display: none;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: calc(var(--playerH) + 60px) !important;
  }

  .mark {
    width: 70px !important;
    height: 70px !important;
    margin-top: 35px !important;
  }

  .topTitle {
    font-size: 13px !important;
    left: auto !important;
    right: 18px !important;
    transform: none !important;
  }

  .hero {
    margin-bottom: 40px !important;
    margin-top: 20px !important;
  }
}

.heroLeft {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 20px 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: rgba(0, 0, 0, .70);
  letter-spacing: .2px;
}

.kicker .pill {
  height: 10px;
  width: 10px;
  border-radius: 999px;
  background: var(--rose);
  box-shadow: 0 0 0 6px rgba(255, 111, 174, .18);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -.6px;
}

@media (max-width: 520px) {
  h1 {
    font-size: 38px;
  }
}

h1 .accent {
  color: var(--gold);
  text-shadow: 0 10px 35px rgba(215, 177, 110, .22);
}

p {
  margin: 0;
  color: var(--mut);
  font-size: 16px;
  line-height: 1.8;
  max-width: 52ch;
}

.ctaRow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
}

.cta {
  border: 1px solid rgba(0, 0, 0, .12);
  background: rgba(255, 255, 255, .55);
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 950;
  cursor: pointer;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
}

.cta.primary {
  background: linear-gradient(135deg, rgba(255, 111, 174, .22), rgba(215, 177, 110, .20));
  border-color: rgba(255, 111, 174, .32);
}

.cta:hover {
  border-color: rgba(0, 0, 0, .18);
}

.cta:active {
  transform: translateY(1px);
}

/* HERO RIGHT - collage */
.heroRight {
  display: grid;
  align-content: center;
  justify-items: center;
  /* Yatayda ortalama */
  gap: 12px;
  padding: 10px;
}

.collage {
  position: relative;
  aspect-ratio: 16/11;
  width: 100%;
  max-width: 480px;
  /* margin-left: -20px; -> Ortalamak için kaldırıldı */
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, .05);
  background: #000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.collage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* dekor çizgiler */
.collage .lineA,
.collage .lineB {
  position: absolute;
  height: 6px;
  border-radius: 999px;
  background: rgba(215, 177, 110, .65);
  opacity: .55;
}

.collage .lineA {
  width: 44%;
  left: 22%;
  top: 12%;
}

.collage .lineB {
  width: 36%;
  right: 12%;
  bottom: 18%;
  background: rgba(255, 111, 174, .35);
}

/* placeholder portrait blocks (sen kendi resimlerinle değiştireceksin) */
.tile {
  position: absolute;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .10);
  background:
    radial-gradient(70% 70% at 30% 30%, rgba(0, 0, 0, .06), rgba(255, 255, 255, .35));
  overflow: hidden;
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 111, 174, .12), rgba(45, 212, 191, .10), rgba(215, 177, 110, .10));
  mix-blend-mode: multiply;
  opacity: .55;
  pointer-events: none;
}

/* farklı boyutlar / konumlar */
.t1 {
  width: 38%;
  height: 58%;
  left: 2%;
  top: 18%;
}

.t2 {
  width: 28%;
  height: 42%;
  left: 42%;
  top: 8%;
}

.t3 {
  width: 22%;
  height: 34%;
  left: 66%;
  top: 22%;
}

.t4 {
  width: 30%;
  height: 40%;
  left: 36%;
  top: 52%;
}

.t5 {
  width: 24%;
  height: 34%;
  left: 60%;
  top: 58%;
}

.t6 {
  width: 22%;
  height: 32%;
  left: 22%;
  top: 62%;
}

.note {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 12px 24px;
  border-radius: 20px;
  border: 2px solid var(--gold);
  /* Daha belirgin yapalım */
  background: rgba(255, 255, 255, .9);
  color: var(--txt);
  font-size: 14px;
  margin-top: 30px;
  margin-bottom: 30px;
  width: fit-content;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tag,
.tag a {
  flex: 0 0 auto;
  font-weight: 800;
  color: #000;
  padding: 5px 15px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s;
}

.tag a:hover {
  background: var(--ink);
  color: #fff;
}

/* PLAYER BAR (fixed bottom) */
.playerBar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--playerH);
  background: linear-gradient(180deg, rgba(215, 177, 110, .95), rgba(231, 201, 145, .95));
  border-top: 1px solid rgba(0, 0, 0, .12);
  display: flex;
  justify-content: center;
  z-index: 100;
  box-shadow: 0 -18px 60px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
}

.playerInner {
  width: min(1440px, 100%);
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 980px) {
  .playerInner {
    padding: 10px;
    gap: 10px;
  }

  .pMeta {
    display: none;
  }

  .volWrap {
    display: none !important;
  }
}

/* left logo area */
.pLeft {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.pLogo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #41244e;
  /* Görseldeki mor tonu */
  border: 1px solid rgba(0, 0, 0, .1);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.pLogo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.pMeta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pMeta b {
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

.pMeta span {
  font-size: 12px;
  color: rgba(0, 0, 0, .6);
}

/* center controls */
.pCenter {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 600px;
  /* Geniş ekranlarda bar biraz daha uzun olabilir */
}

.vinylWrap {
  flex: 0 0 auto;
}

.vinyl {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .65) 0 8px, rgba(0, 0, 0, .85) 9px 100%),
    conic-gradient(from 0deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, .12) 50%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, .10));
  border: 1px solid rgba(0, 0, 0, .2);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
  display: grid;
  place-items: center;
}

.vinyl.spin {
  animation: spin 3s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.playBtn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--mint));
  border: 1px solid rgba(0, 0, 0, .1);
  display: grid;
  place-items: center;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: transform 0.1s;
}

.playBtn:active {
  transform: scale(0.95);
}

/* progress */
.prog {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.time {
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, .7);
  min-width: 40px;
}

.bar {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .4);
  border: 1px solid rgba(0, 0, 0, .05);
  overflow: hidden;
}

.fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--rose), var(--mint));
  border-radius: 999px;
  transition: width 0.3s linear;
}

/* right actions */
.pRight {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.volWrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .3);
  border: 1px solid rgba(0, 0, 0, .05);
}

.volIcon {
  font-size: 16px;
  cursor: pointer;
  user-select: none;
}

input[type="range"] {
  accent-color: var(--rose);
  width: 100px;
  cursor: pointer;
  height: 4px;
}