/* --- General & Variables --- */
:root {
    --text-color: #000000;
    --text-color2: #ffffff;
    --bg-color: #ffffff;
    --primary-color: #111111;         /* black (for buttons, header backgrounds, etc.) */
    --secondary-color: #888888;       /* grey (for hover, accents, soft highlights) */
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-title: 'Georgia', serif;
  }
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  img {
    max-width: 100%;
  }
  
  .section-title {
      text-align: center;
      font-family: var(--font-title);
      font-size: 2.5rem;
      margin-bottom: 40px;
      color: #000000;
  }
  
  /* --- Hamburger Menu Styles --- */
  
  /* Style the button itself */
  .nav-toggle {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* This is your existing media query, we will modify it */
  @media (max-width: 768px) {
    /* Show the hamburger button on mobile */
    .nav-toggle {
      display: block;
      position: absolute; /* Position it relative to the header */
      top: 25px;
      right: 20px;
      z-index: 1001; /* Ensure it's above other content */
    }
  
    /*
    Instead of hiding the nav, we turn it into a hidden vertical menu
    that sits below the header.
    */
    .main-nav {
      position: absolute;
      top: 100%; /* Start right below the header */
      left: 0;
      width: 100%;
      background-color: var(--primary-color); /* Same as header background */
  
      /* Hide the menu with a max-height of 0 */
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out; /* Smooth transition */
    }
  
    /* This class will be toggled by JavaScript to show the menu */
    .main-nav.nav-open {
      max-height: 500px; /* A height large enough to show all items */
    }
  
    /* Stack the navigation links vertically */
    .main-nav ul {
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
    }
  
    /* Add space between the vertical links */
    .main-nav ul li {
      margin: 15px 0;
      margin-left: 0; /* Remove the horizontal margin */
    }
  }
  
  /* --- Header --- */
  main {
  padding-top: 80px; /* adjust based on your header height */
}
  .main-header {
    background-color: var(--primary-color); /* Was rgba(0, 0, 0, 0.8) */
    padding: 1rem 0;
    width: 100%;
    z-index: 1000;
    position: fixed;
  }
  
  .main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .main-header .logo img {
    height: 50px;
  }
  
  .main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
  }
  
  .main-nav ul li {
    margin-left: 25px;
  }
  
  .main-nav a {
    color: var(--text-color2);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .main-nav a:hover {
    color: var(--secondary-color);
  }
  
  .btn {
      display: inline-block;
      padding: 10px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: transform 0.2s ease;
  }
  
  .btn-primary {
      background-color: rgb(0, 26, 255);
      color: white;
  }
  
  .btn:hover {
      transform: translateY(-2px);
  }
  
  /* --- Hero Section --- */
  .hero-banner {
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .full-width-banner {
    width: 100%;    /* Stretches the image to the full width of the screen */
    height: auto;   /* Adjusts height automatically to maintain aspect ratio */
    display: block; /* Removes any extra space below the image */
  }
  
  .hero-banner-logo {
    width: 60%;
    max-width: 500px;
  }

  .download-column .subtext {
    font-size: 1rem;
    margin-top: -15px;
    margin-bottom: 30px;
    font-weight: normal;
  }
  
  /* --- Video & Download Section --- */
  .video-section {
    padding: 80px 0;
    background-color: var(--bg-color);
  }
  
  .video-download-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Make video column slightly larger */
    gap: 50px;
    align-items: center;
  }
  
  .download-column {
    text-align: center;
  }
  
  .download-column p {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: bold;
  }
  
  .hero-buttons .btn-store img {
    height: 60px;
    margin: 0 10px;
    transition: transform 0.3s ease;
  }
  
  .hero-buttons .btn-store:hover img {
    transform: scale(1.05);
  }
  
  /* --- Feature Section --- */
  .feature-section {
    padding: 80px 0;
    background: var(--dark-color);
  }
  
  .feature-container {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .feature-image {
    flex: 1;
  }
  
  .feature-text {
    flex: 1;
  }
  
  .feature-text h2 {
    font-family: var(--font-title);
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
  }
  
  /* --- News Section --- */
  .news-section {
      padding: 80px 0;
  }
  
  .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }
  
  .news-card {
      background: var(--dark-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      transition: transform 0.3s ease;
  }
  
  .news-card:hover {
      transform: translateY(-10px);
  }
  
  .news-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
  }
  
  .news-card-content {
      padding: 20px;
  }
  
  .news-category {
      font-size: 0.8rem;
      color: var(--secondary-color);
      font-weight: bold;
      text-transform: uppercase;
  }
  
  .news-card-content h3 {
      font-family: var(--font-title);
      font-size: 1.5rem;
      margin: 10px 0;
  }
  
  /* --- Social Section --- */
  .social-section {
      padding: 80px 0;
      background: url('social-background.jpg') no-repeat center center/cover; /* Add a cool pattern or image */
      text-align: center;
  }
  
  .social-content h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
  }
  
  .social-content p {
      max-width: 600px;
      margin: 0 auto 30px;
  }
  
  .social-links a {
      color: var(--text-color);
      font-size: 2.5rem;
      margin: 0 15px;
      transition: color 0.3s, transform 0.3s;
  }
  
  .social-links a:hover {
      color: var(--secondary-color);
      transform: scale(1.2);
  }
  
  /* --- Footer --- */
  .main-footer {
      background-color: #000;
      padding: 40px 0;
      color: #aaa;
  }
  
  .footer-top {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
      padding-bottom: 30px;
      border-bottom: 1px solid #444;
  }
  
  .footer-section h4 {
      color: #fff;
      margin-bottom: 15px;
      font-size: 1.2rem;
  }
  
  .footer-social a, .footer-stores a {
      display: inline-block;
      margin-right: 15px;
  }
  
  .footer-social i {
      font-size: 1.8rem;
      color: #aaa;
      transition: color 0.3s;
  }
  
  .footer-social a:hover i {
      color: var(--primary-color);
  }
  
  .footer-stores img {
      height: 45px;
  }
  
  .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 30px;
      flex-wrap: wrap;
      font-size: 0.9rem;
  }
  
  .footer-links a {
      color: #aaa;
      text-decoration: none;
      margin-right: 20px;
      transition: color 0.3s;
  }
  
  .footer-links a:hover {
      color: #fff;
  }
  
  .footer-copy {
      text-align: right;
  }


  /* --- Modified Hero Section for Video --- */
.hero {
    /* Adjusted height and alignment */
    min-height: 80vh;
    height: auto;
    padding: 120px 0 60px 0;
    display: flex;
    align-items: center;
    background-image: none; /* Removed background image from here */
    background-color: var(--dark-color); /* Added a fallback bg color */
  }
  
  /* New grid for the two-column layout */
  .video-download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .download-column {
    text-align: center;
  }
  
  /* New styles to make the YouTube video responsive */
  .video-column {
    display: flex;
    justify-content: center;
  }
  
  .video-wrapper {
    max-width: 320px;
    width: 100%;
    aspect-ratio: 9 / 16;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
  }
  .video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
  }

  /* --- Responsive Design for Video Section --- */
  @media (max-width: 900px) {
    .video-download-grid {
      grid-template-columns: 1fr; /* Stack columns on smaller screens */
      gap: 40px;
    }
    
    .video-section {
      padding: 60px 20px;
    }
  
    .download-column {
      /* The video will now be on top, we can bring the title to the top on mobile */
      grid-row: 1; 
    }
  
    .video-column {
      grid-row: 2;
    }
  }

  /* Screenshots Section */
.screenshots {
padding: 4rem 2rem;
background: #fafafa;
text-align: center;
}
.screenshots h2 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
.screenshots p {
color: #555;
margin-bottom: 2rem;
}
.screenshots .cards {
display: flex;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
}
.card {
background: #fff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
width: 300px;
}
.card:hover {
transform: scale(1.05);
box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.card img {
width: 100%;
display: block;
}
.card .card-content {
padding: 1rem;
text-align: left;
}
.card .card-content h3 {
margin-bottom: 0.5rem;
font-size: 1.25rem;
}
.card .card-content p {
font-size: 0.9rem;
color: #666;
}

/* --- Streamers Page --- */
.streamers-section {
    padding: 80px 0;
    background-color: var(--bg-color);
  }
  
  .streamers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .streamers-video-wrapper {
    /* Sets the shape to 9:16 */
    aspect-ratio: 9 / 16;
  
    /* Optional: Constrain the size and center it */
    width: 100%;
    max-width: 320px; /* Adjust this value as needed */
    margin: auto;
  }
  
  
  .streamers-video-wrapper iframe {
    /* Makes the video fill the shaped container */
    width: 100%;
    height: 100%;
  }
  
  .streamers-content {
    text-align: center;
  }
  
  .streamers-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .streamers-description {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: normal;
  }
  
  /* Responsive streamers layout */
  @media (max-width: 900px) {
    .streamers-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .streamers-content {
      order: -1;
    }
  }
  
  .streamers-guide {
    text-align: left;
    padding-left: 20px;
  }
  
  .streamers-guide h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .guide-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
  }
  
  .guide-description a {
    color: rgb(0, 26, 255);
    text-decoration: underline;
  }
  
  .guide-description ol {
    padding-left: 1.25rem;
    margin-top: 0.5rem;
  }
  
  .guide-description li {
    margin-bottom: 0.75rem;
  }

  .privacy-text {
    white-space: pre-wrap;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
  }
  
  .btn-primary {
    background-color: rgb(0, 26, 255);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  
  .btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-20deg);
    z-index: 2;
    transition: left 0.5s ease;
  }
  
  .btn-primary:hover::before {
    left: 130%;
  }
  
  .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 26, 255, 0.5);
  }
  