﻿* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background: #f5f5f5;
      color: #222;
      line-height: 1.5;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* =========================
       HEADER
    ========================= */

    header {
      background: white;
      border-bottom: 1px solid #e5e5e5;
      padding: 10px 20px;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .logo {
      font-size: 18px;
      font-weight: bold;
      color: #7b1fa2;
      transition: 0.2s;
    }

    .logo:hover {
      opacity: 0.8;
    }

    /* =========================
       MENU
    ========================= */

    .menu-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;
      background: none;
      border: none;
      color: #7b1fa2;
    }

    .main-menu {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .main-menu a {
      font-size: 15px;
      color: #444;
      transition: 0.2s;
      padding: 4px 0;
    }

    .main-menu a:hover {
      color: #7b1fa2;
    }

    /* =========================
       MAIN CONTAINER
    ========================= */

    .container {
      width: 95%;
      max-width: 1200px;
      margin: 30px auto;
    }

    /* =========================
       HOME PAGE GRID
    ========================= */

    .episodes-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    .episode-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0,0,0,0.08);
      transition: 0.25s;
    }

    .episode-card:hover {
      transform: translateY(-4px);
    }

    .episode-image {
      width: 100%;
      height: 210px;
      object-fit: cover;
    }

    .episode-content {
      padding: 16px;
    }

    .episode-title {
      font-size: 20px;
      color: #7b1fa2;
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .episode-title a:hover {
      text-decoration: underline;
    }

    .episode-date {
      font-size: 14px;
      color: #777;
    }

    /* =========================
       INTERNAL PAGE
    ========================= */

    .single-page {
      background: white;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    }

    .single-page h1 {
      font-size: 34px;
      margin-bottom: 25px;
      color: #7b1fa2;
      line-height: 1.3;
    }

    .video-wrapper {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      border-radius: 12px;
      margin-bottom: 25px;
    }

    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .episode-description {
      font-size: 17px;
      margin-bottom: 35px;
    }

    .guests-title {
      font-size: 28px;
      margin-bottom: 20px;
      color: #d81b60;
    }

    .guests-list {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .guest-item {
      display: flex;
      align-items: center;
      gap: 18px;
      background: #fafafa;
      padding: 14px;
      border-radius: 10px;
      border: 1px solid #eee;
    }

    .guest-photo {
      width: 300px;
      height: 300px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }

    .guest-info h3 {
      font-size: 20px;
      margin-bottom: 6px;
    }


	
.guest-song,
.guest-city,
.guest-vk {
    display: flex;
    align-items: center;
    margin-top: 6px;
}

/* Мобильные устройства */
@media (max-width: 768px) {
    .guest-song,
    .guest-city,
    .guest-vk {
        justify-content: center;
        text-align: center;
    }
}

    /* =========================
       FOOTER
    ========================= */

    footer {
      text-align: center;
      padding: 30px 15px;
      color: #777;
      font-size: 14px;
    }

    /* =========================
       RESPONSIVE
    ========================= */

    @media (max-width: 992px) {
      .episodes-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {

      .menu-toggle {
        display: block;
      }

      .main-menu {
        position: absolute;
        top: 52px;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid #eee;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: none;
        padding: 10px 20px;
      }

      .main-menu.active {
        display: flex;
      }

      .main-menu a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #f1f1f1;
      }

      .episodes-grid {
        grid-template-columns: 1fr;
      }

      .episode-image {
        height: 240px;
      }

      .single-page h1 {
        font-size: 28px;
      }

      .guest-item {
        flex-direction: column;
        text-align: center;
      }
    }
	
	


/* Песня */
.guest-song::before {
    content: "♫";
    margin-right: 8px;
    color: #c62828;
    font-size: 18px;
}

/* Город / родина */
.guest-city::before {
    content: "🏠";
    margin-right: 8px;
    font-size: 16px;
}

/* VK */
.guest-vk::before {
    content: "ВК";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #0077ff;
    color: white;
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
    margin-right: 8px;
}



/* НАВИГАЦИЯ ПО ВЫПУСКАМ */

.episode-navigation {
  display: flex;
  gap: 15px;
  margin: 25px 0 30px;
}

.episode-nav-button {
  flex: 1;
  background: #cf59b1;
  color: white;
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 16px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  white-space: nowrap;
}

.episode-nav-button:hover {
  background: #7b1fa2;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .episode-navigation {
    gap: 10px;
  }

  .episode-nav-button {
    font-size: 14px;
    padding: 14px 10px;
  }
}
