/* style/games.css */
.page-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0F1D33; /* Darker background to complement #1A2B4C */
  line-height: 1.6;
}

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

.page-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-games__hero-section {
  background: linear-gradient(135deg, #1A2B4C, #0F1D33); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-games__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract_geometric,dark_blue,gold_accents]'); /* Subtle background pattern */
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-games__hero-section > .page-games__container {
  position: relative;
  z-index: 1;
}

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

.page-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #C0C0C0;
}

.page-games__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-games__btn {
  display: inline-block;
  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-games__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A2B4C; /* Dark blue text */
}

.page-games__btn--primary:hover {
  background-color: #E5C100; /* Darker gold */
  transform: translateY(-3px);
}

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

.page-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
  transform: translateY(-3px);
}

.page-games__btn--small {
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #1A2B4C;
}

.page-games__btn--small:hover {
  background-color: #E5C100;
  transform: translateY(-2px);
}

.page-games__btn--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

.page-games__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for section titles */
}

.page-games__section-intro {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #C0C0C0;
}

.page-games__highlight {
  color: #FFD700;
}

/* About Viva88 Section */
.page-games__about-viva88 {
  background-color: #1A2B4C; /* Primary dark blue */
  color: #E0E0E0;
}

.page-games__grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-games__feature-card {
  background-color: #0F1D33; /* Darker background for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-games__feature-card:hover {
  transform: translateY(-5px);
}

.page-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(90%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

.page-games__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-games__feature-text {
  font-size: 0.95em;
  color: #C0C0C0;
}

/* Game Categories Section */
.page-games__game-categories {
  background-color: #0F1D33;
}

.page-games__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-games__game-card {
  background-color: #1A2B4C; /* Primary dark blue for game cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-games__game-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-games__game-content {
  padding: 25px;
}

.page-games__game-card-title {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-games__game-card-title a {
  color: #FFD700; /* Gold for game titles */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-games__game-card-title a:hover {
  color: #E5C100;
}

.page-games__game-card-description {
  font-size: 0.9em;
  color: #C0C0C0;
  margin-bottom: 20px;
}

/* Strategy Guide Section */
.page-games__strategy-guide {
  background-color: #1A2B4C;
}

.page-games__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-games__strategy-item {
  background-color: #0F1D33;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-games__strategy-item-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #FFD700;
}

.page-games__strategy-item-text {
  font-size: 0.95em;
  color: #C0C0C0;
}

/* Get Started Section */
.page-games__get-started {
  background-color: #0F1D33;
}

.page-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-games__step-card {
  background-color: #1A2B4C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-games__step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(90%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-games__step-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-games__step-text {
  font-size: 0.95em;
  color: #C0C0C0;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Responsible Gaming Section */
.page-games__responsible-gaming {
  background-color: #1A2B4C;
}

.page-games__responsible-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-games__responsible-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-games__list-icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  filter: invert(80%) sepia(90%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-games__responsible-text {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-top: 30px;
}

/* Final CTA Section */
.page-games__cta-final {
  background-color: #0F1D33;
  padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games__hero-title {
    font-size: 2.8em;
  }
  .page-games__section-title {
    font-size: 2em;
  }
  .page-games__grid-2-cols,
  .page-games__game-list,
  .page-games__strategy-grid,
  .page-games__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-games__btn--large {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-games__hero-title {
    font-size: 2.2em;
  }
  .page-games__hero-description,
  .page-games__section-intro {
    font-size: 1em;
  }
  .page-games__section-title {
    font-size: 1.8em;
  }
  .page-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-games__feature-title,
  .page-games__game-card-title,
  .page-games__strategy-item-title,
  .page-games__step-title {
    font-size: 1.3em;
  }
  .page-games__hero-section {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .page-games__hero-title {
    font-size: 1.8em;
  }
  .page-games__section-title {
    font-size: 1.5em;
  }
  .page-games__hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .page-games__btn--large {
    width: 90%;
  }
  .page-games__container {
    padding: 0 15px;
  }
  .page-games__section {
    padding: 40px 0;
  }
}