@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');



* { 
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     scroll-behavior: smooth;
     font-family: "poppins", serif;
  }

   body {
    background-color: rgb(37, 39, 40);
}



header {

  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem auto;
  padding: 0 0.5rem;
  max-width: 1200px;

}

.navigation ul{

      display: flex;
      list-style-type: none;
     gap: 2rem;
     
}

.navigation a {

     text-decoration: none;
     color: rgb(255, 255, 255);

}




.navigation a:hover {

     
     color: rgb(0, 225, 255);

}

hr{

    opacity: 10%;
}
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5rem auto;
  max-width: 1200px;

}

.arrow {

    position: absolute;
    transform: translateX(-5.5rem) translateY(1.5rem);

}

.herosub{

    display: flex;
    flex-direction: column;
    gap: 0.5rem;

}
.name {
     font-size: 3rem;
     color: aliceblue;
}

.title {

     font-size: 4rem;
     color: aqua;
    
}
.prizeePar {

  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5rem auto;
  max-width: 1200px;
   gap: 10rem;
   color: rgb(255, 255, 255);
  font-size: larger;

}
.aboutTitle{
 display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5rem auto;
  max-width: 1200px;
   gap: 10rem;
   color: aqua;

}
.textcontainer {

display: flex;
flex-direction: column;

}
.textTitle{
display: flex;
align-items: center;
gap: 5px;
font-size: 2rem;
}
.games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.game {
    position: relative;
    width: 300px; /* يمكن تغييره */
}

.game img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-button {
    padding: 10px 20px;
    background-color: #ff0000;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

/* iframe Gamezop fullscreen */
.gamezop-wrapper {
    width: 100%;
    height: 80vh; /* 80% من ارتفاع الشاشة */
    margin-top: 30px;
}

.gamezop-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}
