/* style/index-beginner-guide.css */
.page-index-beginner-guide {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray text for dark background */
  background-color: #0A0A0A; /* Main dark background */
}

.page-index-beginner-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-beginner-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
}

.page-index-beginner-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #F0F0F0;
}

.page-index-beginner-guide__keyword {
  color: #FFD700;
  font-weight: bold;
}

/* Hero Section */
.page-index-beginner-guide__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

.page-index-beginner-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-beginner-guide__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-index-beginner-guide__hero-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700; /* Accent color */
  color: #0A0A0A; /* Dark text for accent background */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-beginner-guide__hero-button:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-index-beginner-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.page-index-beginner-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Introduction Section */
.page-index-beginner-guide__introduction {
  padding: 60px 0;
  background-color: #1A1A1A;
}

/* Steps Section */
.page-index-beginner-guide__steps {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-index-beginner-guide__step-card {
  background-color: #1A1A1A;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-beginner-guide__step-icon {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #0A0A0A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-index-beginner-guide__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-beginner-guide__step-description {
  font-size: 1.1em;
  color: #F0F0F0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-beginner-guide__step-description ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
  margin-top: 15px;
}

.page-index-beginner-guide__step-description li {
  margin-bottom: 8px;
  color: #F0F0F0;
}

.page-index-beginner-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Advantages Section */
.page-index-beginner-guide__advantages {
  padding: 60px 0;
  background-color: #1A1A1A;
}

.page-index-beginner-guide__advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-beginner-guide__advantage-item {
  background-color: #0A0A0A;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-beginner-guide__advantage-item:hover {
  transform: translateY(-5px);
}

.page-index-beginner-guide__advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-index-beginner-guide__advantage-heading {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-beginner-guide__advantage-text {
  font-size: 1em;
  color: #E0E0E0;
}

/* Responsible Gaming Section */
.page-index-beginner-guide__responsible-gaming {
  padding: 60px 0;
  background-color: #0A0A0A;
  text-align: center;
}

.page-index-beginner-guide__responsible-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FFD700;
  color: #0A0A0A;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-beginner-guide__responsible-button:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

/* FAQ Section */
.page-index-beginner-guide__faq {
  padding: 60px 0;
  background-color: #1A1A1A;
}

.page-index-beginner-guide__faq-item {
  background-color: #0A0A0A;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-index-beginner-guide__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-beginner-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-index-beginner-guide__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-beginner-guide__faq-answer {
  font-size: 1em;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  text-align: justify;
}

.page-index-beginner-guide__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

/* Call to Action Section */
.page-index-beginner-guide__cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
  text-align: center;
}

.page-index-beginner-guide__cta-button {
  display: inline-block;
  padding: 18px 35px;
  background-color: #FFD700;
  color: #0A0A0A;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.3em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-beginner-guide__cta-button:hover {
  background-color: #E6C200;
  transform: translateY(-5px);
}

.page-index-beginner-guide__cta-secondary-button {
  display: inline-block;
  padding: 18px 35px;
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.3em;
  margin-top: 30px;
  margin-left: 20px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.page-index-beginner-guide__cta-secondary-button:hover {
  background-color: #FFD700;
  color: #0A0A0A;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-index-beginner-guide__hero-title {
    font-size: 2.5em;
  }

  .page-index-beginner-guide__hero-subtitle {
    font-size: 1.2em;
  }

  .page-index-beginner-guide__section-title {
    font-size: 2em;
  }

  .page-index-beginner-guide__advantage-grid {
    grid-template-columns: 1fr;
  }

  .page-index-beginner-guide__cta-button,
  .page-index-beginner-guide__cta-secondary-button {
    font-size: 1.1em;
    padding: 15px 25px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 20px;
  }

  .page-index-beginner-guide__cta-secondary-button {
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .page-index-beginner-guide__hero-title {
    font-size: 2em;
  }

  .page-index-beginner-guide__hero-subtitle {
    font-size: 1em;
  }

  .page-index-beginner-guide__section-title {
    font-size: 1.8em;
  }

  .page-index-beginner-guide__hero-button {
    font-size: 1em;
    padding: 12px 20px;
  }

  .page-index-beginner-guide__step-title {
    font-size: 1.5em;
  }

  .page-index-beginner-guide__step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
}