
      .dropdown {
        width: 90%;
        max-width: 600px;
        margin: 50px auto;
      }

      .section {
        background-color: #f0f0f0;
        margin-bottom: 10px;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
      }

      .section input { display: none; }

      .section label {
        display: block;
        padding: 10px;
        background-color: #ccc;
        cursor: pointer;
        font-weight: bold;
      }

      .section label .icon {
        width: 100px;
        height: 100px;
        vertical-align: middle;
        margin-right: 10px;
      }

      .section-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background-color: #fafafa;
        padding-left: 15px;
      }

      .section input:checked ~ .section-content {
        max-height: 500px;
        padding: 10px 15px;
      }

      .section-content p {
        margin-bottom: 10px;
        font-style: normal;
        color: #111;
      }

      .section-content a {
        display: block;
        padding: 5px 0;
        color: #333;
        text-decoration: none;
      }

      .section-content a:hover { text-decoration: underline; }
      
   .lore-box {
      border: 6px double #5a3e1b;
      padding: 25px 30px;
      margin: 30px auto;
      width: 90%;
      max-width: 800px;
      border-radius: 12px;
      background: #fffaf0;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
      font-family: "Tahoma", sans-serif;
      line-height: 1.7;
      color: #2c2c2c;
      position: relative;
    }

    .lore-box::before,
    .lore-box::after {
      content: "";
      display: block;
      height: 8px;
      width: 60%;
      margin: 15px auto;
      border-top: 2px dashed #5a3e1b;
      opacity: 0.7;
    }
    .lore-box::after {
      border-top: 2px dotted #5a3e1b;
      width: 40%;
    }

      h1 {
        text-align: center;
        margin-top: 40px;
        color: black;
      }

      body {
        margin: 0;
        padding: 20px;
        background: lightgreen;
        font-family: Tahoma, sans-serif;
        padding-top: 60px; /* keeps content clear of fixed menu */
      }

      .sky {
        width: 100%;
        height: 300px;
        background-color: skyblue;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
      }

     /* --- TOP MENU --- */
.top-menu {
  background-color: #e6bc63;
  padding: 0.5em 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center; /* center the menu horizontally */
  align-items: center;
}

/* Menu links */
.top-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center; /* center links inside ul */
  gap: 2em;
}

/* Hamburger adjustments */
.hamburger {
  display: none; /* only on mobile */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: absolute; /* position it on top left */
  left: 10px;
  top: 50%; /* vertically center in menu */
  transform: translateY(-50%);
  z-index: 10000; /* above everything */
}

.hamburger span {
  display: block;
  height: 4px;
  background: #000; /* color of bars */
  border-radius: 2px;
  transition: 0.3s;
}

/* Horizontal GIF marquee */
.gif-marquee {
  position: fixed;        /* keeps it always below menu */
  top: 30px;              /* adjust based on your menu height */
  left: 0;
  width: 100vw;           /* full width across the screen */
  overflow: hidden;
  background-color: #fff8e7;
  border-bottom: 3px solid #d4a74f;
  padding: 10px 0;
  z-index: 9998;          /* below menu but above content */
}

.gif-container {
  display: flex;
  flex-wrap: nowrap;
  min-width: 200%; /* ensures enough width for scrolling */
  animation: scroll-horizontal 25s linear infinite;
}

.gif-container img {
  height: 80px;
  margin: 0 15px;
  border-radius: 8px;
  flex-shrink: 0; /* prevents shrinking on mobile */
}

@keyframes scroll-horizontal {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gif-container:hover {
  animation-play-state: paused;
}

/* Push main content down so it’s not behind the marquee */
.main-content {
  margin-top: 160px; /* 60px menu + 80px marquee height + some padding */
}

@media (max-width: 768px) {
  .top-menu ul {
    display: none; /* hidden until hamburger clicked */
    flex-direction: column;
    background: #e6bc63;
    width: 100%;
    text-align: center;
    gap: 1em;
  }

  .top-menu ul.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

/* MOBILE MENU */
@media (max-width: 768px) {
  .top-menu ul {
    display: none; /* hide links by default */
    flex-direction: column;
    background: #e6bc63;
    width: 100%;
    padding: 5px 0;
    text-align: center;
    gap: 1em; /* spacing between links */
  }

  .top-menu ul.show {
    display: flex; /* shown when toggled */
  }

  .hamburger {
    display: flex; /* show hamburger on mobile */
  }
}