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

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

.page-beginner-guide-registration__hero-section {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide-registration__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,pattern,subtle]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-beginner-guide-registration__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  color: #FFCC00; /* Wealth Gold for highlight */
}

.page-beginner-guide-registration__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  color: #e0e0e0;
}

.page-beginner-guide-registration__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

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

.page-beginner-guide-registration__btn--primary {
  background-color: #FFCC00; /* Wealth Gold */
  color: #003366; /* Betting Blue */
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-beginner-guide-registration__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-beginner-guide-registration__btn--secondary {
  background-color: transparent;
  color: #FFCC00; /* Wealth Gold */
  border: 2px solid #FFCC00;
}

.page-beginner-guide-registration__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-beginner-guide-registration__btn--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-beginner-guide-registration__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-beginner-guide-registration__section-title {
  font-size: 2.5em;
  color: #003366; /* Betting Blue */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-beginner-guide-registration__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-registration__steps-section {
  padding: 80px 0;
  background-color: #fff;
}

.page-beginner-guide-registration__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 40px;
}

.page-beginner-guide-registration__step-item:last-child {
  margin-bottom: 0;
}

.page-beginner-guide-registration__step-item--reverse {
  flex-direction: row-reverse;
}

.page-beginner-guide-registration__step-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #003366; /* Betting Blue */
  color: #FFCC00; /* Wealth Gold */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 51, 102, 0.2);
}

.page-beginner-guide-registration__step-content {
  flex-grow: 1;
}

.page-beginner-guide-registration__step-title {
  font-size: 1.8em;
  color: #003366; /* Betting Blue */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-beginner-guide-registration__step-content p {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
}

.page-beginner-guide-registration__step-content ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #444;
}

.page-beginner-guide-registration__step-content ul li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-beginner-guide-registration__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: block;
}

.page-beginner-guide-registration__final-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.page-beginner-guide-registration__tips-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.page-beginner-guide-registration__tips-list {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-beginner-guide-registration__tips-list li {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: #333;
  border-left: 5px solid #FFCC00; /* Wealth Gold accent */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide-registration__tips-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-registration__tips-list li strong {
  color: #003366; /* Betting Blue */
}

.page-beginner-guide-registration__faq-section {
  padding: 80px 0;
  background-color: #e6edf2;
}

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

.page-beginner-guide-registration__faq-question {
  font-size: 1.4em;
  color: #003366; /* Betting Blue */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-beginner-guide-registration__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFCC00;
  font-weight: bold;
}

.page-beginner-guide-registration__faq-question.active::after {
  content: '-';
}

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

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

.page-beginner-guide-registration__cta-section {
  background: linear-gradient(135deg, #003366, #336699);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

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

.page-beginner-guide-registration__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-beginner-guide-registration .highlight {
  color: #FFCC00;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-beginner-guide-registration__hero-title {
    font-size: 2.5em;
  }
  .page-beginner-guide-registration__section-title {
    font-size: 2em;
  }
  .page-beginner-guide-registration__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-beginner-guide-registration__step-item--reverse {
    flex-direction: column;
  }
  .page-beginner-guide-registration__step-icon {
    margin-bottom: 20px;
  }
  .page-beginner-guide-registration__final-actions {
    justify-content: center;
  }
  .page-beginner-guide-registration__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-registration__hero-title {
    font-size: 2em;
  }
  .page-beginner-guide-registration__hero-subtitle {
    font-size: 1em;
  }
  .page-beginner-guide-registration__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-beginner-guide-registration__btn {
    width: 100%;
  }
  .page-beginner-guide-registration__section-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-registration__section-description {
    font-size: 1em;
  }
  .page-beginner-guide-registration__step-title {
    font-size: 1.5em;
  }
  .page-beginner-guide-registration__step-content p,
  .page-beginner-guide-registration__step-content ul li,
  .page-beginner-guide-registration__tips-list li,
  .page-beginner-guide-registration__faq-answer {
    font-size: 0.95em;
  }
  .page-beginner-guide-registration__cta-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-registration__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-registration__hero-section,
  .page-beginner-guide-registration__steps-section,
  .page-beginner-guide-registration__tips-section,
  .page-beginner-guide-registration__faq-section,
  .page-beginner-guide-registration__cta-section {
    padding: 50px 0;
  }
  .page-beginner-guide-registration__hero-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-registration__section-title {
    font-size: 1.6em;
  }
  .page-beginner-guide-registration__step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page-beginner-guide-registration__faq-question {
    font-size: 1.2em;
  }
}