body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
  color: #333;
}

header {
  background-color: #ff6699;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  height: 50px;
}

.logo img {
  height: 100%;
  width: auto;
  max-width: 100%;
}

nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

nav a, nav button {
  color: #fff;
  text-decoration: none;
  margin: 5px 10px;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
}

nav a:hover, nav button:hover {
  text-decoration: underline;
}

.content {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
  color: #ff6699;
  font-size: 24px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th, td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #ff6699;
  color: white;
}

p {
  line-height: 1.6;
}

.section {
  padding: 20px;
  text-align: center;
}

.section h2 {
  margin-bottom: 20px;
}

#game-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.info-box {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 10px;
  width: calc(33.33% - 20px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-box img {
  max-width: 50px;
  height: auto;
  margin-bottom: 10px;
}

main {
  padding: 20px;
}

section#reviews {
  max-width: 800px;
  margin: auto;
}

article.review {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
}

/* Global image styles */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Specific image styles */
.gameplay-image {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
}

.game-rules-image {
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
}

/* Footer Styles */
footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 30px 20px;
  font-size: 14px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.responsible-gaming {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}

.responsible-gaming div {
  width: 48%;
}

.gaming-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 20px 0;
}

.gaming-logos img {
  height: 30px;
  width: auto;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.footer-column {
  width: 30%;
}

.footer-column h3 {
  color: #ff6699;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style-type: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 5px;
}

.footer-column a {
  color: #ffffff;
  text-decoration: none;
}

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

.copyright {
  text-align: center;
  margin-top: 20px;
  color: #666;
}

/* Mobile Menu Styles */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    margin-bottom: 10px;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 10px;
    right: 20px;
  }

  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: #ff6699;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: left 0.3s ease-in-out;
    z-index: 1000;
  }

  nav.active {
    left: 0;
  }

  nav a, nav button {
    margin: 10px 0;
    font-size: 18px;
  }

  #game-info {
    flex-direction: column;
  }

  .info-box {
    width: 100%;
    margin: 10px 0;
  }

  th, td {
    font-size: 14px;
  }

  .content {
    margin: 10px;
    padding: 15px;
  }

  h1, h2 {
    font-size: 20px;
  }

  .gameplay-image,
  .game-rules-image {
    max-width: 100%;
  }

  .responsible-gaming {
    flex-direction: column;
  }
  
  .responsible-gaming div {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 10px;
  }

  .logo {
    height: 40px;
  }

  nav a, nav button {
    margin: 5px 0;
    font-size: 16px;
  }

  .section {
    padding: 15px;
  }

  .info-box {
    padding: 15px;
  }

  table {
    font-size: 12px;
  }

  th, td {
    padding: 8px;
  }

  .btn-liquid {
    height: 50px;
    font-size: 12px;
    line-height: 50px;
  }

  .gameplay-image,
  .game-rules-image {
    margin: 10px auto;
  }

  .gaming-logos {
    flex-wrap: wrap;
  }
  
  .gaming-logos img {
    margin: 10px;
  }
}