* {
  padding: 0;
  margin: 0;
  font-family: sans-serif;
  line-height: 1.6;
  box-sizing: border-box;
  font-weight: 600;
}

body {
  color: white;
  background-color: #121212;
}

header {
  width: 100%;
  height: 100px;
  display: grid;
  grid-template-columns: 1.5fr 2.5fr 1fr;
  overflow: hidden;
  position: sticky;
  top: 0;
  background-color: #1e1e1e;
  color: white;
  z-index: 100;
}

#Website-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

#Website-logo p {
  padding: 30px;
  background-color: rgb(160, 154, 154);
  border-radius: 10px;
}

/* MENU */
#menu {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

#menu ul {
  display: flex;
  gap: 50px;
}

#menu li {
  list-style: none;
  transition: all 0.3s ease-in-out;
}

#menu a {
  text-decoration: none;
  color: white;
}

/* Effect? */
#menu li:hover {
  background-color: #9146ff;
  padding: 10px 25px;
  gap: 60px;
  border-radius: 10px;
  box-shadow: 9px 8px 10px 1px rgba(0, 0, 0, 0.29);
}

/* Icons */
#User_Setting {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

#User_Setting i {
  font-size: 24px;
  display: flex;
}

/* Section 2 */
#About_us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 5% 15%;
  background-color: #121212;
}

#about h1 {
  font-size: 3.5em;
  margin-bottom: 1em;
  line-height: 1.2;
  margin-left: 10%;
}

#about p {
  font-size: 1.2rem;
  color: lightgray;
  margin-bottom: 1rem;
  margin-left: 10%;
}

#about button {
  padding: 10px 20px;
  background-color: #9146ff;
  border-radius: 10px;
  border: none;
  color: white;
  margin-left: 10%;
}

#About_us img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  width: 70%;
  height: auto;
  margin-left: 30%;
}

#Our_Speciality_In_the_Area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 2% 23%;
}

#Our_Speciality_In_the_Area img {
  width: 50%;
  height: auto;
}

#Our_Speciality_In_the_Area p {
  margin-top: 10%;
  font-size: 1.5em;
  text-align: center;
}

#Our_Speciality_In_the_Area div {
  background-color: #1e1e1e;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: auto;
  padding: 30% 10%;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
}

#mid-section {
  text-align: center;
  font-size: 2em;
}

#Our_Speciality_In_the_Area div:hover {
  transform: scale(0.9);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.5);
}

/* New Css */
.section-title {
  text-align: center;
  margin: 0% 0% 2% 0%;
}
.faq-section {
  padding: 4rem 10%;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #1e1e1e;
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid #333;
  padding: 1.5rem;
}

.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #a0a0a0;
}

.site-footer-main {
  background-color: #000;
  padding: 3rem 10% 1rem;
  border-top: 1px solid #333;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 150px;
  margin-bottom: 1rem;
}

.social-icons a {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: white;
}

.social-icons a:hover {
  color: #9146ff;
}

.footer-links h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #9146ff;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
  list-style: none;
}
.footer-links ul li a {
  color: white;
  text-decoration: none;
  font-weight: 100;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Discover Sections  */


.Title {
  text-align: left;
  font-size: 1.5em;
  padding: 4% 0% 0% 20%;
}
#D_Games {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 1% 20% 2% 20%;
}
.games {
  background-color: #1e1e1e;
  border-radius: 15px;
  height: 100%;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.game-poster img {
  width: 100%;
  height: auto;
}
.game-THP {
  padding: 0% 3%;
}
.game-title {
  font-size: 1.5em;
}
.support-hardware {
  display: flex;
  gap: 4%;
}
.support-hardware p {
  background-color: #333;
  color: #9146ff;
  font-size: 12px;
  padding: 2%;
  border-radius: 10%;
}
.price {
  display: flex;
  gap: 1em;
  margin: 1% 0%;
  color: rgba(136, 235, 125, 0.774);
}
.games button {
  width: 100%;
  padding: 10px 0px;
  background-color: #438fa9;
  border: none;
  transition: all 0.2s ease-in-out;
}
.games button:hover {
  cursor: pointer;
  background-color: #5dd7e0;
  transform: scale(1.2);
}
.games:hover {
  transform: scale(0.95);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.5);
}

/* Game.html */

#Container-All {
  display: grid;
  grid-template-columns: 1fr 4fr;
}
#Fliter {
  background-color: #333;
  width: 100%;
  height: 100%;
    position: sticky;
  top: 0;
  padding: 2% 4%;
}

#Game-Type {
  padding: 3% 0% 4% 3%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fffefe;
  border-radius: 15px;
  color: black;
  box-shadow: 0 10px 30px rgba(118, 117, 117, 0.744);
}

#Game-Type button {
  padding: 1.5% 6%;
  background-color: #d4d3d3;
  border: none;
  border-radius: 25px;
  font-weight: 100;
  transition: all 0.2s ease-in-out;
}

#Game-Type div {
  display: flex;
  gap: 10px 30px;
  flex-wrap: wrap;
  margin-left: 5%;
}

#Game-Type button:hover {
  box-shadow: 0 10px 30px rgba(118, 117, 117, 0.744);
  background-color: #a0a0a0;
  cursor: pointer;
}

#Price-Range {
  padding: 3% 0% 4% 3%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fffefe;
  border-radius: 15px;
  color: black;
  box-shadow: 0 10px 30px rgba(118, 117, 117, 0.744);
  margin-top: 5%;
}
#range {
  display: flex;
  gap: 20px 30px;
  flex-wrap: wrap;
  padding: 1.5% 6%;
}

#range div {
  font-weight: 100;
}

#Platform {
  padding: 3% 0% 4% 3%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fffefe;
  border-radius: 15px;
  color: black;
  box-shadow: 0 10px 30px rgba(118, 117, 117, 0.744);
  margin-top: 5%;
}
#Platform div {
  display: flex;
  gap: 25px;
  margin-left: 4%;
}
#Platform div button {
  padding: 1.5% 6%;
  background-color: #d4d3d3;
  border: none;
  border-radius: 25px;
  font-weight: 100;
  transition: all 0.2s ease-in-out;
}

#Platform div button:hover {
  box-shadow: 0 10px 30px rgba(118, 117, 117, 0.744);
  background-color: #a0a0a0;
  cursor: pointer;
}

#Customer-Review {
  padding: 3% 0% 4% 3%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fffefe;
  border-radius: 15px;
  color: black;
  box-shadow: 0 10px 30px rgba(118, 117, 117, 0.744);
  margin-top: 5%;
}
#Rating {
  display: flex;
  gap: 20px;
  margin-left: 4%;
}
#Rating button {
  padding: 1.5% 6%;
  background-color: #d4d3d3;
  border: none;
  border-radius: 25px;
  font-weight: 100;
  transition: all 0.2s ease-in-out;
}

#Rating button:hover {
  box-shadow: 0 10px 30px rgba(118, 117, 117, 0.744);
  background-color: #a0a0a0;
  cursor: pointer;
}

/* Game-List */

#GL_Games {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
 padding: 2% 5% 1% 5%;
}
.Sub-title{
    padding: 2% 0% 0% 5% ;
    font-size: 40;
}