* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background: #111111;
  color: #fff;
  user-select: none;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

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

.radio-container {
  display: flex;
  flex-direction: column;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 5px;
}

.radio-navbar {
  width: 100%;
  padding: 15px;
  display: flex;
  justify-content: center;
  background-color: #0a0a0a;
  border-bottom: 1px solid #1f1f1f;
}

.mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #222;
  background: #0a0a0a;
}

.radio-layout {
  display: grid;
  min-height: calc(100vh - 80px);
  grid-template-columns:
    minmax(180px, 18vw)
    1fr
    minmax(200px, 20vw);
}

.logo-box {
  width: 40px;
  height: 40px;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.radio-main {
  height: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 20px 0;
  gap: 18px;
}

.radio-top-div {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.radio-desc {
  width: fit-content;
  font-size: 14px;
  color: #d1d1d1;
  line-height: 1.6;
  padding: 10px 0;
}

@media (max-width: 1200px) {
  .radio-layout {
    grid-template-columns:
      minmax(160px, 22vw)
      1fr;
  }
}

@media (max-width: 900px) {
  .radio-layout {
    grid-template-columns: 1fr;
  }

  .mobile-header {
    display: flex;
  }
}
