:root {
  --bg: #080712;
  --bg-2: #11101f;
  --card: rgba(18, 17, 34, 0.76);
  --card-2: rgba(30, 24, 50, 0.86);
  --line: rgba(255, 255, 255, 0.12);
  --hot: #ff3ea5;
  --orange: #ff9b2f;
  --cyan: #31e7ff;
  --lime: #80ff38;
  --gator: #78ff34;
  --text: #fff8fb;
  --muted: #bcb6c9;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 62, 165, 0.24), transparent 24rem),
    radial-gradient(circle at 82% 16%, rgba(49, 231, 255, 0.18), transparent 28rem),
    linear-gradient(180deg, #05040a, var(--bg) 42%, #05040a);
}

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

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

.noise {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.cursor-light {
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  width: 360px;
  height: 360px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(128, 255, 56, 0.16), transparent 65%);
  border-radius: 999px;
}

.gator-watermark {
  position: fixed;
  top: 52%;
  left: 50%;
  z-index: -1;
  pointer-events: none;
  width: min(66vw, 860px);
  opacity: 0.1;
  transform: translate(-50%, -50%) rotate(-7deg);
  mix-blend-mode: screen;
  animation: gatorGlow 5.5s ease-in-out infinite alternate;
}

.gator-watermark img {
  width: 100%;
  filter: saturate(1.22) drop-shadow(0 0 42px rgba(128, 255, 56, 0.42));
}

.header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(calc(100% - 36px), var(--max));
  padding: 12px 14px;
  background: rgba(8, 7, 18, 0.58);
  border: 1px solid var(--line);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: 200ms ease;
}

.header.is-scrolled {
  background: rgba(8, 7, 18, 0.9);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  display: grid;
  width: 64px;
  height: 52px;
  place-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 0 18px rgba(128, 255, 56, 0.45));
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 19px;
  font-weight: 950;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav a {
  padding: 12px 14px;
  color: #eee6f4;
  font-size: 13px;
  font-weight: 800;
  border-radius: 14px;
  transition: 160ms ease;
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-weight: 900;
  border-radius: 16px;
  transition: 180ms ease;
}

.header-cta,
.button.primary {
  color: #130716;
  background: linear-gradient(135deg, var(--gator), var(--cyan));
  box-shadow: 0 14px 40px rgba(128, 255, 56, 0.24);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 150px 24px 76px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 7, 18, 0.98), rgba(8, 7, 18, 0.76) 42%, rgba(8, 7, 18, 0.26)),
    linear-gradient(0deg, rgba(8, 7, 18, 0.98), transparent 40%);
}

.wave-lines {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 70% 42%, rgba(128, 255, 56, 0.2), transparent 20rem),
    repeating-linear-gradient(110deg, transparent 0 34px, rgba(49, 231, 255, 0.08) 35px 37px, transparent 38px 74px);
  animation: waveMove 8s ease-in-out infinite alternate;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(300px, 380px);
  gap: 58px;
  align-items: end;
  max-width: var(--max);
  min-height: calc(100vh - 226px);
  margin: 0 auto;
}

.kicker {
  margin: 0 0 14px;
  color: var(--gator);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
}

.hero-copy p:not(.kicker),
.section-copy p,
.contact-copy p,
.section-head p,
.schedule p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-copy p:not(.kicker) {
  max-width: 640px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.player-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background: linear-gradient(180deg, rgba(30, 24, 50, 0.88), rgba(12, 10, 24, 0.78));
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
}

.player-card.is-playing {
  border-color: rgba(128, 255, 56, 0.48);
  box-shadow:
    0 0 0 1px rgba(128, 255, 56, 0.18),
    0 0 70px rgba(128, 255, 56, 0.16),
    0 26px 90px rgba(0, 0, 0, 0.42);
}

.player-card::before {
  position: absolute;
  inset: -40%;
  content: "";
  background: conic-gradient(from 40deg, transparent, rgba(255, 62, 165, 0.25), rgba(49, 231, 255, 0.18), transparent 34%);
  animation: rotate 8s linear infinite;
}

.player-card > * {
  position: relative;
}

.hero-logo {
  margin: -10px auto 18px;
  width: min(100%, 330px);
  filter: drop-shadow(0 0 28px rgba(128, 255, 56, 0.32));
}

.hero-logo img {
  width: 100%;
  object-fit: contain;
}

.player-top {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: #ff365f;
  border-radius: 999px;
  box-shadow: 0 0 18px #ff365f;
  animation: pulse 1.4s ease-in-out infinite;
}

.disc {
  position: relative;
  display: grid;
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  place-items: center;
  background:
    radial-gradient(circle, #0a0812 0 18%, transparent 19%),
    repeating-radial-gradient(circle, rgba(255,255,255,0.12) 0 2px, transparent 3px 15px),
    conic-gradient(var(--hot), var(--orange), var(--cyan), var(--hot));
  border-radius: 999px;
  box-shadow: 0 0 40px rgba(255, 62, 165, 0.32);
  animation: spin 9s linear infinite;
}

.disc img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.34);
  border: 3px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.track {
  text-align: center;
}

.track small,
.track span {
  display: block;
  color: var(--muted);
}

.track strong {
  display: block;
  margin: 8px 0;
  font-size: 24px;
}

.play-button {
  display: flex;
  width: 100%;
  min-height: 58px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  color: #100714;
  font: inherit;
  font-weight: 950;
  background: linear-gradient(135deg, var(--gator), var(--cyan));
  border: 0;
  border-radius: 18px;
  cursor: pointer;
}

.play-button.is-playing {
  background: linear-gradient(135deg, var(--hot), var(--orange));
}

.share-button {
  width: 100%;
  min-height: 44px;
  margin-top: 10px;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
}

.radio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.radio-stats div {
  min-width: 0;
  padding: 12px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.radio-stats b,
.radio-stats span {
  display: block;
}

.radio-stats b {
  overflow: hidden;
  color: var(--gator);
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.radio-stats span {
  color: var(--muted);
  font-size: 11px;
}

.equalizer {
  display: flex;
  gap: 6px;
  align-items: end;
  height: 54px;
  margin-top: 22px;
}

.equalizer i {
  flex: 1;
  background: linear-gradient(180deg, var(--hot), var(--cyan));
  border-radius: 999px 999px 4px 4px;
  transform: scaleY(0.25);
  transform-origin: bottom;
  transition: transform 90ms linear, opacity 180ms ease;
  opacity: 0.65;
}

.equalizer i:nth-child(1) { height: 35%; }
.equalizer i:nth-child(2) { height: 70%; }
.equalizer i:nth-child(3) { height: 48%; }
.equalizer i:nth-child(4) { height: 92%; }
.equalizer i:nth-child(5) { height: 62%; }
.equalizer i:nth-child(6) { height: 84%; }
.equalizer i:nth-child(7) { height: 44%; }
.equalizer i:nth-child(8) { height: 78%; }
.equalizer i:nth-child(9) { height: 55%; }

.ticker {
  display: flex;
  gap: 28px;
  overflow: hidden;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.055);
  border-block: 1px solid var(--line);
}

.ticker div {
  display: flex;
  flex: 0 0 auto;
  gap: 28px;
  min-width: 100%;
  animation: ticker 24s linear infinite;
}

.ticker span {
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.section,
.contact,
.footer {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.split,
.contact {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.section-image,
.playlist-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.section-image img,
.playlist-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  animation: imageFloat 5s ease-in-out infinite alternate;
}

.next-track {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  background: rgba(8, 7, 18, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  backdrop-filter: blur(14px);
}

.next-track small,
.next-track span {
  display: block;
  color: var(--muted);
}

.next-track strong {
  display: block;
  overflow: hidden;
  margin: 5px 0;
  font-size: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.feature-list span,
.track-list article,
.schedule article,
.contact-form {
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line);
  border-radius: 22px;
}

.feature-list span {
  padding: 16px;
  font-weight: 850;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.playlist-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.track-list {
  display: grid;
  gap: 14px;
}

.history-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
  color: var(--text);
  font-weight: 950;
}

.history-head small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.history-list {
  display: grid;
  gap: 12px;
  max-height: 580px;
  overflow: auto;
  padding-right: 4px;
}

.track-list article {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 6px 16px;
  align-content: center;
  align-items: center;
  padding: 22px;
}

.track-list img {
  grid-row: span 2;
  width: 58px;
  height: 58px;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 14px;
}

.track-list time {
  grid-row: span 2;
  color: var(--gator);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.track-list b {
  overflow: hidden;
  font-size: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-list small {
  color: var(--muted);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.schedule article {
  min-height: 230px;
  padding: 24px;
  transition: 200ms ease;
}

.schedule article:hover {
  border-color: rgba(128, 255, 56, 0.45);
  transform: translateY(-5px);
}

.schedule time {
  display: inline-flex;
  margin-bottom: 34px;
  padding: 9px 12px;
  color: #120714;
  font-weight: 950;
  background: linear-gradient(135deg, var(--gator), var(--cyan));
  border-radius: 999px;
}

.contact {
  padding: 80px 0 104px;
}

.messenger-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.messenger-row a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--text);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.messenger-row a:hover {
  color: #100714;
  background: linear-gradient(135deg, var(--gator), var(--cyan));
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.request-section {
  padding-top: 72px;
}

.ads-section {
  padding-top: 72px;
}

.ads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ad-card {
  min-height: 250px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(30, 24, 50, 0.88), rgba(12, 10, 24, 0.72)),
    radial-gradient(circle at 80% 20%, rgba(128, 255, 56, 0.16), transparent 12rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  transition: 200ms ease;
}

.ad-card:hover {
  border-color: rgba(128, 255, 56, 0.42);
  transform: translateY(-5px);
}

.ad-card span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  place-items: center;
  color: var(--gator);
  font-weight: 950;
  background: rgba(128, 255, 56, 0.08);
  border: 1px solid rgba(128, 255, 56, 0.22);
  border-radius: 14px;
}

.ad-card p {
  color: var(--muted);
  line-height: 1.7;
}

.request-panel {
  padding: 24px;
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.request-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 16px;
}

.request-search input {
  min-height: 54px;
  padding: 0 16px;
  color: var(--text);
  font: inherit;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
}

.request-search input:focus {
  border-color: var(--gator);
  box-shadow: 0 0 0 4px rgba(128, 255, 56, 0.14);
}

.request-status {
  min-height: 24px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.request-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.request-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.request-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 16px;
}

.request-card h3,
.request-card p {
  overflow: hidden;
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.request-card h3 {
  font-size: 16px;
}

.request-card p {
  color: var(--muted);
  font-size: 13px;
}

.request-card button {
  grid-column: 1 / -1;
  min-height: 42px;
  color: #120714;
  font: inherit;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gator), var(--cyan));
  border: 0;
  border-radius: 14px;
  cursor: pointer;
}

.request-card button:disabled {
  cursor: default;
  opacity: 0.62;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--text);
  font: inherit;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gator) 50%), linear-gradient(135deg, var(--gator) 50%, transparent 50%);
  background-position: calc(100% - 20px) 23px, calc(100% - 14px) 23px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.contact-form textarea {
  min-height: 120px;
  padding-top: 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gator);
  box-shadow: 0 0 0 4px rgba(128, 255, 56, 0.14);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status.is-ok {
  color: var(--gator);
}

.form-status.is-error {
  color: #ff7a9e;
}

.footer {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 28px 0 48px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowZoom {
  to { transform: scale(1.07); }
}

@keyframes waveMove {
  from { transform: translate3d(-1%, -1%, 0); opacity: 0.65; }
  to { transform: translate3d(1%, 1%, 0); opacity: 0.95; }
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  50% { transform: scale(1.3); opacity: 0.65; }
}

@keyframes bars {
  to { transform: scaleY(0.45); filter: brightness(1.25); }
}

@keyframes ticker {
  to { transform: translateX(calc(-100% - 28px)); }
}

@keyframes imageFloat {
  from { transform: scale(1.03) translateY(0); }
  to { transform: scale(1.07) translateY(-10px); }
}

@keyframes gatorGlow {
  from {
    opacity: 0.06;
    filter: blur(0) brightness(0.9);
    transform: translate(-50%, -50%) rotate(-7deg) scale(0.98);
  }
  to {
    opacity: 0.14;
    filter: blur(0.3px) brightness(1.18);
    transform: translate(-50%, -50%) rotate(-7deg) scale(1.03);
  }
}

@media (max-width: 980px) {
  .header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .header.is-open .nav,
  .header.is-open .header-cta {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .header.is-open .nav {
    flex-wrap: wrap;
  }

  .hero-inner,
  .split,
  .playlist-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ads-grid {
    grid-template-columns: 1fr;
  }

  .request-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .brand strong {
    font-size: 16px;
  }

  .hero {
    padding: 126px 16px 58px;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-actions,
  .feature-list,
  .request-search,
  .request-grid,
  .schedule-grid,
  .footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .section,
  .contact,
  .footer {
    width: min(calc(100% - 32px), var(--max));
  }

  .section {
    padding: 72px 0;
  }

  .disc {
    width: 150px;
    height: 150px;
  }

  .track-list article {
    grid-template-columns: 52px 1fr;
  }

  .track-list time {
    grid-column: 2;
    grid-row: auto;
  }

  .gator-watermark {
    top: 46%;
    width: 92vw;
    opacity: 0.08;
  }
}
