.page-games-card-games {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text for dark background */
  background-color: #0A246A; /* Deep blue primary background */
}

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

.page-games-card-games__hero-section {
  background: linear-gradient(135deg, #0A246A 0%, #001A4A 100%); /* Darker blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-games-card-games__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,patterns]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-games-card-games__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for emphasis */
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

.page-games-card-games__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-games-card-games__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.page-games-card-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-games-card-games__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A246A; /* Deep blue */
  border: 2px solid #FFD700;
}

.page-games-card-games__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-games-card-games__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-games-card-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A246A;
}

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

.page-games-card-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-games-card-games__section {
  padding: 80px 0;
  background-color: #0A246A;
}

.page-games-card-games__section:nth-of-type(even) {
  background-color: #1A3E8A; /* Slightly lighter blue for contrast */
}

.page-games-card-games__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-games-card-games__section-subtitle {
  font-size: 1.2em;
  color: #CCCCCC;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.page-games-card-games__content-grid {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.page-games-card-games__content-grid:nth-child(even) {
  flex-direction: row-reverse;
}

.page-games-card-games__content-text {
  flex: 1;
  min-width: 300px;
  line-height: 1.8;
  font-size: 1.1em;
}

.page-games-card-games__content-text p {
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-games-card-games__content-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-games-card-games__img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-games-card-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-games-card-games__game-card {
  background-color: #1A3E8A; /* Lighter blue for card background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-card-games__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.page-games-card-games__game-img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 2px solid #FFD700;
}

.page-games-card-games__game-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

.page-games-card-games__game-description {
  font-size: 1em;
  line-height: 1.7;
  color: #E0E0E0;
  margin-bottom: 25px;
}

.page-games-card-games__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-games-card-games__strategy-card {
  background-color: #0D2D70; /* Slightly darker blue for strategy cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-games-card-games__strategy-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(330deg) brightness(100%) contrast(100%); /* Make icons gold */
}

.page-games-card-games__strategy-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-games-card-games__strategy-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #E0E0E0;
}

.page-games-card-games__call-to-action {
  text-align: center;
  background-color: #0D2D70;
  padding: 40px;
  border-radius: 12px;
  margin-top: 60px;
}

.page-games-card-games__call-to-action p {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-games-card-games__offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-games-card-games__offer-card {
  background-color: #1A3E8A;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-card-games__offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.page-games-card-games__offer-img {
  max-width: 120px;
  height: auto;
  margin-bottom: 25px;
}

.page-games-card-games__offer-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-games-card-games__offer-description {
  font-size: 1em;
  line-height: 1.7;
  color: #E0E0E0;
  margin-bottom: 25px;
}

.page-games-card-games__download-content {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.page-games-card-games__download-text {
  flex: 1;
  min-width: 300px;
  line-height: 1.8;
  font-size: 1.1em;
}

.page-games-card-games__download-text p {
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-games-card-games__download-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-games-card-games__safety-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-games-card-games__feature-item {
  background-color: #0D2D70;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-games-card-games__feature-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(330deg) brightness(100%) contrast(100%); /* Make icons gold */
}

.page-games-card-games__feature-item h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-games-card-games__feature-item p {
  font-size: 1em;
  line-height: 1.7;
  color: #E0E0E0;
}

.page-games-card-games__section--cta {
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%);
}

.page-games-card-games__section--cta .page-games-card-games__section-title {
  color: #0A246A;
  margin-bottom: 20px;
}

.page-games-card-games__section--cta .page-games-card-games__section-subtitle {
  color: #0A246A;
  margin-bottom: 40px;
}

.page-games-card-games__section--cta .page-games-card-games__btn--large {
  background-color: #0A246A;
  color: #FFD700;
  border-color: #0A246A;
}

.page-games-card-games__section--cta .page-games-card-games__btn--large:hover {
  background-color: #001A4A;
  border-color: #001A4A;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-card-games__hero-title {
    font-size: 2.8em;
  }
  .page-games-card-games__section-title {
    font-size: 2.2em;
  }
  .page-games-card-games__content-grid {
    flex-direction: column;
    gap: 40px;
  }
  .page-games-card-games__content-grid:nth-child(even) {
    flex-direction: column;
  }
  .page-games-card-games__download-content {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .page-games-card-games__hero-title {
    font-size: 2.2em;
  }
  .page-games-card-games__hero-description {
    font-size: 1em;
  }
  .page-games-card-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-games-card-games__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-games-card-games__section {
    padding: 60px 0;
  }
  .page-games-card-games__section-title {
    font-size: 1.8em;
  }
  .page-games-card-games__section-subtitle {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-games-card-games__game-card, .page-games-card-games__strategy-card, .page-games-card-games__offer-card, .page-games-card-games__feature-item {
    padding: 25px;
  }
  .page-games-card-games__game-img {
    height: 180px;
  }
  .page-games-card-games__call-to-action p {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-games-card-games__hero-title {
    font-size: 1.8em;
  }
  .page-games-card-games__hero-description {
    font-size: 0.9em;
  }
  .page-games-card-games__btn {
    width: 90%;
  }
  .page-games-card-games__section-title {
    font-size: 1.5em;
  }
  .page-games-card-games__game-title, .page-games-card-games__strategy-title, .page-games-card-games__offer-title, .page-games-card-games__feature-item h3 {
    font-size: 1.5em;
  }
  .page-games-card-games__call-to-action p {
    font-size: 1em;
  }
}