  <style>
    * {
      box-sizing: border-box;
      
    }

   html, body {
     margin: 0;
     padding: 0;
     width: 100%;
     overflow-x: hidden;
     box-sizing: border-box;   
     font-family: Arial, sans-serif;
     background: black;
     background-image: url('../images/bg.png');
     background-position: center center;
     background-repeat: no-repeat;
     background-size: cover;
     background-attachment: fixed;  /* Optional: creates a parallax effect */
     color: #fff;
    }
*, *::before, *::after {
  box-sizing: inherit;
}

    .container {
      max-width: 1270px;
      margin: 0 auto;
      padding: 0 16px;
    }

    header {
      background: #000;
      padding: 10px 5px;
    }

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1000;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}

    .logo {
     width: 100%;
     max-width: 350px;
     height: auto;
     display: block;
    }
    .nav-links {
      display: flex;
      gap: 20px;
    }

    .nav-links a {
      padding-top: 10px;    
      color: white;
      font-family: "Oswald", sans-serif;   
      position: relative;
      transition: color 0.3s ease;    
      text-transform: uppercase;    
      text-decoration: none;
      font-size: 16px;
    }

.nav-links a:not(.join-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: #ff4d4d;
  transition: width 0.3s ease;
}

.nav-links a:not(.join-btn):hover {
  color: #ff4d4d;
}

.nav-links a:not(.join-btn):hover::after {
  width: 100%;
}

/* Buffering Overlay */
#buffer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Spinner Style */
.spinner {
  width: 50px;
  height: 50px;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #ff4d4d;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

  
.join-btn {
  background-color: deeppink;      /* initial color */
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.join-btn:hover {
  background-color:deepskyblue;     /* darker red on hover */
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}


    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .menu-toggle div {
      width: 25px;
      height: 3px;
      background: white;
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
      }

      .nav-links.active {
        display: flex;
      }

      .menu-toggle {
        display: flex;
      }
    }

    .section {
      padding: 30px 0;
    }

    .section h2 {
      text-transform: uppercase;
      font-family: "Oswald", sans-serif;      
      font-size: 22px;
      letter-spacing: 1px;
      margin-bottom: 20px;
    }

    .highlight {
      color: #00bfff;
    }

 .grid {
  display: grid;
  grid-template-columns: repeat(4, 307px); /* Fixed columns on desktop */
  grid-auto-rows: 230px; /* Height of horizontal box */
  gap: 10px;
  justify-content: center;
}

.box {
  position: relative;
  overflow: hidden;
 
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.box:hover .overlay {
  opacity: 1;
}

.play-button svg {
  transition: transform 0.3s ease;
}

.box:hover .play-button svg {
  transform: scale(1.1);
}
 .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Horizontal box: 307 x 230 */
.horizontal {
  width: 100%;
  height: 100%;
}

/* Vertical box: 307 x 470 (spans 2 rows) */
.vertical {
  width: 100%;
  grid-row: span 2;
  height: 100%;
}
/* Wrapper to constrain width */
.peach-grid-wrapper {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 0px; /* Optional padding on smaller screens */
}

/* Grid setup for peach boxes */
.peach-grid {
  display: grid;
  grid-template-columns: repeat(4, 300px);
  grid-auto-rows: 468px;
  gap: 10px;
  justify-content: center;
}
.site-grid {
  display: grid;
  grid-template-columns: repeat(4, 300px);
  grid-auto-rows: 250px;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;    
}

.box.site {
  background-color: #d7d7d7;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
/* Peach box styling */
.box.peach {
  background-color: #f7bfa0;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.centered-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px; /* optional spacing */
}

.responsive-centered-image {
  max-width: 100%;
  border-radius: 15px; 
  border: 4px solid black; /* Black outline */    
  height: auto;
  display: block;
}
.peach-link {
  position: relative;
  display: block;
  overflow: hidden;
}

.peach-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play Button */
.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

/* New Hover Details */
.hover-details {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  pointer-events: none;
}

.hover-text-left {
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
}

.hover-timestamp {
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
}

/* Show on hover */
.peach-link:hover .hover-details {
  opacity: 1;
}
/* Wrapper keeps video centered and allows padding adjustments */
.video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start; /* Push left */
  align-items: center;
  overflow: hidden;
}

/* Vertical video resized and positioned */
.video-wrapper video {
  height: 100%;
  width: auto;
  object-fit: cover;
  transform: translateX(-20px); /* Adjust to show right part of video */
}

/* Mobile-only caption */
.mobile-caption {
  display: none;
  font-size: 22px;
  font-family: "Oswald", sans-serif;      
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 4px 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}


 @media (max-width: 1280px) {
   .grid {
    grid-template-columns: repeat(auto-fit, minmax(307px, 1fr));
    grid-auto-rows: auto;
  }

  .horizontal,
  .vertical {
    aspect-ratio: 307 / 230;
  }

  .vertical {
    aspect-ratio: 307 / 470;
    grid-row: auto;
  }
    }

    .section-banner {
      font-family: "Oswald", sans-serif; 
      text-align: center;
      text-transform: uppercase;    
      padding:20px 0 10px 0px;
      font-weight: bold; 
      color: yellow;
      font-size: 42px;
      margin: 40px 0 20px;    
    }

  .sites-banner {
      font-family: "Oswald", sans-serif; 
      text-align: center;
      text-transform: uppercase;    
      padding:5px 0 20px 0px;
      line-height: 40px; 
      font-weight: 500;
      color: yellow;
      font-size: 38px;
    }

    .banner-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 10px;
      padding: 20px 0;
    }

.carousel-container {
  position: relative;
  max-width: 1270px;
  margin: auto;
  overflow: hidden;
  padding: 20px;
}
.carousel-container *,
.carousel-container *:hover,
.carousel-container *:focus,
.carousel-container *:active {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}
*:focus:not(:focus-visible) {
  outline: none;
}

.carousel-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-track {
  scroll-behavior: smooth;
  transition: scroll 0.3s ease-in-out;
}

.peach-box {
  flex: 0 0 auto;
  width: 307px;
  height: 468px;
  border-radius: 8px;
  scroll-snap-align: start;
     
}


.peach-box a {
  display: block;
  width: 100%;
  height: 100%;
}
.peach-box a {
  position: relative;
  z-index: 2;
}

.peach-box img {
  display: block;
  width: 100%;
  height: 100%;
   object-fit: cover;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.peach-box img,
.peach-box a,
.peach-box a:focus,
.peach-box a:active,
.peach-box a:hover,
.peach-box:focus-within {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
 text-decoration: none;
}

.peach-box:hover img {
  transform: scale(1.05);
}

/* Optional dark hover overlay */
.peach-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  z-index: 1;
}

.peach-box:hover::after {
  background: rgba(0, 0, 0, 0.2);
}


.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
  border-radius: 4px;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-track:hover {
  cursor: grab;
}

.carousel-btn:focus,
.carousel-btn:active,
.peach-box img:focus,
.peach-box img:active {
  outline: none;
  border: none;
  box-shadow: none;
}
 .peach-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: auto;
  }
 .site-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: auto;
  }

  .box.peach {
    aspect-ratio: 300 / 468;
  }
.box.site {
    aspect-ratio: 300 / 223;
  }

    .cta-bar {
      text-align: center;
      padding: 30px;
    }

    .cta-button {
      font-family: "Oswald", sans-serif;     
      background: linear-gradient(to bottom, #00274d, #00aaff);
      color: white;
      font-size: 40px;
      font-weight: bold;
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .cta-button span {
      color: yellow;
    }

    .background-image {
      background: #52ccf2;
      text-align: center;
      padding: 100px 20px;
      font-size: 24px;
      font-weight: bold;
      color: #000;
      font-style: italic;
    }

    footer {
      background: #000;
      padding: 30px 20px;
      text-align: center;
      font-size: 12px;
      color: #aaa;
    }

    footer .logo {
      font-size: 20px;
      margin-bottom: 10px;
      color: #000;
      padding: 10px 20px;
      display: inline-block;
      font-style: italic;
    }
 @media (max-width: 768px) {
 .carousel-container {
    padding: 0 10px;
  }
.peach-box {
    min-width: calc(100% - 20px); /* allow for padding/gap */
  }

  .box.image-with-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile-caption {
    display: block;
    font-size: 20px;
    color: #fff;
    margin-top: 12px; /* Moves caption lower */
    text-align: center;
    padding: 0 15px;
    line-height: 1.4;
  }

  .hover-details {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    padding: 0 10px;
    font-size: 12px;
    color: #fff;
    pointer-events: none;
  }

     
}

  </style>