.page-sedie-game-how-to-play {
  font-family: 'Arial', sans-serif;
  color: #F5E6D0; /* Light text for dark backgrounds */
  line-height: 1.6;
  background-color: #0A192F;
}

.page-sedie-game-how-to-play__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-sedie-game-how-to-play__hero-section {
  background: linear-gradient(135deg, #0A192F, #3a5068); /* Dark blue to slightly lighter dark blue for depth */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-sedie-game-how-to-play__main-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sedie-game-how-to-play__subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sedie-game-how-to-play__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-sedie-game-how-to-play__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-sedie-game-how-to-play__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-sedie-game-how-to-play__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-sedie-game-how-to-play__btn--secondary {
  background-color: #1a3a5b; /* A slightly lighter shade of primary dark blue */
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-sedie-game-how-to-play__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-sedie-game-how-to-play__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-sedie-game-how-to-play__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-sedie-game-how-to-play__content-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-sedie-game-how-to-play__content-section:last-of-type {
  border-bottom: none;
}

.page-sedie-game-how-to-play__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

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

.page-sedie-game-how-to-play__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-sedie-game-how-to-play__text-with-image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}

.page-sedie-game-how-to-play__text-with-image p {
  flex: 1;
  min-width: 300px;
  font-size: 1.1em;
}

.page-sedie-game-how-to-play__image {
  max-width: 45%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-sedie-game-how-to-play__image--right {
  order: 2;
}

.page-sedie-game-how-to-play__image--left {
  order: 1;
}

.page-sedie-game-how-to-play__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-sedie-game-how-to-play__list li {
  margin-bottom: 10px;
}

.page-sedie-game-how-to-play__list ul {
  list-style: circle;
  margin-left: 20px;
  margin-top: 5px;
}

.page-sedie-game-how-to-play__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
  background-color: #1A2B42;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-sedie-game-how-to-play__step-item .page-sedie-game-how-to-play__sub-title {
  margin-top: 0;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-sedie-game-how-to-play__step-item p {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 700px;
}

.page-sedie-game-how-to-play__step-item .page-sedie-game-how-to-play__image {
  max-width: 100%;
  margin-bottom: 20px;
}

.page-sedie-game-how-to-play__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-sedie-game-how-to-play__benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sedie-game-how-to-play__benefit-item {
  background-color: #1A2B42;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-sedie-game-how-to-play__benefit-item:hover {
  transform: translateY(-5px);
}

.page-sedie-game-how-to-play__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-sedie-game-how-to-play__benefit-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-sedie-game-how-to-play__benefit-item p {
  color: #E0E0E0;
  font-size: 1em;
}

.page-sedie-game-how-to-play__faq-item {
  background-color: #1A2B42;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-sedie-game-how-to-play__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-sedie-game-how-to-play__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
}

.page-sedie-game-how-to-play__faq-question.active::after {
  content: '-';
}

.page-sedie-game-how-to-play__faq-answer {
  font-size: 1.1em;
  color: #E0E0E0;
  display: none;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  margin-top: 15px;
}

.page-sedie-game-how-to-play__faq-answer.active {
  display: block;
}

.page-sedie-game-how-to-play__cta-banner {
  background: linear-gradient(90deg, #0A192F, #3a5068);
  border-radius: 15px;
  padding: 50px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-sedie-game-how-to-play__banner-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-sedie-game-how-to-play__banner-text {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-sedie-game-how-to-play__main-title {
    font-size: 2.8em;
  }

  .page-sedie-game-how-to-play__subtitle {
    font-size: 1.1em;
  }

  .page-sedie-game-how-to-play__section-title {
    font-size: 2em;
  }

  .page-sedie-game-how-to-play__sub-title {
    font-size: 1.5em;
  }

  .page-sedie-game-how-to-play__text-with-image .page-sedie-game-how-to-play__image {
    max-width: 100%;
    order: unset; /* Reset order for smaller screens */
  }
}

@media (max-width: 768px) {
  .page-sedie-game-how-to-play__hero-section {
    padding: 80px 0;
  }

  .page-sedie-game-how-to-play__main-title {
    font-size: 2.2em;
  }

  .page-sedie-game-how-to-play__subtitle {
    font-size: 1em;
  }

  .page-sedie-game-how-to-play__cta-group {
    flex-direction: column;
  }

  .page-sedie-game-how-to-play__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-sedie-game-how-to-play__section-title {
    font-size: 1.8em;
  }

  .page-sedie-game-how-to-play__sub-title {
    font-size: 1.3em;
  }

  .page-sedie-game-how-to-play__text-with-image {
    flex-direction: column;
    text-align: center;
  }

  .page-sedie-game-how-to-play__text-with-image p {
    min-width: unset;
  }

  .page-sedie-game-how-to-play__step-item {
    padding: 20px;
  }

  .page-sedie-game-how-to-play__benefit-grid {
    grid-template-columns: 1fr;
  }

  .page-sedie-game-how-to-play__banner-title {
    font-size: 2em;
  }

  .page-sedie-game-how-to-play__banner-text {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-sedie-game-how-to-play__hero-section {
    padding: 60px 0;
  }

  .page-sedie-game-how-to-play__main-title {
    font-size: 1.8em;
  }

  .page-sedie-game-how-to-play__subtitle {
    font-size: 0.9em;
  }

  .page-sedie-game-how-to-play__btn {
    width: 95%;
  }

  .page-sedie-game-how-to-play__section-title {
    font-size: 1.5em;
  }

  .page-sedie-game-how-to-play__sub-title {
    font-size: 1.1em;
  }

  .page-sedie-game-how-to-play__content-section {
    padding: 40px 0;
  }

  .page-sedie-game-how-to-play__cta-banner {
    padding: 30px;
  }

  .page-sedie-game-how-to-play__banner-title {
    font-size: 1.8em;
  }

  .page-sedie-game-how-to-play__banner-text {
    font-size: 0.9em;
  }
}