/*MAIN STYLING*/
    table {
      width: 800px;
      margin: 0 auto;
    }

    body {
      background: #444 url(https://i.ibb.co/tDDnQfL/misc166.gif) fixed;
      font-family: 'lato', verdana, arial;
      font-size: 13px;
      color: #666;
      letter-spacing: 1px;
      line-height: 15px;
      overflow-x: hidden;
    }
    
    body a {
     color: #F527C8;
    }

    h1 {
      font-family: 'silkscreen', monospace;
      font-size: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      line-height: 1;
      text-decoration: none;
      
    }

    .header {
      background: #000 url(https://i.postimg.cc/6qGpNPzM/taifunome.jpg) fixed;
      color: #BCACCC;
      text-align: center;
      border-top-right-radius: 30px;
      border-top-left-radius: 30px;
      border: 2px solid #444;
      border-bottom: 0;
    }

    .header-title {
      font-size: 28px;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      line-height: 1;
    }
    
    .header a {
      font-family: 'silkscreen', monospace;
      font-size: 20px;
      text-decoration: underline;
      color: #fff;
      letter-spacing: 3px;
    }

    .navigation {
      background: #FFF;
      margin-top: 0;
      border-top: 1px solid #111;
      border-bottom: 1px solid #111;
    }

    .navigation a {
      display: inline-block;
      background: transparent;
      text-align: center;
      margin: 8px;
      margin-left: 10px;
      margin-right: 5px;
      padding: 0px 0;
      font: 14px 'silkscreen', arial;
      line-height: 8px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #444;
      width: 75px;
    }

    .navigation a:hover {
      background: #f0f0f0;
      color: #000;
    }

    .icon {
      margin: 4px 2px;
    }

    .marquee {
      background: #444;
      color: #ddd;
      font: 9px 'silkscreen', verdana;
      padding: 2px;
    }

    .leftside, .content, .rightside {
      background: #FFF url();
    }

    .leftside, .content {
      border-right: 2px solid #444;
    }
    
    .left-container {
     display: flex;
     justify-content: center;
     align-items: center; /* optional, vertical */
     flex-direction: column;
    }


    .footer {
      background: black;
      border-top: 1px solid #111;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      line-height: 20px;
    }

    .footer a {
      color: #F527C8;
      font-size: 12px;
      text-align: center;
    }
    

    .title {
      font: 15px 'silkscreen', verdana;
      color: #666666;
      letter-spacing: 1px;
      text-align: left;
      padding: 0 0 0 4px;
      margin-bottom: 4px;
      text-transform: uppercase;
      background: #eee;
      border-bottom: 1px solid #ddd;
    }
    
    .large {
      text-align: center;
      font-size: 90px;
      margin: 15px;
    }
    
    .listed li {
      margin-left: 40px;
      line-height: 26px;
    }
    
    .note {
     text-align: center;
     font-style: italic;
     font-size: 11px;
     margin: 10px;
     }
     
    .details {
      font-size: 15px;
      margin: 6px;
      text-align: center;
      position: relative;
      top: 0;
      animation: bounce 0.3s ease infinite alternate;
    }
      @keyframes bounce {
      100% {
      top: -.2rem;
    }
    }
    
    
    
    
    
    
    
    
    
    
/*SPACING SPACING SPACING*/
    
    
    
    
/*DROP DOWN MENU*/
    .dropdown {
      position: relative;
      display: inline-block;
    }

/* Main button */
    .dropbtn {
      display: inline-block;
      background: transparent;
      text-align: center;
      margin-bottom: 2px;
      margin-right: 4px;
      padding: 2px 0;
      font: 18px 'silkscreen', arial;
      line-height: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #444;
      width: 100px;
    }

/* Dropdown content */
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #fff;
      border: 1px solid #aaa;
      min-width: 110px !important;
      z-index: 999;
    }

/* Links inside dropdown */
    .dropdown-content a {
      color: #444;
      padding: 8px 2px;
      text-decoration: none;
      display: block;
      font-family: 'silkscreen', arial;
      font-size: 12px !important;
      text-align: left;
      background: #fff;
      margin: 0;
    }

/* Hover states */
    .dropdown-content a:hover {
      background-color: #f0f0f0;
      color: #000;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    .dropdown:hover .dropbtn {
      background-color: #f0f0f0;
      color: #000;
    }

    
    






/*cursor */
body, a, button, input, textarea {
  cursor: url(https://cur.cursors-4u.net/holidays/hol-4/hol335.cur), auto;
}



/*stamp scroller*/
.stamp-autoscroll {
  height: 430px;
  overflow: hidden;
  position: relative;
}

.scroll-inner {
  display: flex;
  flex-direction: column;
  animation: scroll-up 20s linear infinite;
}

.scroll-inner img {
  width: 88px;
  height: auto;
  margin: 4px auto;
  display: block;
}

@keyframes scroll-up {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}



/* header for consistency*/
h1 {
    font-size: 2em;
    color: #fff;
    text-decoration: underline;
}

/*drop down button*/
    .dropdown {
      position: relative;
      display: inline-block;
    }

/* Main button */
    .dropbtn {
      display: inline-block;
      background: transparent;
      text-align: center;
      margin-bottom: 2px;
      margin-right: 4px;
      padding: 2px 0;
      font: normal 9px 'silkscreen', arial;
      line-height: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #444;
      width: 75px;
    }

/* Dropdown content */
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #fff;
      border: 1px solid #aaa;
      min-width: 110px;
      z-index: 999;
    }
    
    .dropdown-content a {
      padding: 6px 12px;
      }


/* Links inside dropdown */
    .dropdown-content a {
      color: #444;
      padding: 8px 6px;
      text-decoration: none;
      display: block;
      font: normal 8px 'silkscreen', arial;
      text-align: left;
      background: #fff;
    }

/* Hover states */
    .dropdown-content a:hover {
      background-color: #f0f0f0;
      color: #000;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    .dropdown:hover .dropbtn {
      background-color: #f0f0f0;
      color: #000;
    }
    
    
    
/*gallery and lightbox*/
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.lightbox-thumb {
  max-width: 250px;
  height: auto;
  border: 0px solid #444;
  object-fit: contain;
}

.lightbox-overlay {
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(2px);
  justify-content: center;
  align-items: center;
}

.lightbox-overlay.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  color: white;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 0 10px #000;
  border: 2px solid white;
}

.lightbox-caption {
  margin-top: 10px;
  color: #ddd;
  font-family: lato;
  font-size: 1;
}

.lightbox-content img {
  transform: scale(0.95);
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.lightbox-overlay.show .lightbox-content img {
  transform: scale(1);
}

