* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f5f5f5;
}

.navbar {
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo span {
  font-family:'Popins',sans-serif;
  font-size: 58px;
  font-weight: 600;
  color: rgb(46,50,255); 
  text-transform: lowercase;
}

.nav-links a {
  font-family: Arial, sans-serif;  
  margin-left: 40px;
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #0072ff;
}

.txt{
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 25px;
    line-height: 2.0;
}

.img{
  background-color: rgb(227, 225, 225);
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  max-width: 1100px; 
}

.game-hero{
  display: flex;
  gap: 30px;
  width: 1100px; 
  margin: 40px auto;
  padding: 20px;
  background-color: #e9e9ea; 
  border-radius: 8px;
  align-items: stretch;
  box-sizing: border-box;
}

.game-left{
  flex: 0 0 60%; 
}
.game-left img{
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.game-right{
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  gap: 20px;
}
.game-right .game-info{
  text-align: center;
  padding: 10px;
  margin: 10px;
}

.game-right .game-info h1{
  font-size: 25px;
  margin: 10px;
  padding: 10px;
}

.game-right .game-info p{
  font-size: 25px;
  line-height: 2.0;
  margin: 10px;
  padding: 10px;
}

.right-bottom{
  display: flex;
  flex-direction: row; 
  gap: 12px;
  padding: 10px;
  margin: 10px;
  align-items: center;
}
.right-bottom .store-badge{
  width: 160px;
  height: auto;
  display: block;
}

@media (max-width: 900px){
  .game-hero{
  width: 100%;
  flex-direction: column;
  gap: 20px;
  padding: 16px;
  }
  .game-right{width:100%;}
  .right-bottom{flex-direction: row; justify-content: center; flex-wrap: wrap}
  .right-bottom .store-badge{width:140px}
  .game-left img{max-height: 420px}
}

.game-hero.reverse{
  flex-direction: row-reverse;
}

.game-hero.reverse .game-right{
  align-items: flex-start; 
}

.game-hero.reverse .game-info{
  text-align: left;
}

.btn{
    background-color: #2560eb;
    color:white;
    border:none;
    padding:10px 20px;
    border-radius:25px;
    cursor:pointer;
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-logo span {
  color: #007bff; 
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
}

.footer-links a:hover {
  color: #007bff;
}

.footer-social {
  margin: 20px 0;
}

.footer-social a {
  color: #fff;
  margin: 0 10px;
  font-size: 18px;
  text-decoration: none;
}

.footer-social a:hover {
  color: #007bff;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
}

.footer-bottom p {
  margin: 5px 0;
}

.footer-terms a {
  color: #aaa;
  text-decoration: none;
  margin: 0 10px;
}

.footer-terms a:hover {
  color: #fff;
}

@media screen and (max-width:767px){
   .Div-3{
    flex-direction:column;
    text-align:center;
   }
}