/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
  }
  
  /* Navbar */
  header {
    background: #222;
    padding: 1rem 2rem;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #00bcd4;
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #007aff, #34a853);
    color: white;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  /* General container styling */
  .store-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  
  .store-buttons a {
    display: inline-block;
  }
  
  .store-buttons img.store-logo {
    width: 150px;
    height: auto;
    transition: transform 0.2s ease-in-out;
  }
  
  /* Add hover effect */
  .store-buttons img.store-logo:hover {
    transform: scale(1.1);
  }
  /*.store-buttons .btn {
    display: inline-block;
    margin: 1rem;
    padding: 0.8rem 1.2rem;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
  }
  
  .google-play {
    background: #34a853;
  }
  
  .app-store {
    background: #007aff;
  }*/

  .steam {
    background: black;
  }
  
  /* Features Section */
  .features {
    padding: 2rem;
    text-align: center;
  }
  
  .image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem;
  }
  
  .image-gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  .image-gallery img:hover {
    transform: scale(1.05);
  }
  
  /* Lightbox */
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .lightbox.hidden {
    display: none;
  }
  
  .lightbox-image {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
  }
  
  .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
  }
  
  /* Footer */

  footer {
    background-color: #19212D; /* Adjust to match your theme */
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  /* Logo Styling */
  .footer-logo img {
    max-width: 100px; /* Adjust size as needed */
  }
  
  /* Contact Section */
  .footer-contact {
    text-align: center;
    line-height: 1.6;
  }
  
  .footer-contact a {
    color: #fff;
    text-decoration: none;
  }
  
  /* Social Media Section */
  .footer-social a {
    margin: 0 0.5rem;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
  }
  
  .footer-social a:hover {
    color: #1DA1F2; /* Example: Change color on hover */
  }
  
  /* Footer Bottom Section */
  .footer-bottom {
    border-top: 1px solid #444;
    margin-top: 1.5rem;
    padding-top: 1rem;
    font-size: 0.875rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      flex-direction: row;
      justify-content: space-between;
    }

    .store-buttons img {
      max-width: 150px; /* Reduce size on smaller screens */
    }
  
    .footer-contact, .footer-logo, .footer-social {
      text-align: left;
    }
  }
  

  /*footer {
    padding: 1rem;
    text-align: center;
    background: #222;
    color: white;
  }
  
  footer .social-links a {
    color: white;
    margin: 0 0.5rem;
    text-decoration: none;
  }*/
  