/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #121212;
  color: #e0e0e0;
  background-image: url('background.jpg'); /* Add your deep blue background image path here */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Keeps the background fixed when scrolling */
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 150px 20px;
  background-color: rgba(0, 0, 50, 0.7); /* Deep blue tint over background */
  color: #ffffff;
}

.hero h1 {
  font-size: 2.5rem;
  color: #00aced; /* Cool blue accent color */
}

.hero p {
  margin: 20px 0;
  font-size: 1.2rem;
}

.cta-button {
  padding: 10px 20px;
  background-color: #00aced;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.cta-button:hover {
  background-color: #0097cb;
}

/* Games Section */
.games-section {
  padding: 50px 20px;
  text-align: center;
  background-color: rgba(0, 0, 50, 0.8); /* Dark blue overlay */
}

.games-section h2 {
  font-size: 2rem;
  color: #00aced;
  margin-bottom: 30px;
}

/* Game Card */
.game-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
/* Game Card */
.game-card {
  background-color: #1e1e1e;
  margin: 15px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
  width: 250px; /* Default width */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Wide card for landscape GIFs */
.wide-card {
  width: 510px; /* Double the normal width */
}

.game-card img {
  max-width: 100%;
  border-radius: 5px;
}

.game-card h3 {
  color: #00aced;
  margin: 15px 0 10px 0;
}

.game-card p {
  flex-grow: 1;
  margin-bottom: 20px;
}

.play-button {
  display: inline-block;
  padding: 10px;
  background-color: #00aced;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: auto;
}

.play-button:hover {
  background-color: #0097cb;
}



/* About Section */
.about {
  padding: 50px 20px;
  background-color: rgba(0, 0, 50, 0.6); /* Slight transparency for dark blue */
  color: #e0e0e0;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  color: #00aced;
}

.about p {
  max-width: 600px;
  margin: 20px auto;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background-color: #1e1e1e;
  color: white;
}

.footer a {
  color: #00aced;
  text-decoration: none;
}


.achievement-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.jss-img, .rating-img {
  width: 150px; /* Adjust as needed */
  height: auto;
}

.hero {
  text-align: center;
  padding: 40px 20px;
}


.rating-img {
  display: block;
}

.jss-img {
  display: block;
}

@media (max-width: 768px) {
  .achievement-section {
    flex-direction: column;
    gap: 10px;
  }
}
