body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #918787;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    height: 90px;
    background: linear-gradient(90deg, white 0%, #ff9800 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-logo img {
    height: 160px;
    width: 160px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

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

.header-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.header-nav a:hover {
    background: rgba(255,255,255,0.18);
    color: #110f01;
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    background: none;
    border: none;
    color: #ffffff04;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.dropdown-btn:hover {
    background: rgba(255,255,255,0.18);
    color: #110f01;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 48px;
    background: #fff;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.10);
    z-index: 10;
    border-radius: 8px;
    overflow: hidden;
}

.dropdown-content a {
    color: #333;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 1rem;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: #110f01;
    color: #fff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.search-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    padding: 3px 8px 3px 18px;
    margin-left: 20px;
    transition: box-shadow 0.2s;
    border: 1px solid #eee;
    min-width: 220px;
}

.search-bar input[type="text"] {
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    padding: 8px 0;
    width: 140px;
    color: #333;
}

.search-bar button {
    padding: 8px 18px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(90deg, #0037ff 0%, #333 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s;
}

.search-bar button:hover {
    background: linear-gradient(90deg, #333 0%, #110f01 100%);
}

/* Footer Section */

footer {
    background: linear-gradient(90deg, #333 0%, #ff9800 100%);
    color: #fff;
    padding: 40px 0 20px 0;
    text-align: center;
    font-family: 'Segoe UI', Arial, sans-serif;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    margin-top: 60px;
}

.footer-container {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 180px;
    text-align: left;
}

.footer-section h2,
.footer-section h3 {
    margin: 0 0 12px 0;
    font-size: 1.3rem;
}

.footer-section p {
    margin: 0;
    color: #ffe0b2;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

.footer-section a:hover {
    color: #110f01;
}

.footer-social a {
    margin-right: 12px;
}

.footer-hr {
    border: none;
    border-top: 1px solid #fff2;
    margin: 30px 0 18px 0;
}

.footer-copy {
    font-size: 0.95rem;
    color: #ffe0b2;
}

@media (max-width: 700px) {
    .header {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 16px;
    }
    .header-nav {
        gap: 12px;
    }
    .footer-container {
        flex-direction: column;
        gap: 18px;
    }
}

/*podcast section*/

.dynamic-section {
    margin: 40px auto;
    max-width: 900px;
    background: #fff;
    background-image: url('/BG.jpeg');
    background-size: contain;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 32px 24px;
    text-align: center;
}

.dynamic-content h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #131312;
}

.dynamic-content p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 18px;
}

.dynamic-content button {
    padding: 10px 28px;
    font-size: 1rem;
    background: linear-gradient(90deg, #0037ffc6 0%, #333 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s;
}

.dynamic-content button:hover {
    background: linear-gradient(90deg, #333 0%, #110f01 100%);
}

.dynamic-images {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.dynamic-img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

/* Latest Articles Section */

.latest-articles-section {
    width: 100%;
    background: #fff;
    padding: 48px 0;
    display: flex;
    justify-content: center;
}

.latest-articles-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 48px;
    align-items: flex-start;
}

.latest-articles-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.latest-articles-heading {
    font-size: 2rem;
    color: #110f01;
    margin-bottom: 24px;
}

.articles-blocks {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.article-block {
    background: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 18px 22px;
}

.article-block h3 {
    margin: 0 0 8px 0;
    font-size: 1.15rem;
    color: #333;
}

.article-block p {
    margin: 0;
    color: #555;
    font-size: 1rem;
}

/* Latest Articles vertical blocks */
.article-block:hover {
    box-shadow: 0 6px 24px rgba(17,15,1,0.12);
    transform: translateY(-4px) scale(1.03);
    transition: box-shadow 0.2s, transform 0.2s;
    background: #fffbe6;
}

.articles-btn {
    padding: 12px 32px;
    font-size: 1rem;
    background: linear-gradient(90deg, #0037ff 0%, #333 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s;
}

.articles-btn:hover {
    background: linear-gradient(90deg, #333 0%, #0037ff 100%);
}

.latest-articles-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.latest-articles-img {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    object-fit: cover;
}

@media (max-width: 900px) {
    .latest-articles-container {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    .latest-articles-right, .latest-articles-left {
        width: 100%;
        max-width: 600px;
    }
    .latest-articles-img {
        max-width: 100%;
    }
}

/*suggested articles section*/

.horizontal-articles-section {
    max-width: 1200px;
    background-color: #fff;
    margin: 48px auto 0 auto;
    padding: 0 24px;
}

.horizontal-articles-heading {
    font-size: 2rem;
    color: #110f01;
    margin-bottom: 28px;
    text-align: left;
}

.horizontal-articles-row {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.horizontal-article-block {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    min-width: 300px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
}

.horizontal-article-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 14px;
}

/* Horizontal article blocks */
.horizontal-article-block:hover {
    box-shadow: 0 6px 24px rgba(232, 179, 3, 0.12);
    transform: translateY(-4px) scale(1.03);
    transition: box-shadow 0.2s, transform 0.2s;
    background: #fffbe6;
}

.horizontal-article-content h3 {
    margin: 0 0 8px 0;
    font-size: 1.15rem;
    color: #333;
}

.horizontal-article-content p {
    margin: 0;
    color: #555;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .horizontal-articles-row {
        gap: 18px;
    }
    .horizontal-article-block {
        min-width: 220px;
        max-width: 240px;
        padding: 12px;
    }
    .horizontal-article-img {
        height: 90px;
    }
}

.review-section {
    max-width: 1200px;
    margin: 48px auto 0 auto;
    padding: 0 24px 32px 24px;
    background: #ecf0cbfb;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.review-heading {
    font-size: 2rem;
    color: #110f01;
    margin-bottom: 28px;
    text-align: left;
}

.review-list {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.review-block {
    background: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 18px 22px;
    min-width: 220px;
    max-width: 280px;
    flex: 1;
    margin-bottom: 18px;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}

.review-block:hover {
    box-shadow: 0 6px 24px rgba(17,15,1,0.12);
    transform: translateY(-4px) scale(1.03);
    background: #fffbe6;
}

.review-text {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 12px;
}

.review-user {
    font-size: 0.95rem;
    color: #110f01;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-profile-img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #0037ff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}




/* CSS for Podcast.html (responsive) */

/* Reset & base */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: "Segoe UI", Roboto, Arial, sans-serif; color: #222; background: #fff; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { color: inherit; text-decoration: none; }

/* Layout container */
.container-max { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  background: linear-gradient(90deg,#333 0%, #ff9800 100%);
  color: #fff;
  position: relative;
  z-index: 50;
}
.header-logo { display:flex; align-items:center; gap:12px; }
.header-logo img { height: 52px; width: auto; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.nav-toggle { display: none; background: transparent; border: 0; color: #fff; font-size: 22px; cursor: pointer; }

/* Navigation */
.header-nav { display: flex; align-items: center; gap: 12px; }
.header-nav a { color: #fff; padding: 8px 12px; border-radius: 8px; font-weight: 600; }
.header-nav a.active { background: rgba(255,255,255,0.08); }
.header-nav a:hover { background: rgba(255,255,255,0.12); color: #ffd700; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-btn { background: transparent; border: 0; color: #fff; padding: 8px 12px; cursor: pointer; font-weight:600; }
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 44px;
  background: #fff;
  color: #222;
  min-width: 160px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  overflow: hidden;
}
.dropdown-content a { display:block; padding:10px 14px; border-bottom: 1px solid #f1f1f1; color:#222; }
.dropdown-content a:last-child { border-bottom: none; }
.dropdown:hover .dropdown-content { display: block; }

/* Search */
.search-bar { display:flex; align-items:center; gap:8px; background: #fff; padding:4px 8px; border-radius:28px; border: 1px solid rgba(0,0,0,0.06); }
.search-bar input { border: none; outline: none; padding:8px 10px; width:180px; color:#222; background: transparent; }
.search-bar button { background: linear-gradient(90deg,#ff9800,#333); color:#fff; border: none; padding:8px 12px; border-radius:20px; cursor:pointer; font-weight:600; }

/* Podcast hero */
.podcast-main { padding: 20px 0 48px; }
.podcast-hero {
  display:flex;
  gap: 24px;
  align-items: center;
  margin: 20px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.hero-left { flex: 1; min-width: 220px; }
.hero-left h1 { margin: 0 0 8px; font-size: 2rem; color: #110f01; }
.hero-sub { margin: 0 0 12px; color: #555; line-height: 1.4; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; }
.btn-primary {
  background: linear-gradient(90deg,#0037ff,#333);
  color:#fff; border: none;
  padding:10px 16px; border-radius:28px; cursor:pointer; font-weight:700;
}
.btn-outline {
  padding:10px 16px; border-radius:28px; border:1px solid #ddd; color:#222; background:transparent;
}

/* hero image */
.hero-right { flex: 0 0 320px; display:flex; justify-content:center; align-items:center; }
.hero-cover { width:100%; max-width:320px; border-radius:12px; object-fit:cover; box-shadow: 0 8px 28px rgba(0,0,0,0.12); }

/* Player + playlist layout */
.player-playlist {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  align-items: start;
  max-width: 1200px;
  margin: 8px auto 32px;
  padding: 0 16px;
}
.player-card {
  display:flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  padding: 14px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.player-thumb { width:150px; height:150px; object-fit:cover; border-radius:10px; flex:0 0 150px; }
.player-info { flex:1; min-width:0; }
.player-info h3 { margin: 0 0 6px; font-size:1.05rem; color:#222; }
.player-info .muted { color:#666; margin:0 0 10px; }

/* Controls */
.player-controls { display:flex; flex-direction:column; gap:10px; }
.buttons-row { display:flex; gap:8px; align-items:center; }
.control-btn {
  background: linear-gradient(90deg,#0037ff,#333);
  color:#fff; border:none; padding:8px 12px; border-radius:8px; cursor:pointer; font-weight:600;
}
.time-wrap { display:flex; gap:8px; align-items:center; flex-wrap:wrap; }
#seek { -webkit-appearance:none; appearance:none; height:6px; background:#eee; border-radius:6px; outline:none; }

/* Playlist */
.playlist {
  background: #fff; padding:12px; border-radius:12px; box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.playlist-header { display:flex; gap:8px; margin-bottom:12px; }
.playlist-header input, .playlist-header select { padding:8px 10px; border-radius:8px; border:1px solid #e6e6e6; background:#fff; }
.playlist-items { display:flex; flex-direction:column; gap:8px; max-height:520px; overflow:auto; padding-right:6px; }
.playlist-item {
  display:flex; gap:10px; align-items:center; padding:8px; border-radius:8px; cursor:pointer;
  transition: transform .12s, box-shadow .12s, background .12s;
}
.playlist-item:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); background:#fffaf0; }
.playlist-item.active { background:#fff3d9; box-shadow:0 14px 36px rgba(0,0,0,0.10); }
.playlist-thumb { width:60px; height:60px; object-fit:cover; border-radius:8px; flex:0 0 60px; }
.playlist-meta { flex:1; min-width:0; }
.ep-title { display:block; font-weight:700; color:#222; }
.ep-desc { display:block; color:#666; font-size:0.95rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

/* Footer */
footer {
  background: linear-gradient(90deg,#333 0%, #0037ff 100%);
  color:#fff; padding:28px 0; margin-top: 36px;
}
.footer-container { max-width:1200px; margin:0 auto; padding:0 16px; display:flex; gap:24px; flex-wrap:wrap; }
.footer-section { min-width:180px; }
.footer-hr { border:none; border-top:1px solid rgba(255,255,255,0.12); margin:18px 0; }
.footer-copy { color:#ffe0b2; text-align:center; }

/* Small interactions */
.control-btn:active, .btn-primary:active { transform: translateY(1px); }
.playlist-item:focus { outline: 2px solid #0037ff; outline-offset: 2px; }

/* Responsive */
@media (max-width: 1000px) {
  .player-playlist { grid-template-columns: 1fr 300px; }
  .hero-right { flex: 0 0 260px; }
  .player-thumb { width:120px; height:120px; flex:0 0 120px; }
  .playlist-items { max-height:420px; }
}

@media (max-width: 760px) {
  .header-nav { display: none; }
  .nav-toggle { display: block; }
  .header-nav.open { display:flex; position: absolute; left: 12px; right: 12px; top: 72px; background: #fff; color: #222; flex-direction: column; padding: 12px; box-shadow: 0 12px 36px rgba(0,0,0,0.08); z-index: 60; border-radius: 8px; }
  .podcast-hero { flex-direction: column-reverse; text-align: center; gap: 16px; }
  .player-playlist { grid-template-columns: 1fr; }
  .playlist { order: 2; }
  .player-card { order: 1; width: 100%; }
  .playlist-items { max-height: 320px; }
  .search-bar input { width: 120px; }
}

@media (max-width: 420px) {
  .header-logo img { height: 44px; }
  .player-thumb { width: 100px; height: 100px; flex:0 0 100px; }
  .hero-left h1 { font-size: 1.4rem; }
  .search-bar input { width: 90px; }
  .dynamic-section { padding: 12px; }
}

/* CSS for Podcast.html (responsive) */

/* Reset & base */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: "Segoe UI", Roboto, Arial, sans-serif; color: #222; background: #fff; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { color: inherit; text-decoration: none; }

/* Layout container */
.container-max { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  background: linear-gradient(90deg,#333 0%, #0037ff 100%);
  color: #fff;
  position: relative;
  z-index: 50;
}
.header-logo { display:flex; align-items:center; gap:12px; }
.header-logo img { height: 52px; width: auto; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.nav-toggle { display: none; background: transparent; border: 0; color: #fff; font-size: 22px; cursor: pointer; }

/* Navigation */
.header-nav { display: flex; align-items: center; gap: 12px; }
.header-nav a { color: #fff; padding: 8px 12px; border-radius: 8px; font-weight: 600; }
.header-nav a.active { background: rgba(255,255,255,0.08); }
.header-nav a:hover { background: rgba(255,255,255,0.12); color: #ffd700; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-btn { background: transparent; border: 0; color: #fff; padding: 8px 12px; cursor: pointer; font-weight:600; }
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 44px;
  background: #fff;
  color: #222;
  min-width: 160px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  overflow: hidden;
}
.dropdown-content a { display:block; padding:10px 14px; border-bottom: 1px solid #f1f1f1; color:#222; }
.dropdown-content a:last-child { border-bottom: none; }
.dropdown:hover .dropdown-content { display: block; }

/* Search */
.search-bar { display:flex; align-items:center; gap:8px; background: #fff; padding:4px 8px; border-radius:28px; border: 1px solid rgba(0,0,0,0.06); }
.search-bar input { border: none; outline: none; padding:8px 10px; width:180px; color:#222; background: transparent; }
.search-bar button { background: linear-gradient(90deg,#0037ff9a,#333); color:#fff; border: none; padding:8px 12px; border-radius:20px; cursor:pointer; font-weight:600; }

/* Podcast hero */
.podcast-main { padding: 20px 0 48px; }
.podcast-hero {
  display:flex;
  gap: 24px;
  align-items: center;
  margin: 20px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.hero-left { flex: 1; min-width: 220px; }
.hero-left h1 { margin: 0 0 8px; font-size: 2rem; color: #110f01; }
.hero-sub { margin: 0 0 12px; color: #555; line-height: 1.4; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; }
.btn-primary {
  background: linear-gradient(90deg,#0037ff,#333);
  color:#fff; border: none;
  padding:10px 16px; border-radius:28px; cursor:pointer; font-weight:700;
}
.btn-outline {
  padding:10px 16px; border-radius:28px; border:1px solid #ddd; color:#222; background:transparent;
}

/* hero image */
.hero-right { flex: 0 0 320px; display:flex; justify-content:center; align-items:center; }
.hero-cover { width:100%; max-width:320px; border-radius:12px; object-fit:cover; box-shadow: 0 8px 28px rgba(0,0,0,0.12); }

/* Player + playlist layout */
.player-playlist {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  align-items: start;
  max-width: 1200px;
  margin: 8px auto 32px;
  padding: 0 16px;
}
.player-card {
  display:flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  padding: 14px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.player-thumb { width:150px; height:150px; object-fit:cover; border-radius:10px; flex:0 0 150px; }
.player-info { flex:1; min-width:0; }
.player-info h3 { margin: 0 0 6px; font-size:1.05rem; color:#222; }
.player-info .muted { color:#666; margin:0 0 10px; }

/* Controls */
.player-controls { display:flex; flex-direction:column; gap:10px; }
.buttons-row { display:flex; gap:8px; align-items:center; }
.control-btn {
  background: linear-gradient(90deg,#0037ff,#333);
  color:#fff; border:none; padding:8px 12px; border-radius:8px; cursor:pointer; font-weight:600;
}
.time-wrap { display:flex; gap:8px; align-items:center; flex-wrap:wrap; }
#seek { -webkit-appearance:none; appearance:none; height:6px; background:#eee; border-radius:6px; outline:none; }

/* Playlist */
.playlist {
  background: #fff; padding:12px; border-radius:12px; box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.playlist-header { display:flex; gap:8px; margin-bottom:12px; }
.playlist-header input, .playlist-header select { padding:8px 10px; border-radius:8px; border:1px solid #e6e6e6; background:#fff; }
.playlist-items { display:flex; flex-direction:column; gap:8px; max-height:520px; overflow:auto; padding-right:6px; }
.playlist-item {
  display:flex; gap:10px; align-items:center; padding:8px; border-radius:8px; cursor:pointer;
  transition: transform .12s, box-shadow .12s, background .12s;
}
.playlist-item:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); background:#fffaf0; }
.playlist-item.active { background:#fff3d9; box-shadow:0 14px 36px rgba(0,0,0,0.10); }
.playlist-thumb { width:60px; height:60px; object-fit:cover; border-radius:8px; flex:0 0 60px; }
.playlist-meta { flex:1; min-width:0; }
.ep-title { display:block; font-weight:700; color:#222; }
.ep-desc { display:block; color:#666; font-size:0.95rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

/* Footer */
footer {
  background: linear-gradient(90deg,#333 0%, #0037ff 100%);
  color:#fff; padding:28px 0; margin-top: 36px;
}
.footer-container { max-width:1200px; margin:0 auto; padding:0 16px; display:flex; gap:24px; flex-wrap:wrap; }
.footer-section { min-width:180px; }
.footer-hr { border:none; border-top:1px solid rgba(255,255,255,0.12); margin:18px 0; }
.footer-copy { color:#ffe0b2; text-align:center; }

/* Small interactions */
.control-btn:active, .btn-primary:active { transform: translateY(1px); }
.playlist-item:focus { outline: 2px solid #0037ff; outline-offset: 2px; }

/* Responsive */
@media (max-width: 1000px) {
  .player-playlist { grid-template-columns: 1fr 300px; }
  .hero-right { flex: 0 0 260px; }
  .player-thumb { width:120px; height:120px; flex:0 0 120px; }
  .playlist-items { max-height:420px; }
}

@media (max-width: 760px) {
  .header-nav { display: none; }
  .nav-toggle { display: block; }
  .header-nav.open { display:flex; position: absolute; left: 12px; right: 12px; top: 72px; background: #0c0c0ccf; color: #222; flex-direction: column; padding: 12px; box-shadow: 0 12px 36px rgba(0,0,0,0.08); z-index: 60; border-radius: 8px; }
  .podcast-hero { flex-direction: column-reverse; text-align: center; gap: 16px; }
  .player-playlist { grid-template-columns: 1fr; }
  .playlist { order: 2; }
  .player-card { order: 1; width: 100%; }
  .playlist-items { max-height: 320px; }
  .search-bar input { width: 120px; }
}

@media (max-width: 420px) {
  .header-logo img { height: 44px; }
  .player-thumb { width: 100px; height: 100px; flex:0 0 100px; }
  .hero-left h1 { font-size: 1.4rem; }
  .search-bar input { width: 90px; }
  .dynamic-section { padding: 12px; }
}


/* Added hover & interaction polish */
:root {
  --hover-raise: 6px;
  --hover-shadow: 0 14px 36px rgba(0,0,0,0.12);
  --hover-shadow-soft: 0 8px 24px rgba(0,0,0,0.08);
  --transition-fast: 180ms;
  --accent-from: #0037ff;
  --accent-to: #333;
}

/* apply smooth transitions to interactive controls */
.header-nav a,
.dropdown-btn,
.search-bar button,
.control-btn,
.btn-primary,
.articles-btn,
.article-block,
.horizontal-article-block,
.player-card,
.playlist-item,
.dynamic-img {
  transition: transform var(--transition-fast) ease, box-shadow var(--transition-fast) ease, background var(--transition-fast) ease, opacity var(--transition-fast) ease;
  will-change: transform, box-shadow;
}

/* subtle lift on hover */
.header-nav a:hover,
.dropdown-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--hover-shadow-soft);
  background: rgba(0,0,0,0.04);
  color: #0037ff;
}

/* buttons */
.btn-primary:hover,
.control-btn:hover,
.articles-btn:hover,
.search-bar button:hover {
  transform: translateY(-3px);
  box-shadow: var(--hover-shadow-soft);
  filter: brightness(0.98);
}

/* player card lift */
.player-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hover-shadow);
}

/* playlist item stronger hover (already exists) */
.playlist-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--hover-shadow);
  background: #fffaf0;
}

/* active playlist item */
.playlist-item.active {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}

/* article thumbnails */
.dynamic-img:hover,
.horizontal-article-block:hover,
.article-block:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--hover-shadow);
}

/* focus-visible for keyboard users */
a:focus,
button:focus,
.playlist-item:focus,
.article-block:focus {
  outline: 3px solid rgba(255,152,0,0.22);
  outline-offset: 3px;
  transform: translateY(-3px);
  box-shadow: var(--hover-shadow-soft);
}

/* small opacity / hint effect */
.header-nav a[aria-current="page"] {
  opacity: 0.98;
}

/* ensure hover effects are not too intense on very small devices */
@media (max-width: 420px) {
  .header-nav a:hover,
  .btn-primary:hover,
  .control-btn:hover,
  .playlist-item:hover,
  .dynamic-img:hover {
    transform: none;
    box-shadow: none;
  }
}
/* ...existing code... */



/* Additional hover & color-change polish (append to file) */
:root {
  --accent-from: #0037ff;
  --accent-to: #333;
  --accent-strong: #0037ff5c;
  --muted: #666;
  --hover-duration: 180ms;
}

/* make links use a subtle gradient on hover and switch text color to white */
.header-nav a {
  transition: color var(--hover-duration) ease, background var(--hover-duration) ease, transform var(--hover-duration) ease;
}
.header-nav a:hover {
  background: linear-gradient(90deg, rgba(4, 0, 255, 0.95), rgba(51,51,51,0.95));
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(0,0,0,0.12);
}

/* outline + gradient for focused navigation items (keyboard) */
.header-nav a:focus {
  outline: 3px solid rgba(4, 0, 255, 0.22);
  outline-offset: 4px;
  background: linear-gradient(90deg, rgba(4, 0, 255, 0.95), rgba(51,51,51,0.95));
  color: #fff;
}

/* buttons get animated gradient on hover */
.btn-primary,
.control-btn,
.articles-btn,
.search-bar button {
  background-image: linear-gradient(90deg, var(--accent-from), var(--accent-to));
  transition: transform var(--hover-duration) ease, box-shadow var(--hover-duration) ease, filter var(--hover-duration) ease, background-position 400ms ease;
  background-size: 200% 100%;
  background-position: 0% 0%;
}
.btn-primary:hover,
.control-btn:hover,
.articles-btn:hover,
.search-bar button:hover {
  background-position: 100% 0%;
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.14);
  filter: brightness(1.02);
}

/* outline & left accent on playlist item hover */
.playlist-item {
  border-left: 4px solid transparent;
  transition: border-color var(--hover-duration) ease, transform var(--hover-duration) ease, box-shadow var(--hover-duration) ease, background var(--hover-duration) ease;
}
.playlist-item:hover {
  border-left-color: var(--accent-strong);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 42px rgba(0,0,0,0.14);
  background: linear-gradient(90deg, rgba(255,248,230,0.9), #fffaf0);
}

/* active playlist item stronger color */
.playlist-item.active {
  border-left-color: var(--accent-from);
  background: linear-gradient(90deg, rgba(255,244,230,0.95), rgba(255,243,224,0.9));
  box-shadow: 0 12px 34px rgba(0,0,0,0.12);
}

/* dynamic images & article thumbnails get accent glow on hover */
.dynamic-img,
.horizontal-article-img {
  transition: transform var(--hover-duration) ease, box-shadow var(--hover-duration) ease, filter var(--hover-duration) ease;
}
.dynamic-img:hover,
.horizontal-article-img:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 18px 48px rgba(255,152,0,0.12);
  filter: saturate(1.03);
}

/* article block hover color shift */
.article-block:hover {
  background: linear-gradient(180deg, #fffbe6, #fffef9);
  color: #110f01;
}

/* footer links accent on hover */
.footer-section a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  transform: translateY(-2px);
}

/* reduce intensity on touch devices */
@media (hover: none), (pointer: coarse) {
  .header-nav a:hover,
  .btn-primary:hover,
  .control-btn:hover,
  .playlist-item:hover,
  .dynamic-img:hover,
  .horizontal-article-img:hover {
    transform: none;
    box-shadow: none;
    background-position: 0% 0%;
  }
}

/* ...existing code... */


/* Additional hover & color-change polish (append to file) */
:root {
  --accent-from: #0037ff;
  --accent-to: #333;
  --accent-strong: #1900ff;
  --muted: #666;
  --hover-duration: 180ms;
}

/* make links use a subtle gradient on hover and switch text color to white */
.header-nav a {
  transition: color var(--hover-duration) ease, background var(--hover-duration) ease, transform var(--hover-duration) ease;
}
.header-nav a:hover {
  background: linear-gradient(90deg, rgba(0, 162, 255, 0.49), rgba(51,51,51,0.95));
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(0,0,0,0.12);
}

/* outline + gradient for focused navigation items (keyboard) */
.header-nav a:focus {
  outline: 3px solid rgba(4, 0, 255, 0.22);
  outline-offset: 4px;
  background: linear-gradient(90deg, rgba(4, 0, 255, 0.95), rgba(51,51,51,0.95));
  color: #fff;
}

/* buttons get animated gradient on hover */
.btn-primary,
.control-btn,
.articles-btn,
.search-bar button {
  background-image: linear-gradient(90deg, var(--accent-from), var(--accent-to));
  transition: transform var(--hover-duration) ease, box-shadow var(--hover-duration) ease, filter var(--hover-duration) ease, background-position 400ms ease;
  background-size: 200% 100%;
  background-position: 0% 0%;
}
.btn-primary:hover,
.control-btn:hover,
.articles-btn:hover,
.search-bar button:hover {
  background-position: 100% 0%;
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.14);
  filter: brightness(1.02);
}

/* outline & left accent on playlist item hover */
.playlist-item {
  border-left: 4px solid transparent;
  transition: border-color var(--hover-duration) ease, transform var(--hover-duration) ease, box-shadow var(--hover-duration) ease, background var(--hover-duration) ease;
}
.playlist-item:hover {
  border-left-color: var(--accent-strong);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 42px rgba(0,0,0,0.14);
  background: linear-gradient(90deg, rgba(255,248,230,0.9), #fffaf0);
}

/* active playlist item stronger color */
.playlist-item.active {
  border-left-color: var(--accent-from);
  background: linear-gradient(90deg, rgba(255,244,230,0.95), rgba(255,243,224,0.9));
  box-shadow: 0 12px 34px rgba(0,0,0,0.12);
}

/* dynamic images & article thumbnails get accent glow on hover */
.dynamic-img,
.horizontal-article-img {
  transition: transform var(--hover-duration) ease, box-shadow var(--hover-duration) ease, filter var(--hover-duration) ease;
}
.dynamic-img:hover,
.horizontal-article-img:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 18px 48px rgba(255,152,0,0.12);
  filter: saturate(1.03);
}

/* article block hover color shift */
.article-block:hover {
  background: linear-gradient(180deg, #fffbe6, #fffef9);
  color: #110f01;
}

/* footer links accent on hover */
.footer-section a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  transform: translateY(-2px);
}

/* reduce intensity on touch devices */
@media (hover: none), (pointer: coarse) {
  .header-nav a:hover,
  .btn-primary:hover,
  .control-btn:hover,
  .playlist-item:hover,
  .dynamic-img:hover,
  .horizontal-article-img:hover {
    transform: none;
    box-shadow: none;
    background-position: 0% 0%;
  }
}

/* Reels preview styles */
.reels-section{ max-width:1200px; margin:22px auto; padding:14px; border-radius:12px; background:linear-gradient(180deg,#fff,#fffaf0); box-shadow:0 12px 36px rgba(0,0,0,0.06); }
.reels-header{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:8px; }
.reels-header h2{ margin:0; font-size:1.2rem; color:#110f01; }
.view-all-link{ font-weight:700; color:var(--accent-from); text-decoration:none; }

.reels-row-wrap{ display:flex; align-items:center; gap:8px; }
.reel-nav{ background:transparent; border:1px solid #eee; width:40px; height:40px; border-radius:8px; cursor:pointer; font-size:20px; }
.reels-row{ display:flex; gap:12px; overflow-x:auto; padding:8px 4px; -webkit-overflow-scrolling:touch; scroll-snap-type:x mandatory; }

.reel-card{ min-width:220px; max-width:260px; background:#fff; border-radius:12px; overflow:hidden; box-shadow:0 10px 30px rgba(0,0,0,0.06); scroll-snap-align:center; cursor:pointer; display:flex; flex-direction:column; }
.reel-thumb{ width:100%; height:140px; object-fit:cover; background:#000; display:block; }
.reel-body{ padding:10px; display:flex; flex-direction:column; gap:6px; }
.reel-title{ margin:0; font-size:1rem; color:#110f01; }
.reel-excerpt{ margin:0; color:#666; font-size:.9rem; line-height:1.3; }

/* small-screen adjustments */
@media (max-width:700px){
  .reel-card{ min-width:180px; max-width:220px; }
  .reel-thumb{ height:120px; }
}

/* ...existing code... */