<style>
    * {
      box-sizing: border-box;
      
    }
html {
  scroll-behavior: smooth;
}

   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: black;
      padding: 10px 5px;
    }
/* Welcome Banner */
.welcome-banner {
 background: #b0375f;
background: linear-gradient(90deg,rgba(176, 55, 95, 1) 0%, rgba(189, 11, 11, 1) 50%, rgba(252, 136, 69, 1) 100%);
  padding: 15px;
  text-align: left;
  margin-top: 16px;
  margin-bottom: 20px;    
  border-radius: 6px;
}

.welcome-banner h2 {
  margin: 0 0 5px 0;
  font-size: 20px;
  color: #fff;
}

.welcome-banner p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;    
  color: #cccccc;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background: white;
}

    .logo {
     width: 100%;
     max-width: 250px;
     height: auto;
     display: block;
    }
 .nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  padding-top: 10px;    
  color: #e82b23;
  font-family: "Bebas Neue", sans-serif;  
  position: relative;
  transition: color 0.3s ease;    
  text-transform: uppercase;    
  text-decoration: none;
  font-size: 22px;
}

.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); }
}
/* ===== Promo Join Section ===== */
.join-banner {
  background: #e01947;
  background: linear-gradient(136deg,rgba(224, 25, 71, 1) 0%, rgba(199, 154, 87, 1) 56%, rgba(245, 112, 71, 1) 100%);
  padding: 10px 5px;
  text-align: center;
  margin: 50px auto;
  border-radius: 6px;
}
.join-banner {
  background: #e01947;
  background: linear-gradient(136deg,rgba(224, 25, 71, 1) 0%, rgba(199, 154, 87, 1) 56%, rgba(245, 112, 71, 1) 100%);
  margin: 30px 0 30px 0;    
}

.join-banner .join-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 15px 0 15px 0;    
  gap: 15px;
border-radius: 6px;    
}

.join-banner .join-text {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.join-banner .join-button {
  background: #fff;
  color: #ff7a00;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 20px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.join-banner .join-button:hover {
  background: #f0f0f0;
}

  
.join-btn {
  background: linear-gradient(135deg, #ffd54a, #ff7a00);
  color: #000;
  margin-top: 10px;    
  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);
}
 
.section {
      padding: 0px 0;
    }

    .section h2 {
      text-transform: uppercase;
      font-family: "Oswald", sans-serif;      
      font-size: 22px;
      letter-spacing: 1px;
      margin-bottom: 20px;
    }

    .highlight {
      color: orangered;
    }

 .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;    
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 300px);
  grid-auto-rows: 250px;
  gap: 0px;
  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);
}
.site-wrapper {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background-color: #d7d7d7;
  border-radius: 8px;   
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);    
}

.site-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.site-link:hover .overlay {
  opacity: 1;
  pointer-events: auto;
}

.play-button {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 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;
border-radius: 8px;    
}

.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;   
      line-height: 43px;    
      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;
  }
 .bonus-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) {

  .nav-container {
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background:#42acf3;
    padding: 10px 0;
    margin-top: 20px; /* Push below the logo and toggle */
    text-align: left;
  }

  .nav-links.active {
    display: flex;
    gap: 5px;  
  }

  .nav-links a {
    padding: 10px 20px;
    color: white;
    text-decoration: none;
  }

 .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;
  }
     
}
@media (max-width: 430px) {
    .join-banner .join-text {
        margin: 0  auto; 
        font-size: 15px;
        font-weight: 600;
        align-items: center;
        text-align: center;
    }
    .join-banner .join-button {
       text-align: center; 
    margin: 0  auto;    
    }
}
@media (max-width: 412px) {
    .join-banner .join-text {
        margin: 0  auto; 
        font-size: 15px;
        font-weight: 600;
        align-items: center;
        text-align: center;
    }
    .join-banner .join-button {
       text-align: center; 
    margin: 0  auto;    
    }
}
@media (max-width: 375px) {
    .join-banner .join-text {
        margin: 0  auto; 
        font-size: 15px;
        font-weight: 600;
        align-items: center;
        text-align: center;
    }
    .join-banner .join-button {
       text-align: center; 
    margin: 0  auto;    
    }
}

  </style>