* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #12182b;
  color: #fff;
  text-align: center;
}

.header {
  background: linear-gradient(to bottom, #222844, #12182b);
  padding: 10px;
  border-bottom: 2px solid orange;
}

.logo-section {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
}

.logo {
  width: 50px;
  height: 50px;
}

.brand-text h1 {
  font-size: 20px;
  color: #fff;
  text-align:left;
}

.brand-text p {
  color: #ffc107;
  font-size: 14px;
  text-align:left;
}

.hero {
  background: url('hero-background.jpg') no-repeat center;
  background-size: cover;

}

.hero-img {
  width: 100%;
  border-radius: 10px;
}

.games {
    height: 250px;
  padding: 20px 10px;
}

.games h2 {
  font-size: 20px;
  margin-bottom: 5px;
}

.games p {
  color: #ffc107;
  margin-bottom: 15px;
}

.game-grid {
    width:100%;
  display: block;
 float:left;
}

.game-card {
  width:25%;  
  float:left;
  background: #1e1f2f;
  padding: 2px;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0 0 5px #000;
}
.game-card img{
  width:100%;  
  
}

.trusted {
  padding: 20px 10px;
}

.trusted h2 {
    font-size: 20px;
  margin-bottom: 15px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 15px;
}

.feature {
  width: 20%;
  text-align: center;
}

.feature img {
  width: 60%;
  margin-bottom: 5px;
}

.footer {
  padding: 20px;
}

.download-btn {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
 
}
.download-btn img{

    width:100%;
}
