/* style/game-types.css */
.page-game-types {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray text for contrast on dark background */
  background-color: #1A202C; /* Main dark blue background */
}

.page-game-types__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-types__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a475d 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  border-bottom: 3px solid #FFD700; /* Gold accent */
}

.page-game-types__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold title for prominence */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-game-types__brand-highlight {
  color: #FFD700;
}

.page-game-types__hero-description {
  font-size: 1.3em;
  color: #F0F0F0;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-game-types__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-types__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-game-types__intro-content,
.page-game-types__game-list,
.page-game-types__responsible-gambling {
  padding: 60px 0;
}

.page-game-types__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-types__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-game-types__intro-content p,
.page-game-types__responsible-gambling p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: #C0C0C0; /* Lighter gray for paragraph text */
}

.page-game-types__image-full-width {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-game-types__game-card {
  display: flex;
  flex-direction: row;
  background-color: #2A313F; /* Slightly lighter dark blue for cards */
  border-radius: 12px;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-game-types__game-image {
  width: 35%;
  height: auto;
  object-fit: cover;
  border-right: 2px solid #3A475D;
}

.page-game-types__game-info {
  padding: 30px;
  width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-types__game-title {
  font-size: 2em;
  color: #FFD700; /* Gold for game titles */
  margin-top: 0;
  margin-bottom: 15px;
}

.page-game-types__game-description {
  font-size: 1em;
  line-height: 1.7;
  color: #C0C0C0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-game-types__detail-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
  border: none;
}

.page-game-types__detail-button:hover {
  background-color: #e6c200;
  transform: translateY(-1px);
}

.page-game-types__cta-section {
  text-align: center;
  background-color: #2A313F;
  padding: 60px 40px;
  border-radius: 12px;
  margin-top: 60px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-game-types__cta-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-game-types__cta-description {
  font-size: 1.2em;
  color: #F0F0F0;
  max-width: 700px;
  margin: 0 auto 30px auto;
  line-height: 1.7;
}

.page-game-types__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  margin: 0 10px 20px 10px;
}

.page-game-types__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-game-types__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

/* Responsible Gambling Section Specifics */
.page-game-types__responsible-gambling {
  background-color: #1A202C;
  border-top: 2px solid #3A475D;
}

.page-game-types__responsible-gambling p {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-types__hero-title {
    font-size: 3em;
  }
  .page-game-types__section-title {
    font-size: 2em;
  }
  .page-game-types__game-card {
    flex-direction: column;
  }
  .page-game-types__game-image {
    width: 100%;
    height: 250px;
    border-right: none;
    border-bottom: 2px solid #3A475D;
  }
  .page-game-types__game-info {
    width: 100%;
    padding: 25px;
  }
  .page-game-types__game-title {
    font-size: 1.8em;
  }
  .page-game-types__cta-button--large,
  .page-game-types__cta-button--secondary {
    display: block;
    margin: 15px auto;
  }
}

@media (max-width: 768px) {
  .page-game-types__hero-section {
    padding: 80px 0;
  }
  .page-game-types__hero-title {
    font-size: 2.5em;
  }
  .page-game-types__hero-description {
    font-size: 1.1em;
  }
  .page-game-types__section-title {
    font-size: 1.8em;
  }
  .page-game-types__intro-content p,
  .page-game-types__responsible-gambling p {
    font-size: 1em;
  }
  .page-game-types__game-image {
    height: 200px;
  }
  .page-game-types__game-title {
    font-size: 1.6em;
  }
  .page-game-types__game-description {
    font-size: 0.95em;
  }
  .page-game-types__cta-title {
    font-size: 1.8em;
  }
  .page-game-types__cta-description {
    font-size: 1em;
  }
  .page-game-types__cta-button--large,
  .page-game-types__cta-button--secondary {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-game-types__hero-section {
    padding: 60px 0;
  }
  .page-game-types__hero-title {
    font-size: 2em;
  }
  .page-game-types__hero-description {
    font-size: 0.9em;
  }
  .page-game-types__section-title {
    font-size: 1.5em;
  }
  .page-game-types__game-info {
    padding: 20px;
  }
  .page-game-types__game-title {
    font-size: 1.4em;
  }
  .page-game-types__game-description {
    font-size: 0.85em;
  }
  .page-game-types__detail-button {
    font-size: 0.8em;
    padding: 8px 15px;
  }
  .page-game-types__cta-title {
    font-size: 1.5em;
  }
  .page-game-types__cta-description {
    font-size: 0.9em;
  }
  .page-game-types__cta-button--large,
  .page-game-types__cta-button--secondary {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}