/* =========================
   Yahweh’s Circus theme
   neon carnival / stage lights
   ========================= */

body.circus {

  color: rgba(255,255,255,0.92);
  background: #05050a;

  /* swirling carnival glow + subtle grid */
  background-color: #07070a;
  background-image: url("./YahwehsCircus.png");
  background-repeat: no-repeat;       
  background-size: cover;
  background-position: center;
  background-attachment: fixed;  

  max-width: 950px;
  margin: 0 auto;
  padding: 54px 22px;

  font-family: "IBM Plex Sans", sans-serif;
  line-height: 1.7;
}

body.circus header {
  margin-bottom: 26px;
}

body.circus h1 {
  font-family: "Henny Penny", system-ui;
  color: lime !important;
  -webkit-text-fill-color: lime !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  font-size: 72px;
  letter-spacing: 1px;
  margin: 0 0 8px;
  text-shadow: none;
}

body.circus h2 {
   font-family: "Henny Penny", system-ui;
   color: lime !important;
  -webkit-text-fill-color: lime !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  font-size: 34px;
  margin: 44px 0 12px;
  letter-spacing: 0.5px;
   text-shadow: none;
}

body.circus p {
  margin: 0 0 14px;
}

body.circus a {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid rgba(255,255,255,0.32);
  padding-bottom: 2px;
}

body.circus a:hover {
  border-bottom-color: rgba(255, 70, 190, 0.85);
}


body.circus section {
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 18px 18px;
  margin-top: 16px;
  box-shadow: 0 18px 70px rgba(0,0,0,0.35);
}


body.circus header {
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

/* Video frame */
body.circus .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;

  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 0 0 6px rgba(0,0,0,0.25),
    0 0 28px rgba(90, 220, 255, 0.10),
    0 0 28px rgba(255, 70, 190, 0.10);
}

body.circus .video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}


body.circus .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}

body.circus .gallery img {
  width: 100%;
  height: auto;
  display: block;

  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 5px rgba(0,0,0,0.25),
    0 0 18px rgba(255, 70, 190, 0.10);
  image-rendering: pixelated;
}

/* Lists */
body.circus ul, body.circus ol {
  margin: 10px 0 0 22px;
}

body.circus code {
  font-family: "Henny Penny", system-ui;
  font-size: 1.05em;
  padding: 0 6px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
}

/* Mobile */
@media (max-width: 800px) {
  body.circus {
    padding: 28px 14px;
  }

  body.circus h1 {
    font-size: 46px;
  }

  body.circus h2 {
    font-size: 26px;
  }

  body.circus .gallery {
    grid-template-columns: 1fr;
  }
}
