/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Basic page styles */
body {
  background: #ffffff;
  background-size: contain;
  line-height: 1.6;
  color: #333;
  /* font-family: 'Courier New', Courier, monospace; */
}

.logo {
  background: #371eea;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  margin: 10px;
}
.logo img {
  width: 60px;
}
.gamesdom {
  margin: 10px;
  background-color: #dec8ff;
  border-radius: 5px;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}
.gamesmain {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  padding-top: 0px;
}
.game-cards {
  width: calc(25% - 10px);
  aspect-ratio: 1/1;
  background-color: #ffffff;
  padding: 5px;
  box-shadow:  0 4px 8px rgba(108, 92, 231, 0.2);
  border-radius: 8px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
}
.game-cards img {
  width: 100%;
}
.game-cards:hover {
  transform: translateY(-5px);
}
.more {
  background-color: #371eea;
  width: calc(100% - 30px);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  color: white;
  border-radius: 50px;
}

.gamename {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* justify-content: center; */
  padding: 0 20px;
}
.backname {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.moretxt {
  font-size: 14px;
  display: flex;
  align-items: center;
}
.moretxt img {
  width: 14px;
}
.back img {
  width: 14px;
  transform: rotate(180deg);
}

.desdom {
  margin: 10px;
  background-color: #f7f1ff;
  border-radius: 5px;
  text-align: left;
  font-size: 12px;
  line-height: 14px;
  padding: 20px;
}
.destitle {
  text-align: left;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background-color:#371eea;
  color: white;
  text-align: center;
  padding: 20px;
}
.footer img {
  width: 80px;
}

.footer ul {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
  list-style-type: none;
}

.footer ul li a {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
}

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

/* Responsive Design for Mobile */
@media screen and (max-width: 768px) {
}

/* Extra Small Devices */
@media screen and (max-width: 480px) {
}
