* {

  box-sizing: border-box;

  margin: 0;

  padding: 0;

  font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;

}



body {

  color: white;

  min-height: 100vh;

  overflow-x: hidden;

}



.gradient-bg {

  background: linear-gradient(rgb(77, 2, 77), #002133);

}





.navbar {

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 0 15px;

  background-color: #4a4a4a;

  height: 100px;

  position: sticky;

  top: 0;

  z-index: 1000;

}



.nav-icon { width: 35px; height: 35px; cursor: pointer; }

.logo { height: 50px; width: auto; }



.nav-center {

  display: flex;

  justify-content: center;

  align-items: center;

  flex-grow: 1;

  margin-right: 35px;

}



.menu-checkbox, .desktop-nav, .games-dropdown {

  display: none;

}





.mobile-overlay {

  position: fixed;

  top: 100px;

  left: 0;

  width: 50%;

  height: 0;

  background-color: rgb(77, 2, 77);

  overflow: hidden;

  transition: 0.3s ease-in-out;

}



.overlay-content {

  display: flex;

  flex-direction: column;

  padding: 40px 20px;

  gap: 25px;

}



.overlay-content a {

  color: white;

  text-decoration: none;

  font-size: 1.2rem;

  font-weight: bold;

}



#menu-toggle:checked ~ .mobile-overlay { height: calc(100vh - 100px); }





@media (min-width: 900px) {

  .navbar { height: 80px; justify-content: center; }

  .nav-left { display: none; }

  .nav-center { margin-right: 0; gap: 30px; }



  .desktop-nav {

    display: flex;

    list-style: none;

    gap: 30px;

  }





  .dropdown-anchor {

    position: relative;

  }



  .desktop-nav a, .desktop-dropdown-label {

    color: white;

    text-decoration: none;

    font-weight: bold;

    text-transform: uppercase;

    font-size: 0.9rem;

    cursor: pointer;

    display: block;

  }



  .games-dropdown {

    display: none;

    position: absolute;

    top: 50px; 

    left: 0;

    width: 280px;

    background-color: #4a4a4a;

    padding: 20px;

    z-index: 999;

    box-shadow: 0 10px 20px rgba(0,0,0,0.5);

  }



  #dropdown-toggle:checked ~ .nav-center .games-dropdown {

    display: block;

  }



  .dropdown-inner {

    display: flex;

    flex-direction: column;

    gap: 15px;

  }



  .dropdown-inner a {

    color: white;

    text-decoration: none;

    font-size: 1.1rem; 

    font-weight: 600;

    text-transform: none; 

  }



  .mobile-overlay { display: none; }

}





.hero-section { padding: 20px; display: flex; justify-content: center; }

.hero-img { width: 100%; max-width: 1000px; border: 4px solid #002133; }

.product-grid { display: grid; grid-template-columns: 1fr; gap: 80px; padding: 60px 10%; background-color: #004c75; }

.card { background-color: #000; max-width: 400px; margin: 0 auto; border-radius: 12px; overflow: hidden; }

.card-img { width: 100%; display: block; }

.card-content { padding: 20px; }

.buy-btn { margin-top: 15px; padding: 12px 30px; border-radius: 25px; background-color: #a2e8e4; font-weight: bold; border: none; cursor: pointer; }

.footer-info { text-align: center; padding: 60px 40px; display: flex; flex-direction: column; align-items: center; gap: 30px; }

.platform-logos { display: flex; gap: 40px; }

.platform-logos img { height: 35px; filter: brightness(0) invert(1); }



@media (min-width: 900px) {

  .product-grid { grid-template-columns: repeat(3, 1fr); max-width: 1200px; margin: 0 auto; }

}