/* style/beginner-guide.css */
.page-beginner-guide {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-beginner-guide__hero {
  background: linear-gradient(135deg, #0A2E36, #1a4a54);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-beginner-guide__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #E0B34C; /* Accent color for emphasis */
  font-weight: bold;
}

.page-beginner-guide__hero-subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

.page-beginner-guide__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-beginner-guide__button--primary {
  background-color: #E0B34C; /* Accent color */
  color: #0A2E36; /* Primary color for contrast */
  border: none;
  font-size: 1.1em;
}

.page-beginner-guide__button--primary:hover {
  background-color: #ffc966;
  color: #000;
}

.page-beginner-guide__button--secondary {
  background-color: #0A2E36;
  color: #E0B34C;
  border: 2px solid #E0B34C;
  font-size: 1em;
}

.page-beginner-guide__button--secondary:hover {
  background-color: #E0B34C;
  color: #0A2E36;
}

.page-beginner-guide__button--text {
  background: none;
  border: none;
  color: #0A2E36;
  padding: 5px 10px;
  text-decoration: underline;
  font-weight: normal;
}

.page-beginner-guide__button--text:hover {
  color: #E0B34C;
}

.page-beginner-guide__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide__section--intro {
  background-color: #f0f4f7;
  padding: 80px 0;
}

.page-beginner-guide__section-title {
  font-size: 2.2em;
  color: #0A2E36;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-beginner-guide__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: -20px auto 50px auto;
  color: #555;
}

.page-beginner-guide__content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-beginner-guide__content-block--reverse {
  flex-direction: row-reverse;
}

.page-beginner-guide__text-content {
  flex: 1;
}

.page-beginner-guide__text-content p {
  margin-bottom: 15px;
  color: #444;
}

.page-beginner-guide__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-beginner-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-beginner-guide__feature-item {
  background-color: #0A2E36;
  color: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide__feature-title {
  font-size: 1.4em;
  color: #E0B34C;
  margin-bottom: 15px;
}

.page-beginner-guide__feature-item p {
  color: #f0f0f0;
}

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

.page-beginner-guide__step-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

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

.page-beginner-guide__step-title {
  font-size: 1.5em;
  color: #0A2E36;
  margin-bottom: 15px;
}

.page-beginner-guide__step-item p {
  color: #555;
  margin-bottom: 20px;
}

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

.page-beginner-guide__term-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-left: 5px solid #E0B34C;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-beginner-guide__term-title {
  font-size: 1.3em;
  color: #0A2E36;
  margin-bottom: 10px;
}

.page-beginner-guide__term-item p {
  color: #555;
}

.page-beginner-guide__list {
  list-style: none;
  padding-left: 0;
}

.page-beginner-guide__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #444;
}

.page-beginner-guide__list li::before {
  content: '✔';
  color: #E0B34C;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-beginner-guide__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-beginner-guide__faq-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-beginner-guide__faq-question {
  font-size: 1.3em;
  color: #0A2E36;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-beginner-guide__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-beginner-guide__faq-answer {
  color: #555;
  margin-top: 10px;
  display: none;
}

.page-beginner-guide__faq-answer.active {
  display: block;
}

.page-beginner-guide__section--responsible-gaming {
  background-color: #f0f4f7;
}

.page-beginner-guide__section--cta {
  background-color: #0A2E36;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-beginner-guide__section--cta .page-beginner-guide__section-title {
  color: #E0B34C;
}

.page-beginner-guide__section--cta .page-beginner-guide__section-title::after {
  background-color: #f0f0f0;
}

.page-beginner-guide__section--cta .page-beginner-guide__section-description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-beginner-guide__cta-small-text {
  margin-top: 20px;
  font-size: 0.9em;
  color: #ccc;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-beginner-guide__hero-title {
    font-size: 2.2em;
  }

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

  .page-beginner-guide__content-block {
    flex-direction: column;
  }

  .page-beginner-guide__content-block--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide__hero {
    padding: 60px 0;
  }

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

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

  .page-beginner-guide__section {
    padding: 40px 0;
  }

  .page-beginner-guide__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }

  .page-beginner-guide__section-description {
    margin-bottom: 30px;
  }

  .page-beginner-guide__steps-grid, 
  .page-beginner-guide__terms-grid, 
  .page-beginner-guide__features {
    grid-template-columns: 1fr;
  }

  .page-beginner-guide__feature-item, 
  .page-beginner-guide__step-item, 
  .page-beginner-guide__term-item, 
  .page-beginner-guide__faq-item {
    padding: 20px;
  }

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

  .page-beginner-guide__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}