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

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

.page-beginner-guide__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1A3F6D 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-beginner-guide__hero-subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
  color: #e0e0e0;
}

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

.page-beginner-guide__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Dark Blue */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-beginner-guide__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-beginner-guide__btn--secondary {
  background-color: #DC3545; /* Red */
  color: #fff;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.page-beginner-guide__btn--secondary:hover {
  background-color: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.6);
}

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

.page-beginner-guide__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #0A2342;
  color: #FFD700;
}

.page-beginner-guide__btn--small:hover {
  background-color: #1A3F6D;
  color: #fff;
}

.page-beginner-guide__btn--center {
  display: block;
  margin: 40px auto 0;
  width: fit-content;
}

.page-beginner-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-beginner-guide__section:last-of-type {
  border-bottom: none;
}

.page-beginner-guide__section-title {
  font-size: 2.5em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
  position: relative;
}

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

.page-beginner-guide__why-68win .page-beginner-guide__section-title, 
.page-beginner-guide__registration-login .page-beginner-guide__section-title, 
.page-beginner-guide__finance-guide .page-beginner-guide__section-title, 
.page-beginner-guide__game-tips .page-beginner-guide__section-title, 
.page-beginner-guide__security-responsible .page-beginner-guide__section-title, 
.page-beginner-guide__promotions .page-beginner-guide__section-title, 
.page-beginner-guide__faq .page-beginner-guide__section-title,
.page-beginner-guide__related-guides .page-beginner-guide__section-title {
  color: #0A2342;
}

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

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

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

.page-beginner-guide__text-content h3 {
  font-size: 1.8em;
  color: #0A2342;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.page-beginner-guide__text-content ul, .page-beginner-guide__text-content ol {
  list-style-position: inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-beginner-guide__text-content ul li, .page-beginner-guide__text-content ol li {
  margin-bottom: 10px;
  color: #555;
}

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

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

.page-beginner-guide__image-center {
  text-align: center;
  margin-top: 40px;
}

.page-beginner-guide__img--large {
  max-width: 80%;
}

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

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

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

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

.page-beginner-guide__step-item p {
  color: #666;
  font-size: 0.95em;
}

.page-beginner-guide__promotions {
  background-color: #0A2342;
  color: #fff;
}

.page-beginner-guide__promotions .page-beginner-guide__section-title {
  color: #FFD700;
}

.page-beginner-guide__promotions .page-beginner-guide__section-title::after {
  background-color: #DC3545;
}

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

.page-beginner-guide__promotion-item {
  background-color: #1A3F6D;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide__promotion-item h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin: 20px 0 15px;
}

.page-beginner-guide__promotion-item p {
  color: #e0e0e0;
  font-size: 0.95em;
}

.page-beginner-guide__promotion-img {
  max-width: 150px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide__promotion-note {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: #ccc;
}

.page-beginner-guide__faq {
  background-color: #f0f2f5;
}

.page-beginner-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-beginner-guide__faq-item {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.page-beginner-guide__faq-question {
  font-size: 1.4em;
  color: #0A2342;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: 600;
}

.page-beginner-guide__faq-answer {
  color: #555;
  font-size: 1em;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

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

.page-beginner-guide__related-guides {
  background-color: #fff;
}

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

.page-beginner-guide__guide-item {
  background-color: #fefefe;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide__guide-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide__guide-item h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-beginner-guide__guide-item h3 a {
  color: #0A2342;
  text-decoration: none;
  font-weight: bold;
}

.page-beginner-guide__guide-item h3 a:hover {
  color: #FFD700;
}

.page-beginner-guide__guide-item p {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-beginner-guide__cta-final {
  background: linear-gradient(135deg, #0A2342, #1A3F6D);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-beginner-guide__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-beginner-guide__cta-text {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-beginner-guide__hero-title {
    font-size: 2.5em;
  }
  .page-beginner-guide__hero-subtitle {
    font-size: 1.1em;
  }
  .page-beginner-guide__section-title {
    font-size: 2em;
  }
  .page-beginner-guide__content-grid {
    flex-direction: column;
  }
  .page-beginner-guide__content-grid--reverse {
    flex-direction: column;
  }
  .page-beginner-guide__img--large {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide__hero-section {
    padding: 60px 0;
  }
  .page-beginner-guide__hero-title {
    font-size: 2em;
  }
  .page-beginner-guide__hero-subtitle {
    font-size: 1em;
  }
  .page-beginner-guide__section {
    padding: 40px 0;
  }
  .page-beginner-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-beginner-guide__text-content h3 {
    font-size: 1.5em;
  }
  .page-beginner-guide__step-item, .page-beginner-guide__promotion-item, .page-beginner-guide__guide-item {
    padding: 20px;
  }
  .page-beginner-guide__faq-question {
    font-size: 1.2em;
  }
  .page-beginner-guide__cta-title {
    font-size: 2.2em;
  }
  .page-beginner-guide__cta-text {
    font-size: 1em;
  }
  .page-beginner-guide__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide__hero-section {
    padding: 40px 0;
  }
  .page-beginner-guide__hero-title {
    font-size: 1.8em;
  }
  .page-beginner-guide__hero-subtitle {
    font-size: 0.9em;
  }
  .page-beginner-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-beginner-guide__section-title {
    font-size: 1.5em;
  }
  .page-beginner-guide__text-content h3 {
    font-size: 1.3em;
  }
  .page-beginner-guide__step-by-step, .page-beginner-guide__promotion-list, .page-beginner-guide__guide-list {
    grid-template-columns: 1fr;
  }
  .page-beginner-guide__cta-title {
    font-size: 1.8em;
  }
  .page-beginner-guide__cta-text {
    font-size: 0.9em;
  }
}