* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #020812;
  --panel: rgba(7, 17, 31, 0.74);
  --panel-soft: rgba(255, 255, 255, 0.045);
  --border: rgba(255, 255, 255, 0.095);
  --blue: #1976ff;
  --blue-2: #53a3ff;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  padding-bottom: 82px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(25, 118, 255, 0.13), transparent 34%),
    radial-gradient(circle at 90% 40%, rgba(25, 118, 255, 0.10), transparent 38%),
    linear-gradient(180deg, rgba(4, 10, 21, 0), #020812 76%);
  z-index: -1;
}

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

button,
input,
textarea {
  font-family: inherit;
}

.container {
  width: min(90%, 1200px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(3, 8, 17, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  overflow: hidden;
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand img {
  width: 188px;
  max-height: 68px;
  height: auto;
  display: block;
  object-fit: contain;
}

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

nav a {
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: 0.25s ease;
}

nav a:hover::after {
  width: 100%;
}


.weather-widget {
  height: 46px;
  min-width: 132px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(83, 163, 255, 0.42);
  border-radius: 999px;
  background: rgba(5, 14, 27, 0.58);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.weather-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--blue-2);
}

.weather-widget strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.05;
}

.weather-widget small {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.05;
}


.top-social {
  display: flex;
  gap: 12px;
}

.top-social a,
.round-social {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(83, 163, 255, 0.7);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.25s ease;
}

.top-social a:hover,
.round-social:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.menu-btn {
  display: none;
  order: 3;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.55rem;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.44), rgba(2, 8, 18, 0.08), rgba(2, 8, 18, 0.48)),
    linear-gradient(180deg, rgba(2, 8, 18, 0.06), rgba(2, 8, 18, 0.64) 95%),
    url("assets/hero-bg.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(2, 8, 18, 0.56), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 76px;
}

.hero h1 {
  font-size: clamp(3.1rem, 8vw, 7.2rem);
  line-height: 0.95;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.hero h2 {
  font-size: clamp(2.1rem, 5vw, 4.3rem);
  color: var(--blue);
  font-weight: 500;
  font-style: italic;
  margin: 8px 0 22px;
  text-shadow: 0 10px 35px rgba(25, 118, 255, 0.35);
}

.hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.94rem, 1.8vw, 1.2rem);
  letter-spacing: 0.18em;
  font-weight: 500;
}

.hero-play {
  margin: 34px auto 18px;
  border: 0;
  background: linear-gradient(135deg, #1976ff, #0055cc);
  color: #fff;
  padding: 17px 34px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 18px 60px rgba(25, 118, 255, 0.35);
  transition: 0.25s ease;
}

.hero-play span {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
}

.hero-play:hover {
  transform: translateY(-2px) scale(1.01);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.live-badge span,
.footer-live span,
.sticky-status span {
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 999px;
  background: #ff2c2c;
  box-shadow: 0 0 0 0 rgba(255, 44, 44, 0.8);
  animation: pulse 1.4s infinite;
}

.listen-note {
  margin-top: 8px;
  font-size: 0.78rem !important;
  letter-spacing: 0.15em !important;
  color: rgba(255, 255, 255, 0.68) !important;
}


.now {
  margin-top: -82px;
  position: relative;
  z-index: 4;
  min-height: 168px;
  background: rgba(5, 14, 27, 0.78);
  border: 1px solid rgba(83, 163, 255, 0.22);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 145px 1fr 0.7fr;
  gap: 28px;
  align-items: center;
}

.now-cover-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.now-cover {
  width: 128px;
  height: 128px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}

.now-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.now-content {
  min-width: 0;
}

.now-content h3 {
  font-size: 1.42rem;
  margin: 8px 0 8px;
  line-height: 1.2;
}

.now-content p {
  color: var(--muted);
  line-height: 1.45;
}

.now-content #songArtist {
  margin-top: 2px;
}


.now small,
.about small,
.section-title small {
  color: var(--blue-2);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.now h3 {
  font-size: 1.45rem;
  margin: 6px 0;
}

.now p,
.feature-card p,
.about p,
.listen-card p,
.footer p,
.footer a {
  color: var(--muted);
  line-height: 1.65;
}

.sticky-wave {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.sticky-wave span {
  width: 4px;
  min-height: 8px;
  border-radius: 20px;
  background: var(--blue);
  transition: height 0.14s ease;
}

.stream-info {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.stream-info strong {
  font-size: 1.1rem;
}

.stream-info a {
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
  border: 1px solid rgba(83, 163, 255, 0.65);
  border-radius: 12px;
  padding: 10px 16px;
}


.history {
  margin-top: 22px;
  position: relative;
  z-index: 3;
  background: rgba(5, 14, 27, 0.66);
  border: 1px solid rgba(83, 163, 255, 0.18);
  border-radius: 22px;
  padding: 24px 28px 26px;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.history-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.history-header small {
  color: var(--blue-2);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.history-header h2 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  margin-top: 6px;
}

.history-header p {
  color: var(--muted);
  font-size: 0.9rem;
}

.history-header p i {
  color: var(--blue-2);
  margin-right: 7px;
}

.song-history {
  list-style: none;
  display: grid;
  gap: 10px;
  counter-reset: songs;
}

.song-history li {
  counter-increment: songs;
  min-height: 74px;
  display: grid;
  grid-template-columns: 44px 64px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.038);
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.song-history li.no-art {
  grid-template-columns: 44px 1fr;
}

.song-history li.empty,
.song-history li.history-loading {
  grid-template-columns: 44px 1fr;
  min-height: 54px;
}

.song-history li.empty::before,
.song-history li.history-loading::before {
  content: "—";
}

.song-art {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.song-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.song-art i {
  color: rgba(255,255,255,0.34);
  font-size: 1.1rem;
}

.song-meta {
  min-width: 0;
}

.song-title {
  display: block;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  line-height: 1.35;
  word-break: break-word;
}

.song-subtitle {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
  margin-top: 4px;
}

.song-history li::before {
  content: counter(songs, decimal-leading-zero);
  color: var(--blue-2);
  font-weight: 800;
  letter-spacing: 0.07em;
}

.song-history li.empty::before {
  content: "—";
}


.features {
  padding: 72px 0 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card,
.listen-card {
  background: var(--panel-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px 26px;
  min-height: 160px;
  text-align: center;
  transition: 0.25s ease;
}

.feature-card:hover,
.listen-card:hover {
  transform: translateY(-4px);
  border-color: rgba(83, 163, 255, 0.42);
  background: rgba(255, 255, 255, 0.065);
}

.feature-card i,
.listen-card i {
  font-size: 2.55rem;
  color: var(--blue);
  margin-bottom: 18px;
}

.feature-card h3,
.listen-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.about {
  padding: 54px 0 74px;
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 70px;
  align-items: center;
}

.about h2,
.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 10px 0 24px;
}

.about p {
  margin-bottom: 17px;
  max-width: 620px;
}

.secondary-play,
.card-play,
.contact-form button {
  border: 0;
  background: linear-gradient(135deg, #1976ff, #0055cc);
  color: #fff;
  border-radius: 12px;
  padding: 14px 22px;
  margin-top: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.about-image {
  min-height: 360px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.38)),
    url("assets/hero-bg.jpg") center / cover no-repeat;
  border: 1px solid rgba(83, 163, 255, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.listen {
  padding: 18px 0 76px;
}

.section-title {
  text-align: center;
  margin-bottom: 34px;
}

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

.listen-card {
  display: block;
}

.listen-card span {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue-2);
  font-weight: 800;
  font-size: 0.9rem;
}

.contact-section {
  padding: 0 0 84px;
}

.contact-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--panel-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.085);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 12px;
  padding: 15px 16px;
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  margin-top: 18px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(83, 163, 255, 0.65);
}

.contact-form button {
  width: 100%;
  margin-top: 18px;
}

.footer {
  background: rgba(1, 5, 11, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1.1fr 0.55fr;
  gap: 44px;
}

.footer-logo {
  width: 176px;
  display: block;
  margin-bottom: 18px;
}

.footer h4 {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer a {
  display: block;
  margin-bottom: 10px;
}

.footer a i {
  color: var(--blue-2);
  margin-right: 8px;
}

.footer-live {
  margin-top: 14px;
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.85rem;
  margin-top: 44px;
}

.sticky-player {
  position: fixed;
  z-index: 1001;
  left: 0;
  right: 0;
  bottom: 0;
  height: 82px;
  background: rgba(3, 9, 18, 0.92);
  border-top: 1px solid rgba(83, 163, 255, 0.17);
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 0.35fr 0.7fr;
  gap: 24px;
  align-items: center;
  padding: 12px 28px;
}

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

.sticky-brand img {
  width: 104px;
  flex: 0 0 auto;
}

.sticky-brand button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  flex: 0 0 auto;
}

.sticky-brand p {
  color: var(--muted);
  font-size: 0.86rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 230px;
}

.sticky-status {
  color: #fff;
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1.2;
}

.sticky-status small {
  color: var(--muted);
}

.volume-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.volume-wrap input {
  width: 100%;
  accent-color: var(--blue);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 44, 44, 0.75);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(255, 44, 44, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 44, 44, 0);
  }
}


.song-history li {
  transition: 0.22s ease;
}

.song-history li:hover {
  transform: translateY(-2px);
  border-color: rgba(83, 163, 255, 0.34);
  background: rgba(255, 255, 255, 0.055);
}

.song-row {
  display: contents;
  color: inherit;
  text-decoration: none;
}

.song-art.placeholder {
  background:
    radial-gradient(circle at 45% 35%, rgba(25,118,255,0.35), transparent 58%),
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(25,118,255,0.13));
}

.song-art.placeholder img {
  opacity: 0.9;
}

.song-youtube {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(83, 163, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.song-youtube i {
  color: #ff3b3b;
}

.song-history li.no-art .song-row {
  display: grid;
  grid-column: 2;
}

.song-history li.empty,
.song-history li.history-loading {
  pointer-events: none;
}

@media (max-width: 980px) {
  nav {
    position: fixed;
    top: 84px;
    right: 0;
    width: min(78vw, 330px);
    min-height: calc(100vh - 84px);
    background: rgba(3, 8, 17, 0.96);
    flex-direction: column;
    align-items: flex-start;
    padding: 34px;
    transform: translateX(100%);
    pointer-events: none;
    transition: 0.25s ease;
  }

  nav.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .menu-btn {
    display: block;
  }

  .top-social {
    display: none;
  }

  .weather-widget {
    order: 2;
    margin-left: auto;
  }

  .menu-btn {
    order: 3;
  }

  .now {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .now-cover-wrap {
    justify-content: center;
  }

  .stream-info {
    justify-items: center;
  }

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

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

  .sticky-player {
    grid-template-columns: 1fr auto;
    height: auto;
    padding: 10px 16px;
  }

  .sticky-wave,
  .sticky-status,
  .volume-wrap {
    display: none;
  }
}

@media (max-width: 640px) {
  .history {
    padding: 22px;
  }

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

  .song-history li {
    grid-template-columns: 38px 54px 1fr;
    padding: 12px;
    gap: 12px;
    min-height: 66px;
  }

  .song-history li.no-art,
  .song-history li.empty,
  .song-history li.history-loading {
    grid-template-columns: 38px 1fr;
  }

  .song-art {
    width: 54px;
    height: 54px;
  }

  .song-subtitle {
    font-size: 0.8rem;
  }


  body {
    padding-bottom: 72px;
  }

  .nav {
    height: 74px;
  }

  .brand img {
    width: 148px;
    max-height: 52px;
  }

  .weather-widget {
    min-width: auto;
    height: 40px;
    padding: 7px 10px;
  }

  .weather-widget small {
    display: none;
  }

  nav {
    top: 74px;
    min-height: calc(100vh - 74px);
  }

  .hero-content {
    padding-top: 84px;
  }

  .hero h1 {
    letter-spacing: 0.04em;
  }

  .hero p {
    letter-spacing: 0.08em;
  }

  .now {
    margin-top: -48px;
    padding: 22px;
  }

  .now-cover {
    width: 104px;
    height: 104px;
  }

  .features,
  .listen-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-bottom: 90px;
  }

  .sticky-brand img {
    width: 78px;
  }

  .sticky-brand p {
    max-width: 150px;
  }
}


.song-history li.no-link {
  cursor: default;
}

.song-history li.no-link:hover {
  transform: none;
}


.footer .round-social {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}


/* Security / anti-spam honeypot field */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Extra responsive polish */
img, svg, video {
  max-width: 100%;
}

@media (max-width: 1120px) {
  nav {
    gap: 24px;
  }

  nav a {
    font-size: 0.8rem;
  }

  .brand img {
    width: 172px;
    max-height: 62px;
  }

  .weather-widget {
    min-width: 112px;
    padding-inline: 10px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(92%, 100% - 24px);
  }

  .hero-play {
    padding: 14px 20px;
    font-size: 0.88rem;
  }

  .hero-play span {
    width: 38px;
    height: 38px;
  }

  .now {
    padding: 20px 16px;
  }

  .now-cover {
    width: 92px;
    height: 92px;
  }

  .contact-form {
    padding: 20px 16px;
  }

  .footer-grid {
    gap: 28px;
  }

  .sticky-brand strong {
    font-size: 0.92rem;
  }
}


/* Mobile/tablet menu fix */
.menu-btn {
  cursor: pointer;
  z-index: 1003;
}

@media (max-width: 980px) {
  #mainNav.open,
  body.menu-open #mainNav {
    transform: translateX(0);
    pointer-events: auto;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* Contact form anti-spam checkbox */
.robot-check {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  color: rgba(255,255,255,0.86);
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

.robot-check input {
  width: 20px;
  height: 20px;
  accent-color: var(--blue);
}

/* Message modal popup */
.message-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.22s ease;
}

.message-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.message-modal-card {
  width: min(92vw, 430px);
  position: relative;
  padding: 34px 30px 30px;
  border-radius: 24px;
  text-align: center;
  background: rgba(5, 14, 27, 0.94);
  border: 1px solid rgba(83, 163, 255, 0.28);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.message-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: white;
  cursor: pointer;
}

.message-modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(25, 118, 255, 0.17);
  color: var(--blue-2);
  font-size: 1.55rem;
}

.message-modal-icon.error {
  background: rgba(255, 72, 72, 0.14);
  color: #ff6363;
}

.message-modal-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.message-modal-card p {
  color: var(--muted);
  line-height: 1.6;
}

.contact-form button[disabled] {
  opacity: 0.68;
  cursor: wait;
}


/* FINAL FIX: mobile/tablet menu must not be clipped by header */
.site-header,
.nav {
  overflow: visible !important;
}

.menu-btn {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 5001;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.menu-btn i {
  pointer-events: none;
}

@media (max-width: 980px) {
  .menu-btn {
    display: inline-flex !important;
  }

  #mainNav {
    position: fixed !important;
    top: 88px !important;
    right: 0 !important;
    width: min(82vw, 340px) !important;
    height: calc(100vh - 88px) !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 22px !important;
    padding: 34px !important;
    background: rgba(3, 8, 17, 0.98) !important;
    border-left: 1px solid rgba(83, 163, 255, 0.18) !important;
    box-shadow: -22px 0 70px rgba(0,0,0,0.45) !important;
    transform: translateX(110%) !important;
    transition: transform 0.25s ease !important;
    pointer-events: none !important;
    z-index: 5000 !important;
  }

  #mainNav.open,
  body.menu-open #mainNav {
    transform: translateX(0) !important;
    pointer-events: auto !important;
  }

  #mainNav a {
    width: 100%;
    padding: 12px 0;
    font-size: 0.95rem;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  #mainNav {
    top: 74px !important;
    height: calc(100vh - 74px) !important;
    width: min(86vw, 330px) !important;
  }

  .menu-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
}

/* FINAL FIX: checkbox and text always in one line */
.robot-check {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  width: max-content !important;
  max-width: 100% !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

.robot-check input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  flex: 0 0 20px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-block !important;
  accent-color: var(--blue);
}

.robot-check span {
  display: inline-block !important;
  white-space: nowrap !important;
}


/* CSS-ONLY MOBILE MENU FIX */
.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

.site-header,
.nav {
  overflow: visible !important;
}

.menu-btn {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 7001 !important;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.menu-btn i {
  pointer-events: none;
}

@media (max-width: 980px) {
  .menu-btn {
    display: inline-flex !important;
    order: 3;
  }

  #mainNav {
    position: fixed !important;
    top: 88px !important;
    right: 0 !important;
    width: min(84vw, 350px) !important;
    height: calc(100vh - 88px) !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 22px !important;
    padding: 34px !important;
    background: rgba(3, 8, 17, 0.985) !important;
    border-left: 1px solid rgba(83, 163, 255, 0.22) !important;
    box-shadow: -24px 0 80px rgba(0,0,0,0.55) !important;
    transform: translateX(110%) !important;
    transition: transform 0.25s ease !important;
    pointer-events: none !important;
    z-index: 7000 !important;
  }

  .nav-toggle:checked ~ #mainNav {
    transform: translateX(0) !important;
    pointer-events: auto !important;
  }

  #mainNav.open,
  body.menu-open #mainNav {
    transform: translateX(0) !important;
    pointer-events: auto !important;
  }

  .nav-toggle:checked + .menu-btn i::before {
    content: "\\f00d";
  }

  #mainNav a {
    width: 100%;
    padding: 13px 0;
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  #mainNav {
    top: 74px !important;
    height: calc(100vh - 74px) !important;
    width: min(88vw, 340px) !important;
  }

  .menu-btn {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
  }
}

/* ROBOT CHECKBOX FINAL FIX */
.contact-form .robot-check {
  margin-top: 18px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  width: auto !important;
  max-width: 100% !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

.contact-form .robot-check input[type="checkbox"] {
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
  flex: 0 0 20px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-block !important;
  accent-color: var(--blue);
}

.contact-form .robot-check span {
  display: inline-block !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}


/* NATIVE DETAILS MOBILE MENU - final reliable solution */
.nav-toggle,
.menu-btn {
  display: none !important;
}

.mobile-menu {
  display: none;
  order: 3;
  position: relative;
  z-index: 9000;
}

.mobile-menu summary {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border: 0;
  border-radius: 14px;
  list-style: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.75rem;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary::marker {
  content: "";
}

.mobile-menu[open] summary i::before {
  content: "\f00d";
}

.mobile-menu-panel {
  position: fixed;
  top: 88px;
  right: 0;
  width: min(84vw, 360px);
  height: calc(100vh - 88px);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(3, 8, 17, 0.985);
  border-left: 1px solid rgba(83, 163, 255, 0.24);
  box-shadow: -26px 0 90px rgba(0, 0, 0, 0.62);
  z-index: 8999;
  overflow-y: auto;
}

.mobile-menu-panel a {
  width: 100%;
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 15px 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-menu-panel a:hover {
  color: var(--blue-2);
}

.site-header,
.nav {
  overflow: visible !important;
}

@media (max-width: 980px) {
  #mainNav {
    display: none !important;
  }

  .mobile-menu {
    display: block !important;
    margin-left: 0;
  }

  .top-social {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .mobile-menu summary {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .mobile-menu-panel {
    top: 74px;
    width: min(88vw, 340px);
    height: calc(100vh - 74px);
    padding: 30px;
  }
}

/* Robot checkbox one-line final */
.contact-form .robot-check {
  margin-top: 18px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  width: auto !important;
  max-width: 100% !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

.contact-form .robot-check input[type="checkbox"] {
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
  flex: 0 0 20px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-block !important;
  accent-color: var(--blue);
}

.contact-form .robot-check span {
  display: inline-block !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}


/* PWA install module */
.listen-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pwa-card .app-logo-icon {
  width: 70px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(83, 163, 255, 0.24);
  background: rgba(25, 118, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.pwa-card .app-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.install-app-btn {
  margin-top: 14px;
  border: 0;
  background: transparent;
  color: var(--blue-2);
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.03em;
  padding: 0;
}

.install-app-btn:hover {
  color: #ffffff;
}

@media (max-width: 1180px) {
  .listen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .pwa-card .app-logo-icon {
    width: 78px;
    height: 58px;
  }
}


/* LOCAL ICON FALLBACK - fixes invisible icons when Font Awesome/CDN cache fails on mobile/PWA */
.fa-solid,
.fa-regular,
.fa-brands,
[class^="fa-"],
[class*=" fa-"] {
  font-family: Arial, Helvetica, sans-serif !important;
  font-style: normal !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: currentColor !important;
  text-rendering: auto !important;
}

.fa-play::before {
  content: "" !important;
  display: block !important;
  width: 0 !important;
  height: 0 !important;
  border-top: 0.36em solid transparent !important;
  border-bottom: 0.36em solid transparent !important;
  border-left: 0.58em solid currentColor !important;
  margin-left: 0.08em !important;
}

.fa-pause::before {
  content: "" !important;
  display: block !important;
  width: 0.62em !important;
  height: 0.82em !important;
  background: linear-gradient(to right, currentColor 0 34%, transparent 34% 66%, currentColor 66% 100%) !important;
}

.fa-bars::before { content: "☰" !important; font-size: 1.32em !important; line-height: 1 !important; }
.fa-xmark::before { content: "×" !important; font-size: 1.45em !important; line-height: 1 !important; }
.fa-cloud::before { content: "☁" !important; }
.fa-sun::before { content: "☀" !important; }
.fa-moon::before { content: "☾" !important; }
.fa-cloud-sun::before { content: "⛅" !important; }
.fa-cloud-moon::before { content: "☁" !important; }
.fa-smog::before { content: "≋" !important; }
.fa-cloud-rain::before { content: "🌧" !important; font-weight: 400 !important; }
.fa-cloud-showers-heavy::before { content: "🌧" !important; font-weight: 400 !important; }
.fa-snowflake::before { content: "❄" !important; }
.fa-cloud-bolt::before { content: "⛈" !important; font-weight: 400 !important; }
.fa-facebook-f::before { content: "f" !important; font-family: Arial, Helvetica, sans-serif !important; font-weight: 900 !important; }
.fa-envelope::before { content: "✉" !important; }
.fa-desktop::before { content: "▭" !important; font-size: 1.15em !important; }
.fa-google-play::before { content: "▶" !important; }
.fa-tower-broadcast::before { content: "◉" !important; }
.fa-users::before { content: "👥" !important; font-weight: 400 !important; }
.fa-music::before { content: "♪" !important; font-size: 1.2em !important; }
.fa-headphones::before { content: "🎧" !important; font-weight: 400 !important; }
.fa-volume-high::before { content: "🔊" !important; font-weight: 400 !important; }
.fa-rotate::before { content: "↻" !important; }
.fa-check::before { content: "✓" !important; }
.fa-triangle-exclamation::before { content: "⚠" !important; }

/* Keep footer Facebook circle centered */
.footer .round-social,
.top-social a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
