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

.page-games-center__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-games-center__section:nth-child(even) {
  background-color: rgba(255, 215, 0, 0.05); /* Slightly lighter background for contrast */
}

.page-games-center__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-games-center__section-intro {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #B0B0B0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-games-center__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A192F 0%, #1a3055 100%); /* Gradient background */
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
  position: relative;
}

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

.page-games-center__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-games-center__hero-title {
  font-size: 3.8em;
  color: #FFD700; /* Gold for main hero title */
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-games-center__hero-description {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-games-center__hero-image {
  margin-top: 50px;
  max-width: 80%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-games-center__hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.page-games-center__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

.page-games-center__btn--link {
  background-color: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 10px 25px;
  font-size: 1em;
  border-radius: 5px;
  margin-top: 15px;
}

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

/* Why Choose Section */
.page-games-center__why-choose {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-games-center__feature-item {
  background-color: #1A2A42; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-games-center__feature-item:hover {
  transform: translateY(-10px);
  background-color: #2A3F5C;
}

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

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

.page-games-center__feature-text {
  font-size: 1em;
  color: #B0B0B0;
}

/* Game Categories Section */
.page-games-center__game-categories {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-games-center__category-item {
  background-color: #1A2A42;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.page-games-center__category-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-games-center__category-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-games-center__category-item h3 {
  padding: 20px 25px 10px;
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 0;
}

.page-games-center__category-description {
  padding: 0 25px 20px;
  font-size: 0.95em;
  color: #B0B0B0;
  flex-grow: 1;
}

.page-games-center__category-item .page-games-center__btn--link {
  align-self: flex-start;
  margin: 0 25px 25px;
}

/* App Promo Section */
.page-games-center__app-promo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
  text-align: left;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-games-center__app-content {
  flex: 1;
  max-width: 600px;
}

.page-games-center__app-promo .page-games-center__section-title {
  text-align: left;
  font-size: 2.5em;
}

.page-games-center__app-description {
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 30px;
}

.page-games-center__app-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

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

.page-games-center__app-icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

.page-games-center__app-image {
  flex: 1;
  max-width: 400px;
}

.page-games-center__app-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Promotions Section */
.page-games-center__promotions {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-games-center__promo-item {
  background-color: #1A2A42;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-games-center__promo-item:hover {
  transform: translateY(-8px);
}

.page-games-center__promo-img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-games-center__promo-text {
  font-size: 1em;
  color: #B0B0B0;
}

.page-games-center__promo-action {
  margin-top: 50px;
}

/* Registration Guide Section */
.page-games-center__registration-guide {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-games-center__step-item {
  background-color: #1A2A42;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-games-center__step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #FFD700;
  color: #0A192F;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

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

.page-games-center__step-text {
  font-size: 1em;
  color: #B0B0B0;
}

.page-games-center__registration-action {
  margin-top: 50px;
}

/* Safety Commitment Section */
.page-games-center__safety-commitment {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-games-center__safety-item {
  background-color: #1A2A42;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-games-center__safety-item:hover {
  transform: translateY(-8px);
}

.page-games-center__safety-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-games-center__safety-text {
  font-size: 1em;
  color: #B0B0B0;
}

/* Final CTA Section */
.page-games-center__cta-final {
  background: linear-gradient(90deg, #0A192F, #FFD700);
  padding: 80px 20px;
  color: #0A192F;
  text-align: center;
}

.page-games-center__cta-final .page-games-center__section-title {
  color: #0A192F;
  text-shadow: none;
}

.page-games-center__cta-final .page-games-center__section-intro {
  color: #333;
}

.page-games-center__cta-final .page-games-center__btn--primary {
  background-color: #0A192F;
  color: #FFD700;
  border-color: #0A192F;
}

.page-games-center__cta-final .page-games-center__btn--primary:hover {
  background-color: #1a3055;
  border-color: #1a3055;
}

.page-games-center__cta-final .page-games-center__btn--secondary {
  background-color: transparent;
  color: #0A192F;
  border-color: #0A192F;
}

.page-games-center__cta-final .page-games-center__btn--secondary:hover {
  background-color: #0A192F;
  color: #FFD700;
}

.page-games-center__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-center__hero-title {
    font-size: 3em;
  }
  .page-games-center__hero-description {
    font-size: 1.3em;
  }
  .page-games-center__app-promo {
    flex-direction: column;
    text-align: center;
  }
  .page-games-center__app-promo .page-games-center__section-title {
    text-align: center;
  }
  .page-games-center__app-content,
  .page-games-center__app-image {
    max-width: 100%;
  }
  .page-games-center__app-benefits {
    text-align: left;
    padding-left: 20px;
  }
}

@media (max-width: 768px) {
  .page-games-center__section-title {
    font-size: 2.2em;
  }
  .page-games-center__hero-title {
    font-size: 2.5em;
  }
  .page-games-center__hero-description {
    font-size: 1.1em;
  }
  .page-games-center__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-games-center__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-games-center__features,
  .page-games-center__category-list,
  .page-games-center__promo-grid,
  .page-games-center__steps-grid,
  .page-games-center__safety-points {
    grid-template-columns: 1fr;
  }
  .page-games-center__app-benefits li {
    font-size: 1em;
  }
  .page-games-center__app-icon {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .page-games-center__section {
    padding: 40px 15px;
  }
  .page-games-center__section-title {
    font-size: 1.8em;
  }
  .page-games-center__hero-title {
    font-size: 2em;
  }
  .page-games-center__hero-description {
    font-size: 1em;
  }
  .page-games-center__feature-title,
  .page-games-center__category-title,
  .page-games-center__promo-title,
  .page-games-center__step-title,
  .page-games-center__safety-title {
    font-size: 1.4em;
  }
  .page-games-center__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-games-center__step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.8em;
  }
  .page-games-center__cta-actions {
    flex-direction: column;
  }
}