/* style/game-guides-beginner-tutorial.css */

.page-game-guides-beginner-tutorial {
  font-family: 'Arial', sans-serif;
  color: #F0F8FF; /* Light text for dark background */
  background-color: #0A192F;
  line-height: 1.6;
}

.page-game-guides-beginner-tutorial__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-beginner-tutorial__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a66 100%); /* Dark blue gradient */
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides-beginner-tutorial__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-game-guides-beginner-tutorial__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-guides-beginner-tutorial__subtitle {
  font-size: 1.5em;
  color: #F0F8FF;
  margin-bottom: 30px;
}

.page-game-guides-beginner-tutorial__btn-primary,
.page-game-guides-beginner-tutorial__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 10px;
}

.page-game-guides-beginner-tutorial__btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-game-guides-beginner-tutorial__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-game-guides-beginner-tutorial__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-guides-beginner-tutorial__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-game-guides-beginner-tutorial__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%; /* Adjust as needed */
  max-width: 800px;
  opacity: 0.7;
  z-index: 0;
}

.page-game-guides-beginner-tutorial__hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.page-game-guides-beginner-tutorial__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-game-guides-beginner-tutorial__section:last-of-type {
  border-bottom: none;
}

.page-game-guides-beginner-tutorial__heading {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-game-guides-beginner-tutorial__subheading {
  font-size: 1.8em;
  color: #F0F8FF;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-guides-beginner-tutorial__paragraph {
  font-size: 1.1em;
  color: #F0F8FF;
  margin-bottom: 20px;
  text-align: justify;
}

.page-game-guides-beginner-tutorial__paragraph strong {
  color: #FFD700;
}

.page-game-guides-beginner-tutorial__paragraph a {
  color: #FFD700;
  text-decoration: none;
}

.page-game-guides-beginner-tutorial__paragraph a:hover {
  text-decoration: underline;
}

.page-game-guides-beginner-tutorial__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-game-guides-beginner-tutorial__list li {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
}

.page-game-guides-beginner-tutorial__list li p {
  margin-bottom: 0;
  font-size: 1em;
}

.page-game-guides-beginner-tutorial__list--styled li {
  padding-left: 30px;
  position: relative;
  background-color: transparent;
  border-left: none;
}

.page-game-guides-beginner-tutorial__list--styled li::before {
  content: '▪';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1.6;
}

.page-game-guides-beginner-tutorial__list--checkmark li {
  padding-left: 35px;
  position: relative;
  background-color: transparent;
  border-left: none;
}

.page-game-guides-beginner-tutorial__list--checkmark li::before {
  content: '✔';
  color: #32CD32; /* Green checkmark */
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1.6;
}

.page-game-guides-beginner-tutorial__image-wrapper {
  margin: 30px auto;
  text-align: center;
}

.page-game-guides-beginner-tutorial__img-fullwidth {
  width: 100%;
  height: auto;
  border-radius: 8px;
  max-width: 900px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides-beginner-tutorial__img-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides-beginner-tutorial__image-caption {
  font-style: italic;
  color: #B0C4DE; /* Light blue grey */
  margin-top: 10px;
  font-size: 0.9em;
}

.page-game-guides-beginner-tutorial__btn-center {
  display: block;
  margin: 40px auto 20px auto;
  width: fit-content;
}

.page-game-guides-beginner-tutorial__cta-banner {
  background-color: #1a3a66; /* Slightly lighter dark blue */
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-game-guides-beginner-tutorial__banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-game-guides-beginner-tutorial__banner-content {
  z-index: 1;
  position: relative;
}

.page-game-guides-beginner-tutorial__banner-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-guides-beginner-tutorial__banner-text {
  font-size: 1.2em;
  color: #F0F8FF;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides-beginner-tutorial__download-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-game-guides-beginner-tutorial__download-item {
  background-color: #1a3a66;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-game-guides-beginner-tutorial__download-item:hover {
  transform: translateY(-5px);
}

.page-game-guides-beginner-tutorial__download-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-game-guides-beginner-tutorial__download-text {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-guides-beginner-tutorial__btn-download {
  background-color: #FFD700;
  color: #0A192F;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-game-guides-beginner-tutorial__btn-download:hover {
  background-color: #e6c200;
}

.page-game-guides-beginner-tutorial__paragraph--note {
  font-style: italic;
  color: #B0C4DE;
  text-align: center;
  margin-top: 30px;
}

.page-game-guides-beginner-tutorial__faq-item {
  background-color: #1a3a66;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-game-guides-beginner-tutorial__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: background-color 0.3s ease;
}

.page-game-guides-beginner-tutorial__faq-question:hover {
  background-color: #2c528c;
}

.page-game-guides-beginner-tutorial__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-game-guides-beginner-tutorial__faq-item.active .page-game-guides-beginner-tutorial__faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.page-game-guides-beginner-tutorial__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1.1em;
  color: #F0F8FF;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-game-guides-beginner-tutorial__faq-item.active .page-game-guides-beginner-tutorial__faq-answer {
  max-height: 200px; /* Adjust based on content */
  padding: 0 20px 20px 20px;
}

.page-game-guides-beginner-tutorial__faq-answer p {
  margin-bottom: 0;
}

.page-game-guides-beginner-tutorial__btn-large {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-guides-beginner-tutorial__hero {
    flex-direction: column;
    padding: 60px 0;
  }

  .page-game-guides-beginner-tutorial__hero-image {
    position: relative;
    width: 80%;
    margin-top: 30px;
    opacity: 1;
    max-width: none;
  }

  .page-game-guides-beginner-tutorial__title {
    font-size: 2.5em;
  }

  .page-game-guides-beginner-tutorial__subtitle {
    font-size: 1.2em;
  }

  .page-game-guides-beginner-tutorial__heading {
    font-size: 2em;
  }

  .page-game-guides-beginner-tutorial__subheading {
    font-size: 1.5em;
  }

  .page-game-guides-beginner-tutorial__paragraph {
    font-size: 1em;
  }

  .page-game-guides-beginner-tutorial__btn-primary,
  .page-game-guides-beginner-tutorial__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }

  .page-game-guides-beginner-tutorial__banner-title {
    font-size: 1.8em;
  }

  .page-game-guides-beginner-tutorial__banner-text {
    font-size: 1em;
  }

  .page-game-guides-beginner-tutorial__download-options {
    flex-direction: column;
    align-items: center;
  }

  .page-game-guides-beginner-tutorial__download-item {
    max-width: 90%;
  }
}

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

  .page-game-guides-beginner-tutorial__subtitle {
    font-size: 1em;
  }

  .page-game-guides-beginner-tutorial__hero-image {
    width: 90%;
  }

  .page-game-guides-beginner-tutorial__heading {
    font-size: 1.8em;
  }

  .page-game-guides-beginner-tutorial__btn-primary,
  .page-game-guides-beginner-tutorial__btn-secondary {
    width: 100%;
    box-sizing: border-box;
    margin: 5px 0;
  }

  .page-game-guides-beginner-tutorial__download-item {
    min-width: unset;
    width: 100%;
  }
}