.page-e-games-latest-e-games-try-out {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #1A2A3A; /* Main dark background */
  line-height: 1.6;
}

.page-e-games-latest-e-games-try-out__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-e-games-latest-e-games-try-out__hero-section {
  background: linear-gradient(135deg, #1A2A3A 0%, #3a4d60 100%); /* Dark gradient */
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-e-games-latest-e-games-try-out__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary gold for main titles */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-e-games-latest-e-games-try-out__hero-subtitle {
  font-size: 1.4em;
  color: #C0C0C0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-e-games-latest-e-games-try-out__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-e-games-latest-e-games-try-out__section {
  padding: 80px 0;
  text-align: center;
}

.page-e-games-latest-e-games-try-out__section:nth-of-type(even) {
  background-color: #223546; /* Slightly lighter dark background */
}

.page-e-games-latest-e-games-try-out__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.page-e-games-latest-e-games-try-out__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-e-games-latest-e-games-try-out__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-e-games-latest-e-games-try-out__button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-e-games-latest-e-games-try-out__button--primary {
  background-color: #FFD700;
  color: #1A2A3A;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-e-games-latest-e-games-try-out__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-e-games-latest-e-games-try-out__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-e-games-latest-e-games-try-out__button--secondary:hover {
  background-color: #FFD700;
  color: #1A2A3A;
  transform: translateY(-3px);
}

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

.page-e-games-latest-e-games-try-out__feature-item {
  background-color: #223546;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-e-games-latest-e-games-try-out__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-e-games-latest-e-games-try-out__feature-item p {
  color: #B0B0B0;
}

.page-e-games-latest-e-games-try-out__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-e-games-latest-e-games-try-out__game-card {
  background-color: #223546;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.page-e-games-latest-e-games-try-out__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-e-games-latest-e-games-try-out__game-card h3 {
  font-size: 1.4em;
  color: #FFD700;
  padding: 20px 20px 10px;
}

.page-e-games-latest-e-games-try-out__game-card p {
  color: #B0B0B0;
  padding: 0 20px 20px;
}

.page-e-games-latest-e-games-try-out__how-to-play .page-e-games-latest-e-games-try-out__section-description {
  margin-bottom: 30px;
}

.page-e-games-latest-e-games-try-out__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  text-align: left;
}

.page-e-games-latest-e-games-try-out__steps-list li {
  background-color: #223546;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 80px;
  border-left: 5px solid #FFD700;
}

.page-e-games-latest-e-games-try-out__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1A2A3A;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

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

.page-e-games-latest-e-games-try-out__steps-list p {
  color: #B0B0B0;
}

.page-e-games-latest-e-games-try-out__security-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.page-e-games-latest-e-games-try-out__security-image {
  max-width: 45%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-e-games-latest-e-games-try-out__security-list {
  list-style: none;
  padding: 0;
  max-width: 50%;
  text-align: left;
}

.page-e-games-latest-e-games-try-out__security-list li {
  background-color: #223546;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-left: 4px solid #FFD700;
}

.page-e-games-latest-e-games-try-out__security-list-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 8px;
}

.page-e-games-latest-e-games-try-out__security-list p {
  color: #B0B0B0;
}

.page-e-games-latest-e-games-try-out__cta {
  background: linear-gradient(90deg, #1A2A3A, #3a4d60);
  padding: 80px 0;
}

.page-e-games-latest-e-games-try-out__cta-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-e-games-latest-e-games-try-out__faq-item {
  background-color: #223546;
  margin-bottom: 15px;
  padding: 25px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-e-games-latest-e-games-try-out__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-e-games-latest-e-games-try-out__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-e-games-latest-e-games-try-out__faq-item.active .page-e-games-latest-e-games-try-out__faq-question::after {
  transform: rotate(45deg);
}

.page-e-games-latest-e-games-try-out__faq-answer {
  color: #B0B0B0;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #33475e;
  margin-top: 10px;
}

.page-e-games-latest-e-games-try-out__faq-item.active .page-e-games-latest-e-games-try-out__faq-answer {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-e-games-latest-e-games-try-out__hero-title {
    font-size: 2.8em;
  }
  .page-e-games-latest-e-games-try-out__section-title {
    font-size: 2.2em;
  }
  .page-e-games-latest-e-games-try-out__security-content {
    flex-direction: column;
  }
  .page-e-games-latest-e-games-try-out__security-image,
  .page-e-games-latest-e-games-try-out__security-list {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-e-games-latest-e-games-try-out__hero-section {
    padding: 80px 0 40px;
  }
  .page-e-games-latest-e-games-try-out__hero-title {
    font-size: 2.2em;
  }
  .page-e-games-latest-e-games-try-out__hero-subtitle {
    font-size: 1.2em;
  }
  .page-e-games-latest-e-games-try-out__section {
    padding: 60px 0;
  }
  .page-e-games-latest-e-games-try-out__section-title {
    font-size: 1.8em;
  }
  .page-e-games-latest-e-games-try-out__features-grid,
  .page-e-games-latest-e-games-try-out__game-grid {
    grid-template-columns: 1fr;
  }
  .page-e-games-latest-e-games-try-out__steps-list li {
    padding-left: 60px;
  }
  .page-e-games-latest-e-games-try-out__steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    left: 15px;
  }
  .page-e-games-latest-e-games-try-out__feature-title,
  .page-e-games-latest-e-games-try-out__game-title,
  .page-e-games-latest-e-games-try-out__step-title,
  .page-e-games-latest-e-games-try-out__security-list-title,
  .page-e-games-latest-e-games-try-out__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-e-games-latest-e-games-try-out__hero-title {
    font-size: 1.8em;
  }
  .page-e-games-latest-e-games-try-out__hero-subtitle {
    font-size: 1em;
  }
  .page-e-games-latest-e-games-try-out__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-e-games-latest-e-games-try-out__section-title {
    font-size: 1.5em;
  }
  .page-e-games-latest-e-games-try-out__section-description {
    font-size: 0.9em;
  }
}