/* ============================================
   SEOAddict.co — YouTube SEO Companion
   Unique CSS (anti-footprint)
   ============================================ */

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

body {
  font-family: 'Rubik', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1A1A1A;
  background: #FAFAFA;
}

a { color: #FF0000; text-decoration: none; transition: color .2s ease; }
a:hover { color: #CC0000; }

img { max-width: 100%; height: auto; display: block; }

/* ---- Video Bar (Header) ---- */
.vidbar {
  background: #0F0F0F;
  padding: 14px 24px;
  border-bottom: 3px solid #FF0000;
}
.vidbar__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vidbar__channel {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.3px;
}
.vidbar__channel:hover { color: #FF0000; }
.vidbar__sub {
  display: block;
  font-size: 11px;
  color: #909090;
  margin-top: 1px;
  letter-spacing: 0.2px;
}
.vidbar__tabs {
  display: flex;
  gap: 20px;
}
.vidbar__tabs a {
  color: #AAAAAA;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: all .2s ease;
}
.vidbar__tabs a:hover {
  color: #FFFFFF;
  border-bottom-color: #FF0000;
}

/* ---- Screen (Main wrapper) ---- */
.screen {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

/* ---- Episode Hero ---- */
.episode-hero {
  padding: 48px 0 36px;
  text-align: center;
  border-bottom: 1px solid #E8E8E8;
  margin-bottom: 36px;
}
.episode-hero h1 {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #0F0F0F;
  line-height: 1.25;
  margin-bottom: 14px;
}
.episode-hero p {
  font-size: 17px;
  color: #555;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- Playlist (Homepage articles) ---- */
.playlist {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.playlist .episode {
  padding: 24px 0;
  border-bottom: 1px solid #EBEBEB;
}
.playlist .episode:last-child { border-bottom: none; }
.playlist .episode__name {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 6px;
}
.playlist .episode__name a { color: #1A1A1A; }
.playlist .episode__name a:hover { color: #FF0000; }
.playlist .episode__stamp {
  font-size: 12px;
  color: #909090;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.playlist p {
  font-size: 15px;
  color: #606060;
  margin: 10px 0;
  line-height: 1.6;
}
.playlist a.episode__link {
  font-size: 13px;
  font-weight: 700;
  color: #FF0000;
  border: 2px solid #FF0000;
  padding: 6px 18px;
  border-radius: 24px;
  display: inline-block;
  margin-top: 6px;
  transition: all .2s ease;
}
.playlist a.episode__link:hover {
  background: #FF0000;
  color: #FFFFFF;
}

/* ---- Episode (Article page) ---- */
.episode {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 36px;
}
.episode__name {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0F0F0F;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.episode__stamp {
  font-size: 13px;
  color: #909090;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 3px solid #FF0000;
}
.episode__sep { margin: 0 8px; }
.episode__host { font-weight: 600; color: #FF0000; }

.episode__transcript {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}
.episode__transcript p { margin-bottom: 18px; }
.episode__transcript h2 {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #0F0F0F;
  margin: 32px 0 14px;
}
.episode__transcript h3 {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 24px 0 10px;
}
.episode__transcript ul, .episode__transcript ol {
  margin: 0 0 18px 24px;
  color: #444;
}
.episode__transcript li { margin-bottom: 6px; }
.episode__transcript blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  background: #FFF0F0;
  border-left: 4px solid #FF0000;
  font-style: italic;
  color: #555;
}
.episode__transcript code {
  background: #FFF0F0;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}
.episode__transcript pre {
  background: #0F0F0F;
  color: #E0E0E0;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 20px 0;
}
.episode__transcript pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* ---- Episode Footer ---- */
.episode__footer {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid #EBEBEB;
}
.episode__topics {
  font-size: 12px;
  color: #909090;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* Related */
.related { margin-top: 16px; }
.related h3 {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0F0F0F;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.related ul { list-style: none; padding: 0; margin-top: 8px; }
.related li { padding: 4px 0; font-size: 14px; }
.related li::before { content: "\25B6\00a0"; color: #FF0000; font-size: 10px; }

/* ---- Host Card (About page) ---- */
.host-card {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 36px;
}
.host-card__title {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #0F0F0F;
  margin-bottom: 4px;
}
.host-card__subtitle {
  font-size: 16px;
  color: #FF0000;
  font-weight: 600;
  margin-bottom: 24px;
}
.host-card__bio {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 32px;
}
.host-card__areas,
.host-card__collabs,
.host-card__url {
  margin-bottom: 28px;
}
.host-card__areas h2,
.host-card__collabs h2,
.host-card__url h2 {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #0F0F0F;
  margin-bottom: 10px;
}
.host-card__list {
  list-style: none;
  padding: 0;
}
.host-card__list li {
  padding: 6px 0;
  border-bottom: 1px solid #F0F0F0;
  font-size: 15px;
}

/* ---- Screen End (Footer) ---- */
.screen-end {
  background: #0F0F0F;
  padding: 20px 24px;
  text-align: center;
  color: #909090;
  font-size: 13px;
}
.screen-end a { color: #FF0000; }

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .vidbar__inner { flex-direction: column; gap: 10px; text-align: center; }
  .vidbar__tabs { justify-content: center; }
  .episode-hero h1 { font-size: 22px; }
  .episode__name { font-size: 22px; }
  .playlist .episode__name { font-size: 17px; }
  .screen { padding: 0 16px 40px; }
}
