/* Layout cloned from the NeedGod.net skeleton. Copy is parody. */

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  background: #fff;
}

p {
  line-height: 1.6;
}

a {
  color: #1a73e8;
}

.container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px;
}

.parody-bar {
  background: #111;
  color: #f5e6a8;
  text-align: center;
  font-size: 12px;
  padding: 7px 12px;
  position: sticky;
  top: 0;
  z-index: 100000;
}

.parody-bar a {
  color: #ffe566;
}

#global-live-banner {
  background: linear-gradient(90deg, #dc2626, #f59e0b);
  text-align: center;
  padding: 12px 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: sticky;
  top: 32px;
  z-index: 99999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

#global-live-banner a {
  color: #fff !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

#global-live-banner a:hover {
  text-decoration: underline;
}

.live-pulse-white {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #fff;
  animation: pulseWhite 1.5s infinite;
}

@keyframes pulseWhite {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

header {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.header-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-right: 20px;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-right: 10px;
  border: 3px solid transparent;
  border-radius: 50%;
  display: inline-block;
  transition: border-color 0.3s ease;
}

.logo-img:hover {
  border-color: #000;
}

.logo {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin: 0;
  color: #111;
}

header nav {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  margin-top: 10px;
}

header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  font-size: 18px;
  flex-wrap: wrap;
}

header nav ul li {
  margin: 0 10px;
}

header nav ul li a {
  text-decoration: none;
  color: #333;
}

header nav ul li a:hover {
  color: #ffce00;
}

.nav-buttons {
  display: flex;
  align-items: center;
}

.btn {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  margin: 10px 5px;
  display: inline-block;
  font-weight: 700;
}

.btn-primary {
  background: #ffc112;
  color: #fff;
}

.btn-primary:hover {
  background: #e0a800;
  color: #fff;
}

.btn-secondary {
  background: #eee;
  color: #333;
}

.btn-secondary:hover {
  background: #ddd;
  color: #333;
}

.playlist-button {
  padding: 5px 10px;
  font-size: 14px;
  background-color: #0073e6;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.playlist-button:hover {
  background-color: #005bb5;
}

.episodes {
  padding: 24px 0 10px;
}

.feature-announcement {
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #93c5fd;
  padding: 20px;
  border-radius: 12px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-announcement h3 {
  margin: 0;
  color: #1e3a8a;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.announcement-badge {
  background: #3b82f6;
  color: white;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.feature-announcement p {
  margin: 0;
  color: #1e3a8a;
  font-size: 14px;
  line-height: 1.5;
}

.home-episodes-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.episode {
  flex: 1 1 calc(20% - 20px);
  min-width: 220px;
  max-width: 250px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid #eaeaea;
  text-align: left;
  overflow: hidden;
}

.gospel-john {
  display: inline-block;
  text-align: center;
  min-width: 220px;
  max-width: 250px;
}

.gospel-john img {
  width: 100%;
  border-radius: 10px;
}

.thumbnail-wrap {
  position: relative;
}

.thumbnail {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 2px 4px;
  font-size: 12px;
  border-radius: 2px;
}

.episode h3 {
  color: #1a73e8;
  font-size: 17px;
  margin: 10px 12px 4px;
}

.time-ago {
  color: #606060;
  font-size: 13px;
  margin: 0 12px;
}

.description {
  color: #606060;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  margin: 6px 12px 14px;
  font-size: 14px;
}

.more-row {
  text-align: right;
  margin: 8px 0 0;
}

.christian-images {
  padding: 20px 0;
}

.christian-images h2 {
  text-align: center;
}

.images-grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.image-item {
  width: 300px;
  background: #111;
  color: #fff;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  box-sizing: border-box;
}

.image-item p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.image-item:nth-child(1) {
  background: #1a365d;
}

.image-item:nth-child(2) {
  background: #7a1f1f;
}

.image-item:nth-child(3) {
  background: #163024;
}

.image-item:nth-child(4) {
  background: #3b2f0b;
}

.image-item:nth-child(5) {
  background: #4a2748;
}

.image-item:nth-child(6) {
  background: #1f3b2c;
}

.more-button-container {
  text-align: center;
  margin-top: 30px;
}

.social-media {
  background: #f8f8f8;
  padding: 10px 0 20px;
  text-align: center;
}

.social-media h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.social-media-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.social-media-button {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.social-media-button:hover {
  transform: scale(1.1);
}

.line-border {
  width: 80%;
  height: 1px;
  border-bottom: 1px solid #ccc;
  margin: 20px 10%;
}

.center-text {
  text-align: center;
}

.gospel-title {
  text-align: center;
  font-size: 36px;
  margin: 10px 0 16px;
}

.hero {
  background: #f8f8f8;
  padding: 10px 0 24px;
}

.hero-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-text {
  flex: 1;
  text-align: left;
  min-width: 280px;
}

.hero-text .lede {
  text-align: center;
  font-size: 20px;
}

.hero-video {
  flex: 1;
  max-width: 50%;
  min-width: 280px;
  position: relative;
}

.hero-video img {
  width: 100%;
  display: block;
  background: #000;
}

.play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 28px solid #fff;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.about,
.solution {
  padding: 15px 0;
}

.solution {
  background: #f8f8f8;
  padding: 20px 0;
}

.quote-box {
  background-color: #f2f2f2;
  border-left: 5px solid #ffce00;
  padding: 15px;
  margin: 16px 0;
  text-align: center;
}

.quote-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
  font-style: italic;
}

.about-text ul {
  list-style: disc;
  padding: 0;
  margin: 0 0 0 30px;
}

.about-text ul li {
  margin-bottom: 10px;
}

.fireball-image {
  text-align: center;
}

.fireball-image img {
  max-width: 450px;
  width: 100%;
  height: auto;
  display: inline-block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

.decision-item {
  display: flex;
  margin-bottom: 15px;
  align-items: flex-start;
  gap: 10px;
}

.mark {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 28px;
  margin-top: 2px;
}

.mark-no {
  background: #c0392b;
}

.mark-yes {
  background: #177a00;
}

.or-line {
  font-weight: 700;
  margin: 8px 0 8px 38px;
  color: #177a00;
  font-size: 25px;
}

.skipped {
  padding: 24px 0 10px;
  background: #fff;
}

.center-muted {
  text-align: center;
  color: #444;
  max-width: 720px;
  margin: 0 auto 24px;
}

.verse-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.verse {
  flex: 1 1 calc(45% - 16px);
  min-width: 280px;
  max-width: 500px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  padding: 16px 18px;
}

.verse h3 {
  color: #1a73e8;
  font-size: 17px;
  margin: 0 0 8px;
}

.verse p {
  margin: 0;
  color: #444;
  font-size: 15px;
}

.christian {
  background: #f8f8f8;
  padding: 20px 0;
}

.christian-text {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 5px 30px 20px;
  background: #fff;
}

.christian-item {
  display: flex;
  margin-bottom: 15px;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
}

.christian-item .ico {
  width: 48px;
  height: 48px;
  background: #ffc112;
  color: #111;
  font-weight: 700;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 0 0 48px;
}

.christian-item ul {
  list-style: disc;
  padding: 0;
  margin: 0 0 0 12px;
  flex: 1;
}

.questions-text p {
  font-size: 20px;
  text-align: center;
  margin: 10px 0 20px;
}

.anyquestions {
  color: #003c86;
}

.foot {
  padding: 24px 0 40px;
  font-size: 13px;
  color: #444;
  text-align: center;
}

.foot p {
  max-width: 720px;
  margin: 8px auto;
}

@media (max-width: 700px) {
  header nav ul {
    flex-direction: column;
    align-items: center;
  }

  header nav ul li {
    margin: 5px 0;
  }

  .hero-video {
    max-width: 100%;
  }

  .logo {
    font-size: 22px;
  }
}
