/* style/games-mahjong-games-tutorial.css */
.page-games-mahjong-games-tutorial {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F5F5DC; /* Light beige for text on dark background */
  background-color: #0A2239;
}

.page-games-mahjong-games-tutorial__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-games-mahjong-games-tutorial__hero {
  background: linear-gradient(135deg, #0A2239 0%, #FFD700 100%);
  padding: 100px 0;
  text-align: center;
  color: #0A2239; /* Dark text for hero section */
  position: relative;
  overflow: hidden;
}

.page-games-mahjong-games-tutorial__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(45deg);
  animation: page-games-mahjong-games-tutorial__pulse 4s infinite alternate;
}

@keyframes page-games-mahjong-games-tutorial__pulse {
  0% { transform: scale(0.8) rotate(45deg); opacity: 0.5; }
  100% { transform: scale(1.2) rotate(45deg); opacity: 1; }
}

.page-games-mahjong-games-tutorial__title {
  font-size: 3.5em;
  color: #0A2239; /* Dark blue/black for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-games-mahjong-games-tutorial__subtitle {
  font-size: 1.3em;
  color: #333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-games-mahjong-games-tutorial__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-games-mahjong-games-tutorial__button:hover {
  background-color: #FFC400; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-games-mahjong-games-tutorial__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-games-mahjong-games-tutorial__section:last-of-type {
  border-bottom: none;
}

.page-games-mahjong-games-tutorial__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-games-mahjong-games-tutorial__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 30px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-games-mahjong-games-tutorial p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #F5F5DC;
}

.page-games-mahjong-games-tutorial__list,
.page-games-mahjong-games-tutorial__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #F5F5DC;
}

.page-games-mahjong-games-tutorial__ordered-list {
  list-style-type: decimal;
}

.page-games-mahjong-games-tutorial__list li,
.page-games-mahjong-games-tutorial__ordered-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
  line-height: 1.8;
}

.page-games-mahjong-games-tutorial__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFD700;
}

.page-games-mahjong-games-tutorial__cta {
  text-align: center;
  padding: 80px 0;
  background-color: #0A2239;
}

.page-games-mahjong-games-tutorial__cta p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F5F5DC;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-games-mahjong-games-tutorial__title {
    font-size: 2.5em;
  }

  .page-games-mahjong-games-tutorial__subtitle {
    font-size: 1.1em;
  }

  .page-games-mahjong-games-tutorial__section-title {
    font-size: 2em;
  }

  .page-games-mahjong-games-tutorial__sub-title {
    font-size: 1.5em;
  }

  .page-games-mahjong-games-tutorial__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-games-mahjong-games-tutorial__section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-games-mahjong-games-tutorial__title {
    font-size: 2em;
  }

  .page-games-mahjong-games-tutorial__subtitle {
    font-size: 1em;
  }

  .page-games-mahjong-games-tutorial__section-title {
    font-size: 1.8em;
  }

  .page-games-mahjong-games-tutorial__sub-title {
    font-size: 1.3em;
  }

  .page-games-mahjong-games-tutorial p,
  .page-games-mahjong-games-tutorial__list li,
  .page-games-mahjong-games-tutorial__ordered-list li {
    font-size: 0.95em;
  }
}