/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  @font-face {
    font-family: 'Newake';
    src: url('fonts/Newake-Font-Demo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  
  html, body {
    height: 100%;
    font-family: 'Newake', sans-serif;
    color: white;
    overflow: hidden;
    scroll-behavior: smooth;
  }
  
  /* Ensuring Newake is used globally */
  body, h1, h2, h3, h4, h5, h6, p, a, li, button, input, textarea {
    font-family: 'Newake', sans-serif;
  }
  
  /* Background video and overlay */
  #bg-video {
    width: 120vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: -10vw;
    z-index: -2;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("../images/web gradient.png");
    background-size: cover;
    background-position: center;
    opacity: 0.85;
    z-index: -1;
    pointer-events: none;
  }
  
  /* Header (restored original look) */
  .header {
    position: absolute;
    top: 2rem;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    z-index: 1000;
    background: transparent;
  }
  
  .header ul {
    list-style: none;
    display: flex;
    gap: 20rem;
  }
  
  .header a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 1rem 3rem;
    font-size: 1.5rem;
    background: transparent;
    transition: background 0.3s, color 0.3s;
  }
  
  .header a:hover {
    background-image: url("../images/web gradient.png");
    background-size: cover;
    background-position: center;
    color: rgb(255, 255, 255);
  }
  
  .snap-container {
    height: 100vh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
  }
  
  .snap-section {
    scroll-snap-align: start;
    min-height: 100vh;
    padding: 8rem 2rem;
    z-index: 1;
    position: relative;
  }
  .adbuttons {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  
  /* Grid Layout */
.button-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  row-gap: 2rem;
  column-gap: 2rem;
  width: 100%;
  max-width: 1000px;
  padding: 6rem 2rem;
  box-sizing: border-box;
  justify-items: center;
  align-items: center;
  position: relative;
}

/* All buttons same size */
.button-grid a {
  width: 100%;
  max-width: 460px;
  display: block;
}

/* Third button centered */
.button-grid a:nth-child(3) {
  grid-column: 1 / 3;
  justify-self: center;
  margin-top: 0;
}

/* Ensure all images are exactly the same size */
.button-grid img {
  width: 100%;
  aspect-ratio: 2.39 / 1;
  height: auto;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}
  
  .button-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.5);
    cursor: pointer;
  }
  /* Popup styling */
  .popup {
    position: fixed;
    top: 5%;
    left: 5%;
    width: 90vw;
    height: 90vh;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .popup:target {
    display: flex;
  }
  
  .popup-content {
    background: #111;
    padding: 2rem;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    color: white;
    overflow-y: auto;
    position: relative;
    box-sizing: border-box;
  }
  
  .popup-content iframe {
    width: 100%;
    height: 360px;
    border-radius: 10px;
    margin-top: 1rem;
  }
  
  .close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: white;
    text-decoration: none;
    z-index: 10000;
  }
  
  /* Video info toggle */
  .video-info {
    list-style: none;
    padding: 1rem;
    margin-top: 1rem;
    background-color: #1a1a1a;
    border-radius: 8px;
    font-size: 1rem;
    color: #f0f0f0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    max-height: 1000px;
    opacity: 1;
  }
  
  .video-info.hidden {
    max-height: 0;
    opacity: 0;
    padding: 0;
    margin-top: 0;
    transition: all 0.3s ease;
  }
  
  .toggle-info-button {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  
  .toggle-info-button .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  .toggle-info-button.open .arrow {
    transform: rotate(180deg);
  }
  
  /* Footer */


  .footer {
    width: 100%;
    background: rgba(0, 0, 0, 0); /* fully transparent */
    color: white;
    padding: 20px 40px;
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    z-index: 10;
  }
  
  .footer:hover {
    background: rgba(0, 0, 0, 0.7); /* fade in black on hover */
  }
  
  
  
  .footer-buttons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  .icon-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .icon-buttons p {
    position: absolute;
    left: 48.5%;
    transform: translateX(-50%);
    font-size: 12px;
    white-space: nowrap;
    text-align: center;
  }
  
    .footer-icon {
    width: 24px;
    height: 24px;
  }
  .reach-out-btn {
    background: none;
    border: 2px solid white;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    font-family: inherit;
    font-size: 14px;
    transition: background 0.3s, color 0.3s;
  }
  
  .reach-out-btn:hover {
    background: white;
    color: black;
  }
  
  .icon-buttons p {
    margin-left: 20px;
    font-size: 12px;
    white-space: nowrap;
  }
  
  /* Scrollbar styles */
  ::-webkit-scrollbar {
    width: 12px;
    height: 12px;
  }
  
  ::-webkit-scrollbar-track {
    background: #1a1a1a;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 6px;
    border: 3px solid #1a1a1a;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #777;
  }
  
  * {
    scrollbar-width: thin;
    scrollbar-color: #555 #1a1a1a;
  }
  
  .sportsbuttons-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .indented-paragraph {
    text-indent: 2em;       /* Creates a tab-like indent at start */
    margin-bottom: 1.5rem;  /* Adds space between paragraphs */
    line-height: 1.6;       /* Improves readability */
  }

  .image-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .image-gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  }

  .poster-gallery {
    display: flex;
    flex-wrap: nowrap;        /* keep 3 on the same line */
    justify-content: center;
    gap: 1rem;                /* smaller space between images */
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 4rem;
    overflow-x: hidden;
  }
  
  .poster-gallery img {
    flex: 1 1 32%;            /* make each image slightly wider */
    max-width: 32%;
    height: 400px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  }
  .ad-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  .ad-gallery img {
    flex: 1 1 45%;
    max-width: 45%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  }
  