.page-games-center {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-games-center__hero {
  background: linear-gradient(135deg, #0A192F 0%, #3a4a61 100%); /* Dark blue to slightly lighter blue gradient */
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-games-center__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-games-center__hero-subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 1.8;
}

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

.page-games-center__btn--primary {
  background-color: #FFD700; /* Gold accent color */
  color: #0A192F; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-games-center__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(255, 215, 0, 0.4);
}

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

.page-games-center__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(255, 215, 0, 0.4);
}

.page-games-center__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.page-games-center__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-games-center__section {
  padding: 60px 0;
}

.page-games-center__section:nth-of-type(even) {
  background-color: #1A2B42; /* Slightly lighter dark blue for alternating sections */
}

.page-games-center__section-title {
  font-size: 2.5em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-games-center__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #CCCCCC;
}

.page-games-center__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-games-center__text-block:last-of-type {
  margin-bottom: 0;
}

.page-games-center__intro .page-games-center__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-games-center__game-categories {
  padding-bottom: 80px;
}

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

.page-games-center__game-card {
  background-color: #1A2B42;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-games-center__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-games-center__game-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-games-center__game-card-description {
  font-size: 1em;
  color: #CCCCCC;
  margin-bottom: 25px;
  padding: 0 20px;
  flex-grow: 1;
}

.page-games-center__btn--details {
  background-color: #FFD700;
  color: #0A192F;
  border: none;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 6px;
}

.page-games-center__btn--details:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-games-center__why-choose {
  background-color: #0A192F;
}

.page-games-center__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-games-center__feature-item {
  background-color: #1A2B42;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-games-center__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-games-center__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-games-center__feature-description {
  font-size: 1em;
  color: #CCCCCC;
}

.page-games-center__promotions {
  background-color: #1A2B42;
}

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

.page-games-center__promo-card {
  background-color: #0A192F;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 30px;
}

.page-games-center__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-games-center__promo-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-games-center__promo-text {
  font-size: 1em;
  color: #CCCCCC;
  margin-bottom: 25px;
  padding: 0 20px;
}

.page-games-center__note {
  font-size: 0.95em;
  color: #AAAAAA;
  text-align: center;
  margin-top: 40px;
  font-style: italic;
}

.page-games-center__responsible-gaming {
  background-color: #0A192F;
}

.page-games-center__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-games-center__list li {
  background-color: #1A2B42;
  margin-bottom: 10px;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #E0E0E0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.page-games-center__list li strong {
  color: #FFD700;
}

.page-games-center__cta {
  background: linear-gradient(45deg, #0A192F, #3a4a61); /* Dark blue to slightly lighter blue gradient */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-games-center__cta-content {
  position: relative;
  z-index: 2;
}

.page-games-center__cta-title {
  font-size: 3em;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-games-center__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 1.8;
}

.page-games-center__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-games-center__cta-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0.3;
  z-index: 1;
}

.page-games-center__cta-image {
  width: 100%;
  max-width: 800px; /* Adjust as needed */
  height: auto;
  object-fit: contain;
}

.highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-games-center__hero-title {
    font-size: 3em;
  }
  .page-games-center__hero-subtitle {
    font-size: 1.15em;
  }
  .page-games-center__section-title {
    font-size: 2em;
  }
  .page-games-center__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-games-center__hero {
    padding: 60px 0 30px;
  }
  .page-games-center__hero-title {
    font-size: 2.5em;
  }
  .page-games-center__hero-subtitle {
    font-size: 1em;
  }
  .page-games-center__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }
  .page-games-center__section {
    padding: 40px 0;
  }
  .page-games-center__section-title {
    font-size: 1.8em;
  }
  .page-games-center__section-description,
  .page-games-center__text-block,
  .page-games-center__feature-description,
  .page-games-center__promo-text,
  .page-games-center__note,
  .page-games-center__list li {
    font-size: 0.95em;
  }
  .page-games-center__game-card-title,
  .page-games-center__feature-title,
  .page-games-center__promo-title {
    font-size: 1.5em;
  }
  .page-games-center__cta-title {
    font-size: 2em;
  }
  .page-games-center__cta-description {
    font-size: 1.1em;
  }
  .page-games-center__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-games-center__hero-title {
    font-size: 2em;
  }
  .page-games-center__hero-subtitle {
    font-size: 0.9em;
  }
  .page-games-center__section-title {
    font-size: 1.6em;
  }
  .page-games-center__cta-title {
    font-size: 1.8em;
  }
  .page-games-center__btn {
    display: block;
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
  .page-games-center__category-grid,
  .page-games-center__features-grid,
  .page-games-center__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-games-center__hero-image-wrapper, .page-games-center__cta-image-wrapper {
    display: none; /* Hide images on very small screens for better performance/layout */
  }
}