:root {
  --bg: #07112d;
  --bg-deep: #050b1c;
  --surface: rgba(13, 25, 66, 0.82);
  --surface-strong: rgba(17, 33, 84, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(98, 219, 255, 0.24);
  --text: #f5f7ff;
  --muted: #b9c5ee;
  --cyan: #62dbff;
  --gold: #ffc53d;
  --orange: #ff9830;
  --violet: #5f2fcf;
  --shadow: 0 26px 90px rgba(2, 8, 24, 0.55);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1240px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(95, 47, 207, 0.24), transparent 28%),
    radial-gradient(circle at top right, rgba(98, 219, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #091432 0%, #050a1a 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(180deg, rgba(5, 11, 28, 0.28), rgba(5, 11, 28, 0.82)),
    url("assets/beklemebg.jpg") center top / cover no-repeat;
  opacity: 0.16;
}

body::after {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 197, 61, 0.16), transparent 18%),
    repeating-linear-gradient(
      135deg,
      transparent 0 32px,
      rgba(255, 255, 255, 0.03) 32px 33px
    );
  opacity: 0.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 24px 0 72px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.brand span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-nav a {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  border-color: rgba(98, 219, 255, 0.45);
  background: rgba(98, 219, 255, 0.08);
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: start;
  padding: 28px 0 56px;
}

[data-reveal],
.hero-copy,
.hero-visual,
.feature-card,
.media-card,
.metric-card,
.section-heading,
.video-panel,
.playlist-panel,
.episode-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.media-overlay h2,
.summary-panel h3,
.playlist-panel h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  max-width: none;
}

.hero-text,
.section-heading p,
.feature-card p,
.media-overlay p,
.metric-card span,
.playlist-panel p,
.episode-copy p,
.summary-panel p,
.source-inline {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-text {
  margin: 22px 0 0;
  max-width: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button {
  min-height: 54px;
  padding: 0 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.button:hover,
.button:focus-visible,
.episode-card:hover,
.episode-card:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #131520;
  background: linear-gradient(135deg, var(--gold), #ffe08d);
  box-shadow: 0 18px 40px rgba(255, 197, 61, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.button-wide {
  width: 100%;
  margin-top: 24px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column: 1 / -1;
  width: 100%;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
}

.hero-stats li {
  padding: 18px 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.stage-shot,
.feature-card,
.media-card,
.metric-card,
.video-panel,
.playlist-panel,
.episode-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.stage-shot {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  aspect-ratio: 16 / 9;
}

.stage-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-shot iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.micro-label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.source-inline {
  margin: 0;
  max-width: none;
}

.section {
  padding: 34px 0;
}

.section-alt {
  padding: 42px 0;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2 {
  font-size: clamp(1.65rem, 2.4vw, 2.5rem);
  font-weight: 500;
}

.section-heading p:last-child {
  margin-top: 14px;
}

.feature-grid,
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.metric-card {
  padding: 24px;
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 197, 61, 0.1);
  border: 1px solid rgba(255, 197, 61, 0.18);
  font-weight: 800;
}

.feature-card h3,
.episode-copy h3 {
  margin: 18px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.section-map {
  position: relative;
}

.map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
}

.map-panel,
.map-sidebar {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.map-sidebar {
  background: var(--surface-strong);
}

.map-status-row {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.map-status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--gold);
  font-weight: 800;
  border: 1px solid rgba(255, 197, 61, 0.24);
  background: rgba(255, 197, 61, 0.12);
}

.map-status-copy {
  margin: 0;
  max-width: none;
  color: var(--muted);
  line-height: 1.7;
}

.map-figure {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 20% 20%, rgba(98, 219, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(11, 20, 52, 0.94), rgba(7, 13, 33, 0.92));
}

.map-figure::before {
  content: "";
  position: absolute;
  inset: auto -10% -36% 35%;
  height: 240px;
  background: radial-gradient(circle, rgba(95, 47, 207, 0.28), transparent 68%);
  pointer-events: none;
}

.turkiye-map-art {
  position: relative;
  z-index: 1;
  width: 100%;
  opacity: 0.72;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.28));
}

.map-pin-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  min-width: 14px;
  min-height: 14px;
  border: none;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.map-pin::before,
.map-pin::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.map-pin::before {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(7, 17, 45, 0.95);
  background: linear-gradient(135deg, var(--gold), #fff0a8);
  box-shadow: 0 0 0 8px rgba(255, 197, 61, 0.12);
}

.map-pin::after {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(98, 219, 255, 0.32);
  animation: pinPulse 2.8s ease-out infinite;
}

.map-pin span {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(7, 17, 45, 0.92);
  border: 1px solid rgba(98, 219, 255, 0.26);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.map-pin:hover span,
.map-pin:focus-visible span,
.map-pin.is-active span {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.map-pin.is-active::before {
  background: linear-gradient(135deg, var(--cyan), #e0fbff);
  box-shadow: 0 0 0 10px rgba(98, 219, 255, 0.16);
}

.map-pin.is-active::after {
  border-color: rgba(255, 197, 61, 0.38);
}

.map-city-kicker {
  margin: 18px 0 8px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-sidebar h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  letter-spacing: -0.03em;
}

.map-city-copy {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.map-sidebar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.map-sidebar-grid div {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.map-sidebar-grid strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.45;
}

.map-steps {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.map-steps article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.map-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #0e1735;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), #d8f9ff);
}

.map-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 18px;
}

.video-panel,
.playlist-panel {
  padding: 22px;
}

.video-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #030816;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.playlist-panel {
  background: var(--surface-strong);
}

.playlist-panel h3 {
  margin-top: 18px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.playlist-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.playlist-notes div {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.playlist-notes strong {
  display: block;
  font-size: 1.15rem;
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.episode-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.episode-card:hover,
.episode-card:focus-visible {
  border-color: rgba(98, 219, 255, 0.45);
  background: rgba(17, 33, 84, 0.9);
}

.episode-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.episode-copy {
  padding: 18px 18px 18px 0;
  align-self: center;
}

.episode-copy span {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.episode-copy h3 {
  margin-top: 10px;
  margin-bottom: 8px;
}

.episode-copy p {
  margin: 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
}

.media-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.media-card-wide img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.media-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 9, 24, 0.92) 100%);
}

.media-overlay h2,
.media-overlay p,
.summary-panel h3,
.summary-panel p {
  max-width: none;
}

.media-overlay h2 {
  font-size: clamp(1.5rem, 2vw, 2.25rem);
  font-weight: 500;
}

.media-card-tall {
  padding: 24px;
}

.summary-panel {
  display: grid;
  align-content: center;
  gap: 16px;
  height: 100%;
}

.summary-panel h3 {
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
}

.logo-main {
  width: min(280px, 100%);
  margin: 0 0 8px;
  border-radius: 28px;
}

.text-link {
  color: var(--gold);
  font-weight: 800;
  transition: transform 180ms ease, color 180ms ease;
}

.metric-card {
  display: grid;
  gap: 10px;
  align-content: start;
}

.stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 1;
  color: var(--gold);
}

.site-footer {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(8, 15, 38, 0.92), rgba(8, 15, 38, 0.82));
  box-shadow: var(--shadow);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto auto;
  gap: 18px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.footer-brand strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.footer-brand p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.footer-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--text);
  border-color: rgba(98, 219, 255, 0.45);
  background: rgba(98, 219, 255, 0.08);
  transform: translateY(-2px);
}

.footer-button {
  white-space: nowrap;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 18px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-meta p {
  margin: 0;
  line-height: 1.7;
}

.footer-meta a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .hero,
  .showcase-grid,
  .video-layout,
  .map-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .metric-grid,
  .episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1 {
    font-size: clamp(2.1rem, 5vw, 3.3rem);
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding-top: 18px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand span {
    font-size: 1rem;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-stats,
  .feature-grid,
  .metric-grid,
  .episode-grid,
  .playlist-notes,
  .map-sidebar-grid {
    grid-template-columns: 1fr;
  }

  .video-panel,
  .playlist-panel,
  .site-footer {
    padding: 18px;
  }

  .episode-card {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .episode-card img {
    aspect-ratio: 16 / 9;
  }

  .episode-copy {
    padding: 0 18px 18px;
  }

  .media-card-wide img {
    min-height: 320px;
  }

  .map-panel,
  .map-sidebar,
  .map-figure {
    padding: 18px;
  }

  .map-pin span {
    display: none;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-button {
    width: 100%;
  }

  .footer-meta {
    flex-direction: column;
  }
}

@keyframes pinPulse {
  0% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(0.7);
  }

  70% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.18);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.18);
  }
}
