/* style/e-games.css */
.page-e-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

/* Hero Section */
.page-e-games__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #003366, #1a4a7e);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.page-e-games__hero-content {
  z-index: 10;
  max-width: 800px;
}

.page-e-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-e-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-e-games__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 30px;
  border-radius: 5px;
  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-e-games__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-e-games__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.page-e-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

/* General Section Styling */
.page-e-games__section {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-e-games__section:nth-of-type(even) {
  background-color: #f0f4f8;
}

.page-e-games__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-e-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-e-games__section-text {
  font-size: 1.1em;
  color: #555;
  text-align: justify;
  margin-bottom: 20px;
}

.page-e-games__section-text strong.keyword {
  color: #003366;
  font-weight: bold;
}

/* Categories Grid */
.page-e-games__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-e-games__category-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-e-games__category-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-e-games__category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-e-games__category-title {
  font-size: 1.5em;
  color: #003366;
  padding: 20px;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-e-games__category-description {
  font-size: 1em;
  color: #666;
  padding: 0 20px 20px;
}

/* Benefits Grid */
.page-e-games__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-e-games__benefit-item {
  background-color: #e0f2f7;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: background-color 0.3s ease;
  border: 1px solid #b3e5fc;
}

.page-e-games__benefit-item:hover {
  background-color: #cceeff;
}

.page-e-games__benefit-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
}

.page-e-games__benefit-description {
  font-size: 1em;
  color: #555;
}

/* Get Started Section */
.page-e-games__get-started {
  background-color: #003366;
  color: #fff;
}

.page-e-games__get-started .page-e-games__section-title {
  color: #FFD700;
}

.page-e-games__get-started .page-e-games__section-title::after {
  background-color: #fff;
}

.page-e-games__get-started .page-e-games__section-text {
  color: #e0e0e0;
}

.page-e-games__get-started .page-e-games__section-text strong.keyword {
  color: #FFD700;
}

.page-e-games__steps-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  counter-reset: step-counter;
}

.page-e-games__steps-list li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 20px 30px;
  border-radius: 8px;
  position: relative;
  padding-left: 60px;
  font-size: 1.1em;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-e-games__steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #003366;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-e-games__cta-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-e-games__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-e-games__cta-button--large {
  padding: 20px 60px;
  font-size: 1.5em;
}

/* Featured Games */
.page-e-games__game-list {
  list-style: disc;
  margin: 30px auto;
  max-width: 800px;
  padding-left: 40px;
  color: #555;
}

.page-e-games__game-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-e-games__game-list li strong {
  color: #003366;
}

/* Sub-pages section */
.page-e-games__sub-pages {
  background-color: #f0f4f8;
}

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

.page-e-games__sub-page-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
}

.page-e-games__sub-page-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-e-games__sub-page-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.page-e-games__sub-page-title {
  font-size: 1.3em;
  color: #003366;
  padding: 15px 20px 0;
  margin-top: 0;
  margin-bottom: 5px;
  flex-grow: 1;
}

.page-e-games__sub-page-title a {
  text-decoration: none;
  color: inherit;
}

.page-e-games__sub-page-title a:hover {
  text-decoration: underline;
}

.page-e-games__sub-page-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px 15px;
}

.page-e-games__sub-page-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-e-games__sub-page-button:hover {
  background-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-e-games__hero-title {
    font-size: 3em;
  }
  .page-e-games__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-e-games__hero {
    padding: 60px 15px;
  }
  .page-e-games__hero-title {
    font-size: 2.5em;
  }
  .page-e-games__hero-description {
    font-size: 1em;
  }
  .page-e-games__section {
    padding: 40px 0;
  }
  .page-e-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-e-games__category-grid, .page-e-games__benefits-grid, .page-e-games__sub-page-list {
    grid-template-columns: 1fr;
  }
  .page-e-games__steps-list li {
    padding: 15px 20px 15px 50px;
    font-size: 1em;
  }
  .page-e-games__steps-list li::before {
    width: 25px;
    height: 25px;
    font-size: 1em;
    left: 15px;
  }
  .page-e-games__cta-button--large {
    padding: 15px 40px;
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-e-games__hero-title {
    font-size: 2em;
  }
  .page-e-games__hero-description {
    font-size: 0.9em;
  }
  .page-e-games__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-e-games__section-title {
    font-size: 1.5em;
  }
  .page-e-games__section-text, .page-e-games__category-description, .page-e-games__benefit-description, .page-e-games__sub-page-description {
    font-size: 0.95em;
  }
  .page-e-games__category-title, .page-e-games__benefit-title {
    font-size: 1.3em;
  }
  .page-e-games__sub-page-title {
    font-size: 1.2em;
  }
  .page-e-games__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-e-games__cta-button--large {
    padding: 15px 30px;
    font-size: 1.2em;
  }
}