/*------------------------------------------------------------------
[Table of contents]

1. General Styles & Layout
2. Header & Navigation
3. Components & UI Elements
4. Pages (Home, About, Blog, Contact, Stations)
5. Responsive Media Queries
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
1. General Styles & Layout
-------------------------------------------------------------------*/
.main-container {
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.header {
  position: relative;
  width: 100%;
  height: auto;
  padding-bottom: 0px;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.header .slide {
  position: absolute;
  top: 0px;
  left: -40px;
  width: calc(100% + 80px);
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-out;
  z-index: -1;
}

.header .slide.active {
  opacity: 1;
}

.header .listen-now {
  width: 224px;
  height: 60px;
  background-color: var(--primary-orange);
  border-radius: 100px;
  cursor: pointer;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.header .listen-now:hover {
  background-color: var(--primary-orange-hover);
  transform: scale(1.02);
}

.header .listen-now span {
  font-family: "Roboto Condensed", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 22px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.header .listen-now i {
  color: #ffffff;
  font-size: 18px;
}

.header .hero-container {
  display: flex;
  justify-content: flex-start;
  padding-top: 35px;
}

.header .hero-content {
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-left: 65px;
}

.header .hero-bottom-info {
  display: flex;
  flex-direction: column;
  gap: 0px;
  /* 774 - 675 = 99px, minus 70px subtitle height = 29px gap */
}

.header .hero-actions {
  display: flex;
  align-items: center;
  gap: 52px;
  /* 381 - (105 + 224) = 52px gap between button and browse text */
}

.header .browse-stations-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

.header .browse-stations-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto Condensed", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.4px;
  line-height: normal;
  white-space: nowrap;
}

.header .browse-arrow {
  font-size: 20px;
  color: #000000;
}

.header .radio-shkala-box {
  position: relative;
  width: 100%;
  height: 199px;
  background-color: var(--bg-main);
  border-radius: 25px;
  margin-top: 50px;
  border: 1px solid var(--border-grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
}

.close-radio-shkala {
  position: absolute;
  top: -8px;
  right: -11px;
  color: #666666;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s ease;
}

.close-radio-shkala:hover {
  color: var(--primary-orange);
}

.about-header {
  height: auto !important;
  min-height: auto !important;
  padding-bottom: 0px;
}

.about-header .radio-shkala-box {
  margin-top: 40px;
}

.about-live-stream-box {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}

.about-card {
  background-color: transparent;
  border: 1px solid #b0b0b0;
  border-radius: 20px;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 40px;
  align-items: center;
}

.about-header+.main-content {
  margin-top: 0 !important;
}

.contact-header {
  height: auto !important;
  min-height: auto !important;
  padding-bottom: 0px;
}

.contact-header .radio-shkala-box {
  margin-top: 40px;
}

.contact-header+.main-content {
  margin-top: 0 !important;
}

.about-img-col {
  height: 100%;
}

.about-main-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.about-features-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-orange);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-text h4 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-weight: 700;
}

.feature-text p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}

.about-mission-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mission-label {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  color: var(--primary-orange);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-mission-col h2 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 42px;
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.about-mission-col p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 18px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

.team-section {
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.team-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 0px;
  scrollbar-width: thin;
}

.team-card {
  border: 1px solid #b0b0b0;
  border-radius: 20px;
  overflow: hidden;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(24.22% - 26px);
  min-width: 240px;
}

.team-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
}

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

.team-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-info h3 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 5px 0;
}

.team-role {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-orange);
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.team-info p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.team-socials {
  display: flex;
  gap: 10px;
}

.team-socials a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #b0b0b0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-socials a:hover {
  background-color: var(--primary-orange);
  color: white;
  border-color: var(--primary-orange);
}

.header .rectangle {
  position: relative;
  width: clamp(80px, 15vw, 159px);
  height: clamp(80px, 15vw, 159px);
  object-fit: cover;
  border-radius: 12px;
  padding: 5px;
  border: 0.5px solid var(--border-grey);
  flex-shrink: 0;
}

.header .radio-play-btn {
  width: 92px;
  height: 92px;
  background-color: #f4f1ed;
  border-radius: 50%;
  border: 2px solid var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  margin: 10px;
}

.header .radio-play-btn:hover {
  background-color: #e5e0da;
  transform: scale(1.05);
}

.header .radio-play-btn i {
  font-size: 26px;
  color: #000;
  margin-left: 0px;
}



.header .line {
  position: absolute;
  top: 26px;
  left: 751px;
  width: 16px;
  height: 165px;
}

.header .arrow-left-from {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -30px 0 30px;
}

.header .arrow-left-from i {
  font-size: 32px;
  /* Adjust size as needed */
  color: #000;
  transition: color 0.2s ease;
}

.header .arrow-left-from:hover i {
  color: var(--primary-orange);
  cursor: pointer;
}

.header .arrow-right-from {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 10px 0 -50px;
}

.header .arrow-right-from i {
  font-size: 32px;
  /* Adjust size as needed */
  color: #000;
  transition: color 0.2s ease;
}

.header .arrow-right-from:hover i {
  color: var(--primary-orange);
  cursor: pointer;
}

.header .scale-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding-top: 10px;
}

.header .scale-container {
  position: relative;
  flex: 1;
  margin: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .img-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 140px;
  display: flex;
  z-index: 10;
}

.header .radio-scale-svg {
  width: 100%;
  height: auto;
}

.header .vector-4 {
  height: 100%;
}

.header .subtitle {
  display: flex;
  width: 240px;
}

.header .thousands-of {
  width: 240px;
  height: 70px;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: #4d4d4d;
  font-size: 23px;
  letter-spacing: 0;
  line-height: 35px;
}

.header .hero-title {
  position: relative;
  width: 316px;
  height: 444px;
}

.header .hero-title .title-word {
  position: absolute;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.header .hero-title .sound {
  top: 113px;
  left: -14px;
  font-family: "Signatra", Helvetica;
  font-weight: 400;
  color: var(--primary-orange);
  font-size: 144px;
}

.header .hero-title .wave {
  top: 321px;
  left: 1px;
  font-family: "Signatra", Helvetica;
  font-weight: 400;
  color: var(--accent-teal);
  font-size: 132px;
}

.header .hero-title .tagline {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Roboto Condensed", Helvetica;
  font-weight: 700;
  color: var(--primary-orange);
  font-size: 20px;
  letter-spacing: 0.8px;
  line-height: normal;
  white-space: nowrap;
}

.header .hero-title .your-1 {
  top: 14px;
  left: -1px;
  font-family: "Roboto Condensed", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: 100px;
}

.header .hero-title .your-2 {
  top: 211px;
  left: -1px;
  font-family: "Roboto Condensed", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: 100px;
}

.header .vertical-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.header .vertical-line .line-top {
  width: 2px;
  height: 250px;
  background-color: #000000;
}

.header .vertical-line .scroll-text {
  writing-mode: vertical-rl;
  font-family: "Roboto Condensed", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: 20px;
  letter-spacing: 2px;
}

.header .vertical-line .arrow-bottom {
  color: var(--primary-orange);
  font-size: 28px;
}

.header .listen-live-button {
  width: 230px;
  height: 60px;
  background-color: var(--primary-orange);
  border-radius: 100px;
  cursor: pointer;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0;
  transition: transform 0.2s ease, background-color 0.2s ease;
  font-family: "Roboto Condensed", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 22px;
  letter-spacing: 0;
  line-height: normal;
}

.header .listen-live-button:hover {
  background-color: var(--primary-orange-hover);
  transform: scale(1.02);
}

.header .listen-live-button i {
  font-size: 24px;
  color: #ffffff;
}

.header .listen-live-button.is-playing .fa-waveform-lines {
  display: none;
}

.header .listen-live-button.is-playing .css-waveform {
  display: flex !important;
}

.header .listen-live-button .css-waveform span {
  background-color: #ffffff;
}

.header .search-button {
  width: 62px;
  height: 62px;
  background-color: #f9f6f2;
  border-radius: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header .search {
  font-size: 25px;
  z-index: 2;
}

.header .mobile-menu-btn {
  display: none;
  font-size: 32px;
  color: var(--primary-orange);
  cursor: pointer;
  z-index: 15;
}

.header .top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0 20px 0;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header .right-actions {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header .top-menu {
  display: flex;
  gap: 68px;
  align-items: center;
  margin-left: auto;
  margin-right: 60px;
}

.header .top-menu .menu-item {
  font-family: "Roboto Condensed", Helvetica;
  font-weight: 500;
  color: #000000;
  font-size: 20px;
  letter-spacing: 0.4px;
  line-height: normal;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.header .top-menu .menu-item:hover {
  color: var(--primary-orange);
}

.header .top-menu .active {
  color: var(--primary-orange) !important;
}

.header .top-menu .active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -43px;
  height: 3px;
  width: calc(100% + 40px);
  background-color: var(--primary-orange);
}

.header .logo {
  position: relative;
  width: 313px;
  height: 70px;
}

.header .logo-subtitle {
  position: absolute;
  top: 40px;
  left: 0;
  width: 208px;
  font-family: "Roboto Condensed", Helvetica;
  font-weight: 300;
  color: #000000;
  font-size: 20.5px;
  letter-spacing: 8px;
  line-height: normal;
  white-space: nowrap;
}

.header .logo i {
  position: absolute;
  font-size: 49px;
  width: 29.65%;
  top: calc(50.00% - 25px);
  left: 63.35%;
  height: 49px;
}

.header .logo-title {
  top: 0;
  width: 312px;
  font-family: "BBH Bartle-Regular", Helvetica;
  color: var(--primary-orange);
  font-size: 40px;
  letter-spacing: -2.8px;
  position: absolute;
  left: 1px;
  font-weight: 400;
  line-height: normal;
}

.main-content {
  background-color: var(--bg-main);
  /* Matching global background */
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

/* Stations Section */
.stations-section {
  padding: 30px 0;
  /* Vertical padding only, horizontal handled by .main-container */
  max-width: 100%;
}

.search-section {
  padding: 30px 0 0 0;
  max-width: 100%;
}

/* Stations Search Form */
.stations-search-container {
  width: 100%;
  margin-bottom: 20px;
}

.stations-search-form {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #b0b0b0;
  border-radius: 50px;
  padding: 6px 6px 6px 30px;
  box-shadow: none;
}

.stations-search-form input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  color: #333;
  outline: none;
}

.stations-search-form input::placeholder {
  color: #a0a0a0;
}

.stations-search-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
  box-shadow: none;
}

.stations-search-btn:hover {
  background-color: #e04b00;
}

.search-hint {
  font-size: 13px;
  color: #a0a0a0;
  margin-top: 15px;
  margin-left: 30px;
}

.live-section {
  padding: 0px 0;
  max-width: 100%;
}

/* Schedule Card Styles */
.station-card.schedule-card {
  display: block;
  /* Override grid */
  padding: 40px;
}

.schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.schedule-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #dcdcdc;
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-item.active {
  background-color: var(--primary-orange);
  border-radius: 8px;
  border-bottom: none;
  color: #fff;
}

/* Hide border of the item preceding the active item to avoid double lines/artifacts */
.schedule-item:has(+ .schedule-item.active) {
  border-bottom-color: transparent;
}

.schedule-time {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  width: 120px;
}

.schedule-item.active .schedule-time {
  color: #fff;
}

.schedule-item:not(.active) .schedule-time {
  color: #000;
}

.schedule-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule-info h4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}

.schedule-item:not(.active) .schedule-info h4 {
  color: #000;
}

.schedule-item.active .schedule-info h4 {
  color: #fff;
}

.schedule-info p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin: 0;
}

.schedule-item:not(.active) .schedule-info p {
  color: #000;
  /* Or #333 / #666 if preferred */
}

.schedule-item.active .schedule-info p {
  color: #fff;
}

.schedule-icon {
  font-size: 24px;
  color: #fff;
}

/* Schedule Header and Extras */
.schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eaeaea;
}

.schedule-header h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
}

.schedule-header h3 i {
  color: var(--primary-orange);
}

.schedule-header a {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}

.schedule-header a:hover {
  color: var(--primary-orange);
}

.schedule-badge {
  background-color: #e0e0e0;
  color: #555;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.notify-btn {
  background: none;
  border: 1px solid #ccc;
  color: #555;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.notify-btn:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}


.stations-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}

.stations-header .box-title {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.stations-header .subtitle {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary-orange);
  font-size: 19px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.stations-header .title {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 24px;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.stations-header .view-all-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #ec5500;
  font-size: 18px;
  text-decoration: none;
  margin-bottom: 5px;
}

.stations-header .view-all-link img {
  height: 14px;
}

.stations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.station-card {
  flex: 0 0 calc(25% - 15px);
  border: 1px solid #b0b0b0;
  border-radius: 20px;
  min-height: 390px;
  background-color: transparent;
  transition: border-color 0.3s ease;
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr auto;
  padding: 40px;
  overflow: hidden;
}

.stations-grid.two-cards .station-card {
  grid-template-columns: 2.05fr 1fr;
  grid-template-rows: 1fr;
  gap: 40px;
  padding: 40px;
}

.stations-grid.two-cards .station-card:first-child {
  flex: 1 1 calc(50% - 10px);
  min-width: 400px;
}

.stations-grid.two-cards .station-card:last-child {
  flex: 1 1 calc(50% - 10px);
  min-width: 400px;
}


.station-card:hover {
  border-color: var(--primary-orange);
}

.station-card .card-text {
  grid-row: 1;
  grid-column: 1 / 3;
}

.station-card .card-text h3 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 36px;
  margin: 0;
  text-transform: uppercase;
  line-height: 1;
}

.station-card .card-text p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 24px;
  margin: 0;
}

.station-card .card-stats {
  grid-row: 2;
  grid-column: 1;
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.station-card .card-play-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid #000000;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.station-card .card-play-btn i {
  font-size: 24px;
  color: #000000;
  margin-left: 0px;
  /* slightly offset play triangle to appear centered */
  transition: color 0.3s ease;
}

.station-card .card-play-btn:hover,
.station-card .card-play-btn.playing {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
}

.station-card .card-play-btn:hover i,
.station-card .card-play-btn.playing i {
  color: #ffffff;
}

.station-card .listening-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.station-card .listening-count {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 18.5px;
}

.station-card .waveform-icon {
  color: var(--primary-orange);
  font-size: 20px;
}

.station-card .station-img {
  grid-row: 2;
  grid-column: 2;
  align-self: end;
  width: 195px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 0.5px solid #b0b0b0;
  padding: 5px;
}

.station-card .live-left {
  grid-column: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.station-card .live-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
}

.station-card .live-info {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.live-info .live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-orange);
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 25px;
  text-transform: uppercase;
  margin: 0;
}

.live-info .live-badge .dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary-orange);
  border-radius: 50%;
}

.live-info .track-info h3 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 36px;
  margin: 0;
  text-transform: uppercase;
  line-height: 1;
}

.live-info .track-info p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 24px;
  margin: 0;
}

.live-info .play-wave-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  /* Отступ между кнопкой Play и волнами */
}

.live-info .waveforms {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
}

.live-info .live-waveform {
  color: var(--primary-orange) !important;
  font-size: 32px;
  margin: 0;
}

.live-info .live-time {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 24px;
  margin: 0;
}

/* --- Stations Page Dedicated Grid and Cards --- */
.stations-page-section {
  padding: 30px 0 40px 0;
  max-width: 100%;
}

.stations-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stations-page-card {
  border: 1px solid #b0b0b0;
  border-radius: 20px;
  min-height: 390px;
  background-color: transparent;
  transition: border-color 0.3s ease;
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr auto;
  padding: 40px;
  position: relative;
}

.close-sp-card {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 30px;
  width: 27px;
  height: 27px;
  color: #777;
  text-decoration: none;
  background-color: var(--bg-main);
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-sp-card:hover {
  color: #ffffff;
  background-color: var(--primary-orange);
}

.stations-page-grid.two-cards .stations-page-card {
  grid-template-columns: 2.05fr 1fr;
  grid-template-rows: 1fr;
  gap: 40px;
  padding: 40px;
}

.stations-page-grid.two-cards .stations-page-card:first-child,
.stations-page-grid.two-cards .stations-page-card:last-child {
  flex: 1 1 calc(50% - 10px);
  min-width: 400px;
}

.stations-page-card:hover {
  border-color: var(--primary-orange);
}

.stations-page-card .sp-card-text {
  grid-row: 1;
  grid-column: 1 / 3;
}

.stations-page-card .sp-card-text h3 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 36px;
  margin: 0;
  text-transform: uppercase;
  line-height: 1;
}

.stations-page-card .sp-card-text p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 24px;
  margin: 0;
}

.stations-page-card .sp-card-stats {
  grid-row: 2;
  grid-column: 1;
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stations-page-card .sp-card-play-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid #000000;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.stations-page-card .sp-card-play-btn i {
  font-size: 24px;
  color: #000000;
  margin-left: 0px;
  transition: color 0.3s ease;
}

.stations-page-card .sp-card-play-btn:hover,
.stations-page-card .sp-card-play-btn.playing {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
}

.stations-page-card .sp-card-play-btn:hover i,
.stations-page-card .sp-card-play-btn.playing i {
  color: #ffffff;
}

.stations-page-card .sp-listening-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stations-page-card .sp-listening-count {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 18.5px;
}

.stations-page-card .sp-waveform-icon {
  color: var(--primary-orange);
  font-size: 20px;
}

.css-waveform {
  display: none;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
  margin-left: 5px;
}

.stations-page-card.is-playing .sp-waveform-icon,
.station-card.is-playing .waveform-icon,
.station-card.is-playing .live-waveform {
  display: none;
}

.stations-page-card.is-playing .css-waveform,
.station-card.is-playing .css-waveform {
  display: flex !important;
}

.css-waveform span {
  display: block;
  width: 3px;
  background-color: var(--primary-orange);
  border-radius: 2px;
  height: 4px;
  animation: wave-bar 1s ease-in-out infinite;
}

.css-waveform span:nth-child(1) {
  animation-delay: 0s;
}

.css-waveform span:nth-child(2) {
  animation-delay: 0.2s;
}

.css-waveform span:nth-child(3) {
  animation-delay: 0.4s;
}

.css-waveform span:nth-child(4) {
  animation-delay: 0.1s;
}

.css-waveform span:nth-child(5) {
  animation-delay: 0.3s;
}

@keyframes wave-bar {

  0%,
  100% {
    height: 4px;
  }

  50% {
    height: 16px;
  }
}

.header .radio-play-btn.playing {
  background-color: var(--primary-orange);
}

.header .radio-play-btn.playing i {
  color: #fff;
}

.stations-page-card .sp-station-img {
  grid-row: 2;
  grid-column: 2;
  align-self: end;
  width: 195px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 0.5px solid #b0b0b0;
  padding: 5px;
}

.stations-page-card .sp-live-left {
  grid-column: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.stations-page-card .sp-live-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
}

.stations-page-card .sp-live-info {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.stations-page-card .sp-live-info .sp-live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-orange);
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 25px;
  text-transform: uppercase;
  margin: 0;
}

.stations-page-card .sp-live-info .sp-live-badge .sp-dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary-orange);
  border-radius: 50%;
}

.stations-page-card .sp-live-info .sp-track-info h3 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 36px;
  margin: 0;
  text-transform: uppercase;
  line-height: 1;
}

.stations-page-card .sp-live-info .sp-track-info p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 24px;
  margin: 0;
}

.stations-page-card .sp-live-info .sp-play-wave-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stations-page-card .sp-live-info .sp-waveforms {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
}

.stations-page-card .sp-live-info .sp-live-waveform {
  color: var(--primary-orange) !important;
  font-size: 32px;
  margin: 0;
}

.stations-page-card .sp-live-info .sp-live-time {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 24px;
  margin: 0;
}

/* App Banner Section */
.app-banner-section {
  padding: 40px 0;
}

.app-station-banner-section {
  padding: 0px 0 40px 0;
}

.app-banner {
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
  border: 1px solid #b0b0b0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  min-height: 250px;
}

.banner-text {
  padding: 40px;
  flex: 1;
  max-width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-text h2 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
  color: #000;
}

.title-with-apps {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 15px;
}

.banner-text .script-title {
  font-family: "Signatra", Helvetica, sans-serif;
  font-size: 60px;
  color: var(--primary-orange);
  text-transform: none;
  font-weight: 400;
  margin: -10px 0 0 0;
  letter-spacing: 1px;
}

.banner-text p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

.banner-apps {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2;
}

.banner-apps a {
  display: inline-block;
  transition: transform 0.2s;
}

.banner-apps a:hover {
  transform: scale(1.05);
}

.banner-apps a.app-btn-apple {
  position: relative;
}

.banner-apps a.app-btn-google {
  position: relative;
}

.banner-apps img {
  height: 45px;
  width: auto;
  display: block;
}

/* Hide mobile dropdown menu by default on desktop */
.mobile-dropdown-menu {
  display: none;
}

/* Responsive Fix for Header Overlap */
@media (min-width: 950px) and (max-width: 1250px) {
  .header .top-menu {
    gap: 20px;
    margin-right: 20px;
  }

  .header .top-menu .menu-item {
    font-size: 16px;
  }

  .header .right-actions {
    gap: 15px;
  }

  .header .listen-live-button {
    padding: 0 15px;
  }

  .header .listen-live-button .btn-text {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .header .logo {
    zoom: 0.75;
  }
}

@media (max-width: 991px) {
  .about-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .about-img-col {
    height: 300px;
  }

  .about-mission-col h2 {
    font-size: 30px;
  }

  .app-banner {
    flex-direction: column;
    text-align: center;
    background-image: none !important;
    background-color: transparent !important;
    padding-bottom: 0;
  }

  .banner-text {
    padding: 40px 20px;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .title-with-apps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
  }

  .banner-apps {
    justify-content: center;
    padding-bottom: 0;
  }

  /* Header Responsive Fixes */
  .main-container {
    padding: 0 20px;
  }

  .header .top-menu {
    display: none;
  }

  .header .mobile-menu-btn {
    display: flex;
  }

  .header .search-button {
    display: none;
  }

  .header .right-actions {
    gap: 20px;
  }

  .header .listen-live-button {
    display: none;
    /* Hide listen live on mobile to save space */
  }

  .header .logo {
    transform: scale(0.65);
    transform-origin: left center;
  }

  .header .hero-title {
    display: none;
  }

  .header .subtitle {
    display: none;
    /* Hide thousands of stations text on mobile as it overlaps */
  }

  .header .vertical-line {
    display: none;
    /* Hide vertical scroll line to save space on mobile */
  }

  .header .radio-shkala-box {
    display: none;
    /* Hide entire radio scale box on mobile */
  }

  .header .slide {
    display: none !important;
  }

  .header .hero-container {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .header .hero-content {
    margin-left: 0;
    width: 100%;
  }

  .header .listen-now {
    left: 0;
    top: auto;
    bottom: 40px;
    width: 100%;
  }

  .header .hero-actions {
    width: 100%;
    gap: 0;
  }

  /* Mobile Dropdown Menu */
  .mobile-dropdown-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    /* Changed to dark overlay */
    z-index: 1000;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: top 0.4s ease-in-out;
    overflow-y: auto;
  }

  .mobile-dropdown-menu.open {
    top: 0;
  }

  .mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: var(--primary-orange);
    cursor: pointer;
  }

  .mobile-menu-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
  }

  .mobile-menu-items .menu-item {
    color: white;
    font-family: "Roboto", sans-serif;
    /* Applied Roboto font as requested */
    font-size: 28px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
    text-transform: uppercase;
  }

  .mobile-menu-items .menu-item:hover,
  .mobile-menu-items .menu-item.active {
    color: var(--primary-orange);
  }

  .stations-header .title {
    font-size: 20px;
  }

  .stations-header .view-all-link {
    font-size: 16px;
  }

  .station-card,
  .station-card.schedule-card,
  .live-station-card {
    padding: 20px !important;
  }

  .stations-grid.two-cards .station-card:first-child,
  .stations-grid.two-cards .station-card:last-child {
    min-width: 0;
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .stations-section {
    padding: 30px 0;
  }
}


/* Footer Styles */
.site-footer {
  background-color: #131619;
  color: #a0a0a0;
  padding: 60px 40px 20px;
  font-family: "Roboto", Helvetica, sans-serif;
  border-radius: 17px 17px 0 0;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col-logo {
  flex: 1.5 1 250px;
}

.footer-col-newsletter {
  flex: 2 1 300px;
}

.site-footer .footer-logo {
  position: relative;
  width: 313px;
  height: 70px;
  margin-bottom: 30px;
  transform: scale(0.8);
  transform-origin: left top;
}

.site-footer .footer-logo .logo-subtitle {
  position: absolute;
  top: 40px;
  left: 0;
  width: 208px;
  font-family: "Roboto Condensed", Helvetica;
  font-weight: 300;
  color: #ffffff;
  font-size: 20.5px;
  letter-spacing: 8px;
  line-height: normal;
  white-space: nowrap;
}

.site-footer .footer-logo i {
  position: absolute;
  font-size: 49px;
  width: 29.65%;
  top: calc(50.00% - 25px);
  left: 63.35%;
  height: 49px;
  color: #ffffff;
}

.site-footer .footer-logo .logo-title {
  top: 0;
  width: 312px;
  font-family: "BBH Bartle-Regular", Helvetica;
  color: var(--primary-orange);
  font-size: 40px;
  letter-spacing: -2.8px;
  position: absolute;
  left: 1px;
}

.footer-tagline {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1a1e22;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a.social-btn {
  font-size: 20px;
}

.social-icons a.fb-icon {
  color: #1877F2;
}

.social-icons a.ig-icon {
  color: #E4405F;
}

.social-icons a.tt-icon {
  color: #1DA1F2;
}

.social-icons a.yt-icon {
  color: #FF0000;
}

.social-icons a.social-btn:hover {
  background-color: var(--primary-orange);
  transform: translateY(-3px);
  color: #ffffff;
}

.footer-col h4 {
  color: #ffffff;
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #ffffff;
  font-size: 16px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--primary-orange);
}

.footer-col-newsletter p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #a0a0a0;
}

.newsletter-form {
  position: relative;
  display: flex;
  border: 1px solid #333333;
  border-radius: 30px;
  overflow: hidden;
  background-color: transparent;
}

.newsletter-form input {
  flex-grow: 1;
  background-color: transparent;
  border: none;
  padding: 15px 20px;
  color: #ffffff;
  font-size: 14px;
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form button {
  background-color: var(--primary-orange);
  color: #ffffff;
  border: none;
  padding: 15px 50px;
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  cursor: pointer;
  border-radius: 30px;
  margin: 3px;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--primary-orange-hover);
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 25px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #666666;
}

.scroll-top-btn {
  position: absolute;
  right: 0;
  top: calc(50% + 12.5px);
  /* 12.5px offsets the 25px padding-top to perfectly center with text */
  transform: translateY(-50%);
  font-size: 30px;
  color: #666666;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.scroll-top-btn:hover {
  color: var(--primary-orange);
  transform: translateY(calc(-50% - 3px));
}

@media (max-width: 991px) {
  .site-footer {
    padding: 60px 20px 20px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 40px;
  }

  .newsletter-form {
    flex-direction: column;
    border: none;
    width: 100%;
  }

  .newsletter-form input {
    border: 1px solid #333333;
    border-radius: 30px;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .newsletter-form button {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-col-newsletter p {
    font-size: 13px;
  }

  /* Schedule Card mobile adjustments */
  .schedule-badge,
  .schedule-icon,
  .notify-btn {
    display: none !important;
  }
}

@media (min-width: 2000px) {
  .header {
    height: 56.25vw;
  }

  .header .hero-content {
    gap: 40px;
  }

  .header .hero-bottom-info {
    gap: 0px;
  }

  .header .hero-title {
    zoom: 1.35;
    top: 26px;
    /* User requested top: 26px */
  }

  .header .vertical-line .line-top {
    height: 500px;
  }

  .main-content {
    margin-top: -170px;
  }
}

/* --- Blog Page Styles --- */
.blog-page-section {
  padding: 30px 0 40px 0;
  max-width: 100%;
}

.blog-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}

.blog-sidebar {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 40px;
}

.blog-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.blog-posts-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.single-post-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 40px;
  background-color: transparent;
  overflow: hidden;
  /* clear floats */
}

.single-post-image {
  float: left;
  width: 40%;
  margin-right: 30px;
  margin-bottom: 20px;
  border-radius: 12px;
  object-fit: cover;
}

.single-post-text {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  text-align: justify;
  margin-bottom: 20px;
}

.single-post-text:last-child {
  margin-bottom: 0;
}

/* Post Comments Section */
.post-comments-section {
  margin-top: 40px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background-color: transparent;
}

.comments-title {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 22px;
  margin-bottom: 30px;
  color: #000;
}

.comments-list {
  margin-bottom: 50px;
}

.comment {
  display: flex;
  margin-bottom: 30px;
  gap: 20px;
}

.comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 24px;
  flex-shrink: 0;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.comment-content {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 12px;
  flex: 1;
}

.comment-content h4 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  margin: 0 0 5px;
  font-size: 16px;
  color: #000;
}

.comment-date {
  font-family: "Roboto", Helvetica, sans-serif;
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 15px;
}

.comment-content p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.reply-btn {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: var(--primary-orange);
  text-decoration: none;
  transition: color 0.3s;
}

.reply-btn:hover {
  color: #000;
}

.leave-comment-form h3 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.leave-comment-form p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
}

.leave-comment-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.leave-comment-form .form-group {
  flex: 1;
  margin-bottom: 20px;
}

.leave-comment-form input,
.leave-comment-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #b0b0b0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  background: transparent;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.leave-comment-form input:focus,
.leave-comment-form textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.submit-comment-btn {
  background-color: var(--primary-orange);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-comment-btn:hover {
  background-color: #000;
}

/* Sidebar Blocks */
.sidebar-block {
  background: transparent;
  border: 1px solid #b0b0b0;
  border-radius: 20px;
  padding: 40px 30px;
}

.sidebar-block h3 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-top: 0;
  margin-bottom: 25px;
  text-transform: uppercase;
}

/* Categories List */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.category-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: color 0.3s;
}

.category-list li:hover .cat-name,
.category-list li.active .cat-name {
  color: var(--primary-orange);
  font-weight: 700;
}

.category-list li .cat-badge {
  background-color: #e6ecef;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  min-width: 28px;
  height: 28px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

.category-list li.active .cat-badge {
  background-color: var(--primary-orange);
  color: #fff;
}

/* Tags Block */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tags-container .tag {
  background-color: #f4f6f8;
  color: #333;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 20px;
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}

.tags-container .tag:hover {
  background-color: var(--primary-orange);
  color: #fff;
}

/* Newsletter Block */
.newsletter-block {
  text-align: center;
}

.newsletter-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: #fff5f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.newsletter-icon-wrapper i {
  font-size: 36px;
  color: var(--primary-orange);
}

.newsletter-block h3 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #111;
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: none;
  font-size: 24px;
}

.newsletter-block p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 25px;
}

.blog-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.blog-newsletter-form input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.blog-newsletter-form input:focus {
  border-color: var(--primary-orange);
}

.blog-newsletter-form button {
  width: 100%;
  padding: 14px 15px;
  background-color: var(--primary-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
}

.blog-newsletter-form button:hover {
  background-color: #e65500;
}

/* Post Card */
.blog-post-card {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  border: 1px solid #b0b0b0;
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.blog-post-card:hover {
  border-color: var(--primary-orange);
}

.blog-post-card .post-image {
  width: 100%;
  flex: 1;
  object-fit: cover;
}

.blog-post-card .post-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.blog-post-card .post-category {
  color: var(--primary-orange);
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-post-card .post-title {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #000;
  margin: 0 0 15px 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-post-card .post-excerpt {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.blog-post-card .post-meta-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-post-card .post-meta {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #999;
}

.blog-post-card .post-arrow {
  color: var(--primary-orange);
  font-size: 22px;
  text-decoration: none;
  transition: transform 0.3s;
}

.blog-post-card:hover .post-arrow {
  transform: translateX(5px);
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.blog-pagination a,
.blog-pagination span {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
}

.blog-pagination a.page-arrow {
  color: var(--primary-orange);
}

.blog-pagination a:hover:not(.active) {
  background-color: #f4f6f8;
}

.blog-pagination a.active {
  background-color: var(--primary-orange);
  color: #fff;
}

@media (width: 1728px) and (height: 1117px) {
  .header .slide {
    height: 100%;
  }

}

@media (max-width: 1999px) {
  .header .hero-container {
    padding-top: 100px;
  }

  .header .hero-bottom-info {
    gap: 20px;
  }

  .schedule-header {
    display: none;
  }

  .live-info .track-info h3 {
    font-size: 30px;
  }

  .live-info .track-info p {
    font-size: 20px;
  }

  .stations-header .title {
    font-size: 30px;
  }

  .station-card .card-text h3 {
    font-size: 30px;
  }

  .station-card .card-text p {
    font-size: 20px;
  }
}

@media (max-width: 1550px) {
  .station-card {
    flex: 0 0 calc(50% - 10px);
  }

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

@media (max-width: 1400px) {
  .blog-posts-area {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .blog-posts-area {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-container {
    flex-direction: column;
  }

  .blog-sidebar {
    flex: 1;
    width: 100%;
    order: 2;
    /* Move sidebar to bottom on mobile */
    position: static;
  }

  .blog-main-content {
    order: 1;
    width: 100%;
  }
}

@media (max-width: 935px) {
  .station-card {
    flex: 0 0 100%;
  }

  .stations-page-grid,
  .blog-posts-area {
    grid-template-columns: 1fr;
  }

  .station-card .station-img {
    width: 180px;
  }

  .stations-grid.two-cards .station-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }

  .station-card .live-left {
    grid-column: 1;
    grid-row: 1;
  }

  .station-card .live-info {
    grid-column: 1;
    grid-row: 2;
  }

  .stations-page-card .sp-station-img {
    width: 150px;
  }

  .stations-page-card .sp-card-text h3 {
    font-size: 30px;
  }

  .station-card .card-text h3 {
    font-size: 25px;
  }

  .station-card .card-text p {
    font-size: 18px;
  }

  .live-info .track-info h3 {
    font-size: 25px;
  }

  .live-info .live-time {
    font-size: 20px;
  }

  .stations-page-card .sp-card-text p {
    font-size: 20px;
  }

  .stations-page-card .sp-listening-info .sp-listening-count {
    font-size: 14px;
  }

  .stations-page-section .clear-all-btn {
    display: none !important;
  }

  .header .slide {
    height: 100%;
  }

  .header .browse-stations-text,
  .header .browse-arrow {
    display: none;
  }

  .stations-header .title {
    font-size: 20px;
  }

  .stations-header .subtitle {
    font-size: 16px;
  }
}

/* Custom Modal Overlay */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.custom-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.custom-modal {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.custom-modal-overlay.active .custom-modal {
  transform: translateY(0);
}

.custom-modal-icon {
  color: var(--primary-orange);
  font-size: 70px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.custom-modal-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #111;
  margin: 0 0 10px 0;
}

.custom-modal-text {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #666;
  margin: 0 0 30px 0;
  line-height: 1.5;
}

.custom-modal-actions {
  display: flex;
  gap: 5px;
  width: 100%;
  justify-content: space-between;
}

.modal-btn-cancel {
  flex: 1;
  padding: 12px 24px;
  border: 1px solid #ddd;
  background: transparent;
  color: #333;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-btn-cancel:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

.modal-btn-confirm {
  flex: 1;
  padding: 12px 24px;
  border: none;
  background: var(--primary-orange);
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-btn-confirm:hover {
  background: #e63d00;
}

/* --- Contact Page Styles --- */
.contact-header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
}

.contact-title-box {
  text-align: center;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px 40px;
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
}

.contact-title-box .subtitle {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-orange);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.contact-title-box h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.contact-page-section {
  padding: 30px 0 0px 0;
  max-width: 100%;
}

.contact-container {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 100%;
}

.contact-info-col {
  flex: 1;
}

.contact-form-col {
  flex: 1.5;
}

.contact-card {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-sizing: border-box;
  height: 100%;
}

.contact-card h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 15px;
}

.contact-card p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 25px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.info-list li:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  flex-shrink: 0;
}

.info-text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.5;
}

.contact-map {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background-color: transparent;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 2px rgba(255, 99, 71, 0.1);
}

.contact-form textarea {
  resize: vertical;
}

@media (max-width: 935px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form .form-row {
    flex-direction: column;
    gap: 20px;
  }
}



/* Search Dropdown & Player Styles */
.search-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  border: 1px solid #e0e0e0;
}

.search-dropdown-menu.active {
  display: block;
}

.search-dropdown-item {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.search-dropdown-item:last-child {
  border-bottom: none;
}

.search-dropdown-item:hover {
  background-color: #f9f9f9;
}

.search-dropdown-item-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.search-dropdown-item-text {
  flex: 1;
}

.search-dropdown-item-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  margin-bottom: 3px;
}

.search-dropdown-item-genre {
  font-size: 13px;
  color: #a0a0a0;
}

.search-dropdown-no-results {
  padding: 20px;
  text-align: center;
  color: #888;
  font-style: italic;
}

.stations-search-btn.playing {
  background-color: var(--primary-orange);
}

.stations-search-btn.playing:hover {
  background-color: #e04b00;
}

@media (min-width: 2000px) {
  .header .radio-shkala-box {
    margin-top: 80px;
  }
  .about-header .radio-shkala-box,
  .contact-header .radio-shkala-box {
    margin-top: 40px;
  }
  .header .slide {
    height: auto;
  }
  .header .hero-bottom-info {
    gap: 20px;
  }
  .stations-section {
    padding: 0px 0 30px 0;
    max-width: 100%;
  }
}

/* Ultra-wide screens (MacBook external monitors, iMac, etc.) */
@media (min-width: 3400px) {
  .header {
    height: auto;
    padding-bottom: 170px;
  }

  .header.about-header,
  .header.contact-header,
  .header.blog-header {
    padding-bottom: 0px;
  }

  .header .slide.active {
    opacity: 1;
  }

  .header .hero-title {
    zoom: 1.95;
    top: 18px;
  }

  .header .hero-content {
    gap: 60px;
  }

  .header .hero-actions {
    gap: 80px;
  }

  .header .vertical-line {
    top: 300px;
  }

  .header .subtitle {
    zoom: 1.25;
  }

  .header .listen-now {
    zoom: 1.55;
  }

  .header .browse-stations-text {
    zoom: 1.25;
  }

  .header .browse-arrow {
    zoom: 1.25;
  }

  .header .top-header {
    zoom: 1.55;
  }

  .header .radio-shkala-box {
    zoom: 1.55;
  }

  .header .vertical-line .line-top {
    height: 759px;
  }
}

/* Experimental 50% scale for 13-inch laptops */
@media (min-width: 936px) and (max-width: 1450px) {
  body {
    zoom: 0.6;
    -moz-transform: scale(0.6);
    -moz-transform-origin: top center;
  }
}

@media (min-width: 1728px) and (max-width: 2200px) {
  body {
    zoom: 0.9;
    -moz-transform: scale(0.9);
    -moz-transform-origin: top center;
  }
}
.menu-item a {
  color: inherit;
  text-decoration: none;
}
.copyright-text i {
  color: var(--primary-orange);
}

.contact-map iframe {
  border: 0;
}
.stations-search-wrapper {
  position: relative;
}
.stations-header {
  align-items: center;
}

.clear-all-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  font-size: 16px;
}
.clear-all-btn i {
  color: var(--primary-orange);
  font-size: 18px;
}


.blog-posts-area .stations-header {
  margin-bottom: 20px;
}
