:root {
  --bg: #0a0c10;
  --bg2: #0f141d;
  --surface: rgba(18, 24, 36, 0.72);
  --surface2: rgba(20, 28, 41, 0.84);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.66);
  --muted2: rgba(255, 255, 255, 0.48);
  --border: rgba(255, 255, 255, 0.12);
  --accent: #ff7a1a;
  --accent2: #ff3b3b;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius2: 14px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(
      900px 520px at 15% -10%,
      rgba(255, 122, 26, 0.25),
      transparent 60%
    ),
    radial-gradient(700px 440px at 90% 10%, rgba(255, 59, 59, 0.12), transparent
          62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Noto Sans", "Helvetica Neue", sans-serif;
  line-height: 1.35;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
  z-index: 9999;
}

.skip:focus {
  transform: translateY(0);
  outline: 2px solid rgba(255, 122, 26, 0.65);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 7, 10, 0.62);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: auto;
  height: 52px;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.35));
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.96);
  transform: translateY(-1px);
}

.top-banner {
  padding: 26px 0 0;
}

.top-banner-frame {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.top-banner-img {
  width: 100%;
  height: min(460px, 46vw);
  object-fit: cover;
  display: block;
}

.hero {
  padding: 34px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.title {
  margin: 0;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.subtitle {
  margin: 12px 0 26px;
  color: var(--muted);
  font-size: 16px;
}

.player {
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(18, 24, 36, 0.76),
    rgba(12, 14, 20, 0.62)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.player-top {
  padding: 18px 18px 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

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

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--accent2);
  box-shadow: 0 0 0 6px rgba(255, 59, 59, 0.12);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.94);
    opacity: 0.9;
  }
  55% {
    transform: scale(1.16);
    opacity: 1;
  }
  100% {
    transform: scale(0.94);
    opacity: 0.9;
  }
}

.status-label {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.status-value {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.player-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 760;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, background 0.15s ease, border 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.075);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 2px solid rgba(255, 122, 26, 0.6);
  outline-offset: 2px;
}

.btn-primary {
  border-color: rgba(255, 122, 26, 0.4);
  background: linear-gradient(180deg, rgba(255, 122, 26, 0.92), rgba(255, 80, 0, 0.92));
  color: rgba(10, 12, 16, 0.98);
}

.btn-primary:hover {
  background: linear-gradient(180deg, rgba(255, 122, 26, 1), rgba(255, 80, 0, 0.98));
}

.btn-secondary {
  border-color: rgba(255, 122, 26, 0.32);
  background: rgba(255, 122, 26, 0.1);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-link {
  border-color: transparent;
  background: transparent;
  padding-inline: 0;
  text-decoration: underline;
  text-decoration-color: rgba(255, 122, 26, 0.45);
  text-underline-offset: 4px;
}

.player-bottom {
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.15);
}

.field {
  display: grid;
  gap: 8px;
}

.field-label {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.field-input {
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.field-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.field-input:focus {
  outline: 2px solid rgba(255, 122, 26, 0.55);
  outline-offset: 2px;
}

.hint {
  margin: 10px 0 0;
  color: var(--muted2);
  font-size: 13px;
}

.hero-cta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-tech {
  min-height: 380px;
  display: grid;
  place-items: center;
}

.hud {
  width: min(420px, 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(14, 18, 26, 0.7),
    rgba(10, 12, 18, 0.5)
  );
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.hud::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(
      520px 260px at 30% 10%,
      rgba(255, 122, 26, 0.28),
      transparent 65%
    ),
    radial-gradient(480px 240px at 90% 40%, rgba(255, 59, 59, 0.16), transparent
          58%);
  opacity: 0.9;
  filter: blur(18px);
  pointer-events: none;
}

.hud > * {
  position: relative;
  z-index: 1;
}

.hud-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.chip {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 8px 10px;
  border-radius: 999px;
}

.chip-accent {
  border-color: rgba(255, 122, 26, 0.28);
  background: rgba(255, 122, 26, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.hud-grid {
  height: 240px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 8px;
  padding: 14px 6px 4px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}

.bar {
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 122, 26, 0.95), rgba(255, 59, 59, 0.65));
  animation: eq 1.2s ease-in-out infinite;
}

.b1 {
  animation-delay: -0.1s;
}
.b2 {
  animation-delay: -0.35s;
}
.b3 {
  animation-delay: -0.22s;
}
.b4 {
  animation-delay: -0.5s;
}
.b5 {
  animation-delay: -0.28s;
}
.b6 {
  animation-delay: -0.62s;
}
.b7 {
  animation-delay: -0.2s;
}
.b8 {
  animation-delay: -0.55s;
}
.b9 {
  animation-delay: -0.34s;
}
.b10 {
  animation-delay: -0.18s;
}
.b11 {
  animation-delay: -0.72s;
}
.b12 {
  animation-delay: -0.4s;
}

@keyframes eq {
  0% {
    height: 18%;
    opacity: 0.7;
  }
  30% {
    height: 92%;
    opacity: 1;
  }
  65% {
    height: 36%;
    opacity: 0.85;
  }
  100% {
    height: 18%;
    opacity: 0.7;
  }
}

.hud-footer {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.line-accent {
  background: rgba(255, 122, 26, 0.1);
  border-color: rgba(255, 122, 26, 0.18);
}

.programming {
  position: relative;
  padding: 62px 0 72px;
  isolation: isolate;
}

.programming-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/img/bg/radio.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(2px) saturate(0.9) brightness(0.72);
  transform: scale(1.03);
  z-index: -2;
}

.programming::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 12, 16, 0.88),
    rgba(10, 12, 16, 0.66),
    rgba(10, 12, 16, 0.9)
  );
  z-index: -1;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 34px);
  letter-spacing: -0.02em;
}

.programming .section-title {
  color: var(--accent);
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

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

.card {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.34);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.18s ease, border 0.18s ease, background 0.18s ease;
  min-height: 100%;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 26, 0.22);
  background: rgba(0, 0, 0, 0.44);
}

.card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
}

.card-body {
  padding: 12px 12px 14px;
}

.card-title {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.card-meta {
  margin: 6px 0 0;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.card-desc {
  margin: 8px 0 0;
  color: var(--muted2);
  font-size: 13px;
}

.apps {
  padding: 58px 0;
}

.apps-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(18, 24, 36, 0.72),
    rgba(10, 12, 16, 0.5)
  );
  box-shadow: var(--shadow);
}

.apps-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer {
  padding: 46px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 5, 8, 0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 18px;
  align-items: start;
}

.footer-logo {
  width: auto;
  height: 46px;
}

.footer-title {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.footer-text {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.footer-link {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-decoration-color: rgba(255, 122, 26, 0.45);
  text-underline-offset: 4px;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-mini {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 650;
}

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

  .hero-tech {
    min-height: 320px;
  }

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

  .apps-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .apps-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 520px) {
  .header-inner {
    height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

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