:root {
  --espresso: #1c1410;
  --ink: #241c18;
  --paper: #f6f1ea;
  --foam: #fffcf8;
  --gold: #c6a46c;
  --gold-soft: #e8d4ad;
  --muted: #7a7068;
  --line: rgba(28, 20, 16, 0.1);
  --font-display: "Libre Bodoni", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: #9a6b2f; }
a:hover { color: var(--espresso); }

/* —— Header —— */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 40px);
  transition: background 0.25s ease, backdrop 0.25s ease, padding 0.25s ease;
}
.topbar.is-solid {
  background: rgba(28, 20, 16, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  padding-top: 10px;
  padding-bottom: 10px;
}
.top-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.15s ease, opacity 0.15s ease;
}
.top-brand:hover,
.top-brand:focus {
  color: var(--gold-soft);
  opacity: 1;
}
.topnav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.topnav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.84rem;
}
.topnav a:hover { color: var(--gold-soft); }
.top-cta {
  text-decoration: none;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--gold);
  padding: 9px 14px;
  border-radius: 999px;
}
.top-cta:hover { background: var(--gold-soft); color: var(--espresso); }

/* —— Gate —— */
.gate {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 100px 16px 110px;
  overflow: hidden;
  color: #fff;
}

.gate-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.gate-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: drift 28s ease-in-out infinite alternate;
}
.gate-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(28, 20, 16, 0.35), rgba(28, 20, 16, 0.82) 70%),
    linear-gradient(180deg, rgba(28, 20, 16, 0.55) 0%, rgba(28, 20, 16, 0.35) 40%, rgba(28, 20, 16, 0.9) 100%);
}
.gate-grain {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
@keyframes drift {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.08) translateY(-1.2%); }
}

.float-chat {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.fc {
  position: absolute;
  max-width: 220px;
  padding: 10px 14px;
  border-radius: 14px 14px 14px 4px;
  background: rgba(255, 252, 248, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  animation: floaty 5s ease-in-out infinite alternate;
}
.fc b { display: block; font-size: 0.7rem; color: var(--gold-soft); margin-bottom: 2px; font-weight: 800; }
.fc.me {
  background: rgba(198, 164, 108, 0.22);
  border-radius: 14px 14px 4px 14px;
}
.fc.me i { display: block; text-align: right; font-style: normal; opacity: 0.7; font-size: 0.7rem; margin-top: 2px; }
.fc1 { left: 5%; top: 22%; animation-delay: 0s; }
.fc2 { right: 8%; top: 28%; animation-delay: -1.5s; }
.fc3 { left: 7%; top: 58%; animation-delay: -2.5s; }
.fc4 { right: 6%; top: 62%; animation-delay: -0.8s; }
@keyframes floaty {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}

.gate-center {
  position: relative;
  z-index: 3;
  width: min(400px, 100%);
  text-align: center;
  animation: rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

.gate-kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.gate-brand {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: #fff;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  display: inline-block;
}
.gate-brand::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}
.gate-brand span {
  display: inline-block;
  font-size: 0.42em;
  font-weight: 600;
  opacity: 0.75;
  vertical-align: super;
  margin-left: 2px;
}

.gate-form {
  background: rgba(255, 252, 248, 0.97);
  color: var(--ink);
  border-radius: 22px;
  padding: 26px 22px 18px;
  text-align: left;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset;
  border: 1px solid rgba(230, 210, 170, 0.35);
  position: relative;
  overflow: hidden;
}
.gate-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gate-title {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--espresso);
  letter-spacing: -0.02em;
}
.gate-sub {
  margin: 4px 0 16px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.field {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e6ddd2;
  border-radius: 12px;
  padding: 0 14px;
  margin-bottom: 10px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 164, 108, 0.2);
}
.field-ico { color: var(--gold); display: grid; place-items: center; }
.field input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 13px 0;
  min-width: 0;
}
.field input::placeholder { color: #a89c90; font-weight: 500; }

.btn-connect {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 4px;
  background: linear-gradient(135deg, #2a2018, #1c1410);
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.btn-connect:hover { transform: translateY(-1px); filter: brightness(1.08); }

.gate-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}
.btn-ghost {
  border: 1px solid #e0d5c8;
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  padding: 10px 8px;
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--espresso); }
.btn-ghost[aria-pressed="true"] {
  background: var(--espresso);
  color: var(--gold-soft);
  border-color: var(--espresso);
}

.gate-tag {
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.4vw, 1.7rem);
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.gate-portraits {
  position: absolute;
  right: max(2%, calc(50% - 560px));
  bottom: 9%;
  width: min(280px, 28vw);
  height: min(360px, 48vh);
  z-index: 2;
  pointer-events: none;
}
.gate-shot {
  margin: 0;
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(198, 164, 108, 0.3);
}
.gate-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.gate-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(28, 20, 16, 0.35) 100%);
  pointer-events: none;
}
.shot-main {
  width: 58%;
  aspect-ratio: 3/4;
  right: 0;
  bottom: 8%;
  z-index: 3;
  transform: rotate(-2deg);
  animation: rise 1s ease 0.12s both, shotFloatA 6s ease-in-out 1s infinite alternate;
}
.shot-b {
  width: 42%;
  aspect-ratio: 3/4;
  left: 0;
  top: 0;
  z-index: 2;
  transform: rotate(4deg);
  animation: rise 1s ease 0.22s both, shotFloatB 7s ease-in-out 1.2s infinite alternate;
}
.shot-c {
  width: 38%;
  aspect-ratio: 3/4;
  left: 18%;
  bottom: 0;
  z-index: 1;
  transform: rotate(-6deg);
  opacity: 0.95;
  animation: rise 1s ease 0.32s both, shotFloatC 5.5s ease-in-out 0.8s infinite alternate;
}
@keyframes shotFloatA {
  from { transform: rotate(-2deg) translateY(0); }
  to { transform: rotate(-2deg) translateY(-10px); }
}
@keyframes shotFloatB {
  from { transform: rotate(4deg) translateY(0); }
  to { transform: rotate(4deg) translateY(8px); }
}
@keyframes shotFloatC {
  from { transform: rotate(-6deg) translateY(0); }
  to { transform: rotate(-6deg) translateY(-6px); }
}

.gate-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 86px;
  z-index: 4;
  display: block;
}

/* —— Content (alt bölüm — hero ile aynı dil) —— */
.quote-band {
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(198, 164, 108, 0.16), transparent 55%),
    var(--espresso);
  color: #fff;
  padding: clamp(48px, 8vw, 80px) 22px;
  text-align: center;
  position: relative;
}
.quote-inner {
  max-width: 720px;
  margin: 0 auto;
}
.quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 8px;
}
.quote-band blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  letter-spacing: -0.02em;
}
.quote-band .intro-meta {
  margin: 18px 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.content {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 0 80px;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow.light { color: var(--gold); }

.block {
  padding: clamp(48px, 7vw, 72px) clamp(20px, 4vw, 28px);
  border-bottom: 0;
  position: relative;
}
.block-tint {
  background: linear-gradient(180deg, #efe8de 0%, #f6f1ea 100%);
  border-radius: 0;
}
.block h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--espresso);
  line-height: 1.12;
}
.block h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--espresso);
}
.prose p, .block > p, .block li, .geo-panel p { color: #4a4038; font-size: 1.04rem; }
.prose p { margin: 0 0 16px; }
.prose-wide { max-width: 62ch; }
.lead { margin: 0 0 22px; color: var(--muted); font-weight: 500; max-width: 48ch; }
.note {
  margin-top: 22px;
  padding: 14px 16px;
  font-size: 0.92rem;
  color: var(--muted);
  background: rgba(28, 20, 16, 0.04);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
}

.how-cards {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  counter-reset: none;
}
.how-cards li {
  background: #fff;
  border: 1px solid rgba(28, 20, 16, 0.08);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 12px 32px rgba(28, 20, 16, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.how-cards li:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(28, 20, 16, 0.08);
}
.how-cards .num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.how-cards strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
  color: var(--espresso);
}
.how-cards p { margin: 0; font-size: 0.92rem; color: var(--muted); line-height: 1.5; }

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}
.room {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 16px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(28, 20, 16, 0.08);
  border-radius: 16px;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
  overflow: hidden;
}
.room::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.room:hover {
  border-color: rgba(198, 164, 108, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(28, 20, 16, 0.07);
  color: inherit;
}
.room:hover::before { opacity: 1; }
.room strong {
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: var(--espresso);
}
.room span { font-size: 0.84rem; color: var(--muted); font-weight: 500; }

.geo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 8px;
}
.geo-panel {
  background: #fff;
  border: 1px solid rgba(28, 20, 16, 0.08);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 10px 28px rgba(28, 20, 16, 0.03);
}
.geo-panel h3 { margin-top: 0; }

.chip-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip-list li {
  padding: 8px 13px;
  background: var(--paper);
  border: 1px solid rgba(28, 20, 16, 0.08);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 650;
  color: #4a4038;
}

.split {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}
.callout {
  background: var(--espresso);
  color: #f3e9dc;
  border-radius: 22px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(28, 20, 16, 0.18);
}
.callout strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--gold-soft);
  margin-bottom: 10px;
}
.callout p { margin: 0 0 16px; color: rgba(255, 255, 255, 0.82); font-size: 0.98rem; }
.callout-link {
  color: var(--gold-soft) !important;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.callout-link:hover { color: #fff !important; }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 8px;
  background: #fff;
  border: 1px solid rgba(28, 20, 16, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(28, 20, 16, 0.04);
}
.feat-grid > div {
  padding: 22px 22px 24px;
  border-top: 0;
  border-bottom: 1px solid rgba(28, 20, 16, 0.06);
  border-right: 1px solid rgba(28, 20, 16, 0.06);
  position: relative;
}
.feat-grid > div:nth-child(2n) { border-right: 0; }
.feat-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
.feat-grid > div::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 14px;
}
.feat-grid h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}
.feat-grid p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.faq-panel {
  background: #fff;
  border: 1px solid rgba(28, 20, 16, 0.08);
  border-radius: 20px;
  padding: 8px 22px;
  box-shadow: 0 12px 36px rgba(28, 20, 16, 0.04);
  margin-top: 8px;
}
details {
  border-bottom: 1px solid rgba(28, 20, 16, 0.08);
  padding: 14px 0;
}
.faq-panel details:last-child { border-bottom: 0; }
details summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--espresso);
  list-style: none;
  font-size: 1.02rem;
}
details summary::-webkit-details-marker { display: none; }
details summary::before {
  content: "+";
  display: inline-block;
  width: 1.25em;
  color: var(--gold);
  font-weight: 800;
  font-size: 1.1rem;
}
details[open] summary::before { content: "–"; }
details p { margin: 10px 0 4px 1.25em; font-size: 0.96rem; color: #4a4038; }

.rules {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.rules li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 0;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(28, 20, 16, 0.08);
  border-radius: 14px;
  font-size: 0.98rem;
  color: #4a4038;
}
.rules li span {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1.4;
}

.finale {
  margin: 28px clamp(20px, 4vw, 28px) 0;
  text-align: center;
  padding: clamp(48px, 8vw, 72px) 24px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(198, 164, 108, 0.22), transparent 58%),
    var(--espresso);
  border: 0;
  color: #fff;
  box-shadow: 0 24px 60px rgba(28, 20, 16, 0.2);
}
.finale h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  color: #fff;
}
.finale p { margin: 0 0 22px; color: rgba(255, 255, 255, 0.72); }
.btn-finale {
  display: inline-flex;
  padding: 14px 30px;
  background: var(--gold);
  color: var(--espresso) !important;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  letter-spacing: 0.03em;
}
.btn-finale:hover { background: var(--gold-soft); }

.site-foot {
  background: var(--espresso);
  color: rgba(255, 255, 255, 0.78);
  padding: 42px 20px 28px;
}
.foot-grid {
  max-width: 880px;
  margin: 0 auto 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 22px;
}
.foot-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 6px;
}
.site-foot a { color: var(--gold-soft); text-decoration: none; font-weight: 700; }
.site-foot nav a {
  display: inline-block;
  margin: 0 12px 8px 0;
  color: #fff;
}
.site-foot nav a:hover { color: var(--gold-soft); }
.copy {
  max-width: 880px;
  margin: 0 auto;
  font-size: 0.8rem;
  opacity: 0.65;
}

@media (max-width: 900px) {
  .gate-portraits {
    right: 3%;
    bottom: 11%;
    width: min(190px, 34vw);
    height: min(250px, 38vh);
  }
  .fc { opacity: 0.55; }
  .topnav { display: none; }
  .how-cards,
  .room-grid,
  .feat-grid,
  .split,
  .geo-grid { grid-template-columns: 1fr; }
  .feat-grid > div {
    border-right: 0 !important;
  }
  .feat-grid > div:nth-last-child(1) { border-bottom: 0; }
  .feat-grid > div:nth-last-child(2) { border-bottom: 1px solid rgba(28, 20, 16, 0.06); }
}
@media (max-width: 640px) {
  .gate-portraits { display: none; }
  .fc { display: none; }
}
@media (max-width: 520px) {
  .gate { padding: 88px 12px 96px; }
  .gate-actions { grid-template-columns: 1fr; }
  .gate-brand { font-size: 2.6rem; }
}

/* —— Radyo sayfası —— */
.page-radio { background: var(--espresso); }
.page-radio .site-foot { margin-top: 0; }

.radio-stage {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 110px 20px 72px;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.radio-veil {
  background:
    radial-gradient(ellipse 55% 50% at 50% 42%, rgba(28, 20, 16, 0.35), rgba(28, 20, 16, 0.88) 72%),
    linear-gradient(180deg, rgba(28, 20, 16, 0.55), rgba(28, 20, 16, 0.92));
}
.radio-orb {
  position: absolute;
  width: min(520px, 88vw);
  height: min(520px, 88vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 164, 108, 0.22), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
  animation: radioOrb 10s ease-in-out infinite alternate;
}
@keyframes radioOrb {
  from { transform: scale(0.92); opacity: 0.55; }
  to { transform: scale(1.08); opacity: 0.9; }
}
.radio-center {
  position: relative;
  z-index: 2;
  max-width: 520px;
  animation: gateIn 0.9s ease both;
}
.radio-brand span { color: var(--gold-soft); }
.radio-title {
  margin: 6px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.radio-sub {
  margin: 0 auto 28px;
  max-width: 28em;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
}
.radio-player {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 0 auto 28px;
}
.radio-play {
  position: relative;
  width: 88px;
  height: 88px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--espresso);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}
.radio-play:hover { background: var(--gold-soft); transform: scale(1.04); }
.radio-play .ico-pause { display: none; }
.radio-play[aria-pressed="true"] .ico-play { display: none; }
.radio-play[aria-pressed="true"] .ico-pause { display: block; }
.radio-play-rings {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(198, 164, 108, 0.45);
  opacity: 0;
  pointer-events: none;
}
.radio-play[aria-pressed="true"] .radio-play-rings {
  animation: radioRing 2.2s ease-out infinite;
}
@keyframes radioRing {
  0% { transform: scale(0.92); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}
.radio-meta { text-align: left; min-width: 120px; }
.radio-status {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.radio-eq {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 28px;
}
.radio-eq i {
  display: block;
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  opacity: 0.35;
  transform-origin: bottom;
}
.radio-player.is-on .radio-eq i {
  opacity: 1;
  animation: eqBar 0.9s ease-in-out infinite alternate;
}
.radio-eq i:nth-child(1) { animation-delay: 0.05s; }
.radio-eq i:nth-child(2) { animation-delay: 0.18s; height: 14px; }
.radio-eq i:nth-child(3) { animation-delay: 0.02s; height: 20px; }
.radio-eq i:nth-child(4) { animation-delay: 0.28s; height: 12px; }
.radio-eq i:nth-child(5) { animation-delay: 0.12s; height: 22px; }
.radio-eq i:nth-child(6) { animation-delay: 0.22s; height: 10px; }
.radio-eq i:nth-child(7) { animation-delay: 0.08s; height: 16px; }
@keyframes eqBar {
  from { transform: scaleY(0.35); }
  to { transform: scaleY(1.15); }
}
.radio-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.radio-actions .btn-connect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-width: 180px;
}
.radio-actions .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-width: 140px;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.radio-actions .btn-ghost:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 520px) {
  .radio-player { flex-direction: column; gap: 16px; }
  .radio-meta { text-align: center; }
  .radio-eq { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .gate-bg img, .fc, .gate-center, .gate-shot,
  .radio-orb, .radio-play-rings, .radio-eq i { animation: none !important; }
}
