  <style>
    body {
      background-color: #fdf6e3;
      font-family: Arial, sans-serif;
      color: #222;
      margin: 0;
      padding: 0;
    }
html, body {
  margin: 0;
  padding: 0;
  background-color: #fdf6e3; /* same beige as your site */
}

    #top-bar-container {
      background-color: #eee8d5;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 2px solid #ccc;
    }

    #watermark {
      height: 40px;
    }

    #nav-links {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    #nav-links a, .dropbtn {
      text-decoration: none;
      color: #222;
      font-weight: bold;
      font-size: 1.1em;
      padding: 6px 10px;
    }

    #nav-links a:hover, .dropbtn:hover {
      background-color: #ddd;
      border-radius: 4px;
    }

    .dropdown {
      position: relative;
      display: inline-block;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #fdf6e3;
      border: 1px solid #ccc;
      box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      min-width: 200px;
    }

    .dropdown-content a {
      display: block;
      color: #222;
      padding: 10px 16px;
      text-decoration: none;
    }

    .dropdown-content a:hover {
      background-color: #eee;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    .section {
      padding: 0px 0px;
    }

    .section-title {
      background-color: #fdf6e3;
      font-size: 2em;
      margin-bottom: 20px;
    }

    #banner {
      text-align: center;
      background-color: #fdf6e3;
      width: 60%;
      display: block;
      margin: 0px auto;
      padding: 0px 0;

    }

#banner img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  background-color: #fdf6e3;
}
     #main-content {
     background-color: #fdf6e3;
    } 

#character-grid {
  padding: 40px 20px;
  background-color: #fdf6e3;
  color: #222;
  text-align: center;
}

#character-grid h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.character-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  gap: 40px;
}

.character-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 45%;
  max-width: 600px;
  background-color: #fdf6e3;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #444;
  text-align: left;
  transition: transform 0.2s;
}

.character-block:hover {
  transform: scale(1.02);
}

.character-block img {
  width: 100px;
  height: auto;
  border-radius: 6px;
  margin-right: 20px;
}

.character-block p {
  font-size: 0.95em;
  line-height: 1.4;
}

.character-block.empty {
  visibility: hidden;
}

#character-profile {
  padding: 40px 20px;
  background-color: #fdf6e3;
  color: #222;
  max-width: 900px;
  margin: 0 auto;
}

.character-header.bracketed {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: wrap;
}

.character-header.bracketed .character-info {
  flex: 1;
  text-align: center;
}

.side-image {
  width: 160px;
  height: auto;
  border-radius: 10px;
  border: 1px solid #444;
}

@media (max-width: 768px) {
  .character-header.bracketed {
    flex-direction: column;
    align-items: center;
  }

  .side-image {
    margin: 10px 0;
  }
}

.character-info h1 {
  font-size: 2.2em;
  margin: 0;
}

.tagline {
  font-style: italic;
  font-size: 1.1em;
  color: #444;
  margin-top: 10px;
}

.character-bio h2,
.character-links h2 {
  font-size: 1.5em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.character-bio p {
  font-size: 1em;
  line-height: 1.6;
}

.character-links ul {
  list-style-type: disc;
  padding-left: 20px;
}

.character-links li {
  margin-bottom: 10px;
}

.character-links a {
  color: #0066cc;
  text-decoration: none;
}

.character-links a:hover {
  text-decoration: underline;
}

#tube-container {
  display: flex;
  background-color: #fdf6e3;
  margin: 10px auto;
  max-width: 1200px;
}

#tube-main {
  flex: 3;
  margin-right: 20px;
}

#tube-sidebar {
  flex: 1;
  background-color: #fdf6e3;
  padding: 10px;
  border: 4px solid #ccc;
  text-align: center;
}

#tube-sidebar h3 {
  text-align: center;
  margin-bottom: 10px;
}

#tube-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#tube-sidebar li {
  margin-bottom: 10px;
  display: block;
}

#tube-sidebar img {
  display: block;
  width: 140px;
  height: auto;
  margin: 0 auto 0px auto;
  border: 2px solid #333;
}
#tube-sidebar p {
  margin: 5px 0 10px 0;  /* tighten top spacing */
  line-height: 1.2;      /* pulls text closer to image */
}

#tube-sidebar a {
  color: #000;              /* or match your body text color */
  text-decoration: none;    /* kill the underline */
}

#tube-sidebar a:hover {
  text-decoration: underline; 
}

    .merch-row {
      display: flex;
      gap: 30px;
      background-color: #f5f5dc;
      padding: 30px 20px;
      border-top: 2px solid #ccc;
      border-bottom: 2px solid #ccc;
    }

    .merch-item {
      flex: 1;
      text-align: center;
    }

    .merch-item img {
      max-width: 100%;
      height: auto;
    }

    .merch-item p {
      font-weight: bold;
      margin-top: 10px;
    }

#character-resources {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #444;
  background-color: #fdf6e3;
  color: #222;
}

.resource-section {
  margin-bottom: 0px;
  text-align: center;
}

.resource-section h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #222;
}

.resource-section ul {
  list-style: none;
  padding: 0;
}

.resource-section li {
  margin-bottom: 0px;
}

.resource-section a {
  color: #771177;
  text-decoration: none;
  font-weight: bold;
}

.resource-section a:hover {
  text-decoration: underline;
}

.youtube-embed {
  display: flex;
  justify-content: center;
  margin-top: 20px;
background-color: #fdf6e3;
  padding: 20px 0;
  margin: 0 auto;
  border: none;
}



/* House banner section */
.house-banner {
  background-color: #fdf6e3;  /* matches the site background */
  text-align: center;
  overflow: hidden;
  padding: 0px 0;
}
.house-banner img {
    display: block;
  height: 100px !important;   
  width: auto;     
  object-fit: contain; 
  margin: 0 auto;  /* centers it */
}
.house-motto {
  font-size: 1.8em;
  font-weight: bold;
  text-align: center;
  margin: 0px 0 0px 0;
  color: #000;
  letter-spacing: 2px;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.house-section {
  background-color: #fdf6e3;
  padding: 0px;
}

}
    footer {
      background-color: #eee8d5;
      color: #444;
      text-align: center;
      padding: 20px;
      font-size: 0.9em;
      border-top: 1px solid #ccc;
    }

    footer a {
      color: #444;
      text-decoration: underline;
    }

  </style>