/* style/e-games.css */
.page-e-games {
  --primary-color: #0A192F;
  --secondary-color: #E0B400;
  --text-light: #FFFFFF;
  --text-dark: #0A192F;
  --bg-dark: #0A192F;
  --bg-light: #F0F2F5;
  --section-padding: 80px 0;
  font-family: 'Arial', sans-serif;
  color: var(--text-light);
  line-height: 1.6;
}

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

.page-e-games__hero {
  background-color: var(--bg-dark);
  background-image: linear-gradient(135deg, var(--primary-color) 0%, #1a2a46 100%);
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-e-games__hero-title {
  font-size: 3.5em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-e-games__hero-description {
  font-size: 1.4em;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-e-games__btn--primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.page-e-games__btn--primary:hover {
  background-color: #f5c72b;
  border-color: #f5c72b;
  transform: translateY(-2px);
}

.page-e-games__btn--secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-e-games__btn--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.page-e-games__btn--text {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
}

.page-e-games__btn--text:hover {
  color: #f5c72b;
  border-bottom-color: #f5c72b;
}

.page-e-games__hero-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  opacity: 0.2;
  z-index: 0;
}

.page-e-games__section-title {
  font-size: 2.8em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-e-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-e-games__text-content {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: rgba(255, 255, 255, 0.85);
}

.page-e-games__intro {
  background-color: var(--primary-color);
  color: var(--text-light);
}

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

.page-e-games__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(224, 180, 0, 0.2);
}

.page-e-games__feature-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-e-games__feature-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-e-games__feature-description {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.7);
}

.page-e-games__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-e-games__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

.section-padding {
  padding: var(--section-padding);
}

.section-dark-bg {
  background-color: #0d1e38;
}

.page-e-games__game-types {
  color: var(--text-light);
}

.page-e-games__game-type-card {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-e-games__game-type-card--reversed {
  flex-direction: row-reverse;
}

.page-e-games__card-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-e-games__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-e-games__card-content {
  flex: 1.5;
}

.page-e-games__card-title {
  font-size: 2em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-e-games__card-description {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.page-e-games__hiphop-connection {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-e-games__call-to-action {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-e-games__cta-title {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-e-games__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: rgba(10, 25, 47, 0.85);
}

.page-e-games__jackpot-info {
  color: var(--text-light);
}

.page-e-games__platform-specs {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-e-games__mobile-app-promo {
  background-color: rgba(224, 180, 0, 0.1);
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  padding: 40px;
  margin-top: 60px;
  text-align: center;
}

.page-e-games__mobile-app-image {
  max-width: 600px;
  margin-bottom: 30px;
  border: 2px solid var(--secondary-color);
}

.page-e-games__related-articles {
  color: var(--text-light);
}

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

.page-e-games__article-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(224, 180, 0, 0.2);
}

.page-e-games__article-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

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

.page-e-games__article-title a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-e-games__article-title a:hover {
  color: #f5c72b;
}

.page-e-games__article-description {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.page-e-games__contact-cta {
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-e-games__hero-title {
    font-size: 2.8em;
  }
  .page-e-games__hero-description {
    font-size: 1.2em;
  }
  .page-e-games__game-type-card {
    flex-direction: column;
  }
  .page-e-games__game-type-card--reversed {
    flex-direction: column;
  }
  .page-e-games__card-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-e-games__hero {
    padding: 80px 0 40px;
  }
  .page-e-games__hero-title {
    font-size: 2.2em;
  }
  .page-e-games__hero-description {
    font-size: 1em;
  }
  .page-e-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-e-games__btn {
    width: 80%;
    max-width: 300px;
    padding: 12px 25px;
  }
  .page-e-games__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-e-games__text-content {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-e-games__features-grid {
    grid-template-columns: 1fr;
  }
  .page-e-games__game-type-card {
    padding: 20px;
    margin-bottom: 50px;
  }
  .page-e-games__card-title {
    font-size: 1.8em;
  }
  .page-e-games__cta-title {
    font-size: 1.8em;
  }
  .page-e-games__cta-description {
    font-size: 1em;
  }
  .page-e-games__article-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-e-games__hero-title {
    font-size: 1.8em;
  }
  .page-e-games__hero-description {
    font-size: 0.9em;
  }
  .page-e-games__btn {
    font-size: 1em;
  }
  .page-e-games__section-title {
    font-size: 1.6em;
  }
  .page-e-games__card-title {
    font-size: 1.5em;
  }
  .page-e-games__cta-title {
    font-size: 1.5em;
  }
  .page-e-games__article-title {
    font-size: 1.3em;
  }
}