/* style/beginner-guide-registration-process.css */

/* Custom Colors */
:root {
  --s26bet-primary-color: #11A84E;
  --s26bet-secondary-color: #22C768;
  --s26bet-bg-card: #11271B;
  --s26bet-bg-main: #08160F;
  --s26bet-text-main: #F2FFF6;
  --s26bet-text-secondary: #A7D9B8;
  --s26bet-border-color: #2E7A4E;
  --s26bet-glow-color: #57E38D;
  --s26bet-gold-color: #F2C14E;
  --s26bet-divider-color: #1E3A2A;
  --s26bet-deep-green: #0A4B2C;
  --s26bet-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

/* Base styles for the page content, considering body background is dark from shared.css */
.page-beginner-guide-registration-process {
  background-color: var(--s26bet-bg-main);
  color: var(--s26bet-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-beginner-guide-registration-process__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-beginner-guide-registration-process__section-title {
  font-size: 2.5em;
  color: var(--s26bet-text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-beginner-guide-registration-process__section-description {
  font-size: 1.1em;
  color: var(--s26bet-text-secondary);
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-registration-process__text-block {
  font-size: 1.1em;
  color: var(--s26bet-text-main);
  margin-bottom: 30px;
}

.page-beginner-guide-registration-process__text-block p {
  margin-bottom: 15px;
}

.page-beginner-guide-registration-process__highlight {
  color: var(--s26bet-gold-color);
  font-weight: bold;
}

/* Hero Section */
.page-beginner-guide-registration-process__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  text-align: center;
}

.page-beginner-guide-registration-process__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.page-beginner-guide-registration-process__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image slightly for text readability */
}

.page-beginner-guide-registration-process__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-beginner-guide-registration-process__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size for H1 */
  color: var(--s26bet-gold-color);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-beginner-guide-registration-process__hero-description {
  font-size: 1.2em;
  color: var(--s26bet-text-main);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-registration-process__cta-button {
  display: inline-block;
  background: var(--s26bet-button-gradient);
  color: var(--s26bet-text-main);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.page-beginner-guide-registration-process__cta-button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-registration-process__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-beginner-guide-registration-process__center-cta {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Introduction Section */
.page-beginner-guide-registration-process__introduction-section {
  padding: 80px 0;
  background-color: var(--s26bet-bg-card);
}

.page-beginner-guide-registration-process__introduction-section .page-beginner-guide-registration-process__section-title,
.page-beginner-guide-registration-process__dark-section .page-beginner-guide-registration-process__section-title {
  color: var(--s26bet-gold-color);
}

.page-beginner-guide-registration-process__introduction-section .page-beginner-guide-registration-process__text-block p,
.page-beginner-guide-registration-process__dark-section .page-beginner-guide-registration-process__text-block p {
  color: var(--s26bet-text-main);
}

/* Conditions Section */
.page-beginner-guide-registration-process__conditions-section {
  padding: 80px 0;
  background-color: var(--s26bet-bg-main);
}

.page-beginner-guide-registration-process__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-beginner-guide-registration-process__list-item {
  background-color: var(--s26bet-bg-card);
  border-left: 5px solid var(--s26bet-primary-color);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: var(--s26bet-text-main);
}

.page-beginner-guide-registration-process__list-item strong {
  color: var(--s26bet-gold-color);
}

/* Steps Section */
.page-beginner-guide-registration-process__steps-section {
  padding: 80px 0;
  background-color: var(--s26bet-bg-card);
}

.page-beginner-guide-registration-process__step-card {
  background-color: var(--s26bet-bg-main);
  border: 1px solid var(--s26bet-border-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide-registration-process__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-beginner-guide-registration-process__step-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background-color: var(--s26bet-primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 0 5px var(--s26bet-secondary-color);
}

.page-beginner-guide-registration-process__step-icon {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: invert(100%); /* Make icon white */
  display: block; /* Ensure it's a block element */
}

.page-beginner-guide-registration-process__step-title {
  font-size: 1.8em;
  color: var(--s26bet-gold-color);
  margin-bottom: 15px;
}

.page-beginner-guide-registration-process__step-description {
  font-size: 1em;
  color: var(--s26bet-text-secondary);
  line-height: 1.7;
}

/* Verification Section */
.page-beginner-guide-registration-process__verification-section {
  padding: 80px 0;
  background-color: var(--s26bet-bg-main);
}

.page-beginner-guide-registration-process__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Notes Section */
.page-beginner-guide-registration-process__notes-section {
  padding: 80px 0;
  background-color: var(--s26bet-bg-card);
}

/* Next Steps Section */
.page-beginner-guide-registration-process__next-steps-section {
  padding: 80px 0;
  background-color: var(--s26bet-bg-main);
}

.page-beginner-guide-registration-process__ordered-list {
  list-style-type: decimal;
  padding-left: 25px;
  color: var(--s26bet-text-main);
}

.page-beginner-guide-registration-process__ordered-list .page-beginner-guide-registration-process__list-item {
  background-color: transparent;
  border-left: none;
  padding: 10px 0;
  margin-bottom: 5px;
  box-shadow: none;
  color: var(--s26bet-text-main);
}

.page-beginner-guide-registration-process__ordered-list .page-beginner-guide-registration-process__list-item strong {
  color: var(--s26bet-gold-color);
}

/* FAQ Section */
.page-beginner-guide-registration-process__faq-section {
  padding: 80px 0;
  background-color: var(--s26bet-bg-card);
}

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

.page-beginner-guide-registration-process__faq-item {
  background-color: var(--s26bet-bg-main);
  border: 1px solid var(--s26bet-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-registration-process__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: var(--s26bet-text-main);
  font-weight: bold;
  font-size: 1.1em;
  outline: none;
  list-style: none; /* Remove default marker */
}

.page-beginner-guide-registration-process__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit browsers */
}

.page-beginner-guide-registration-process__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-beginner-guide-registration-process__faq-qtext {
  color: var(--s26bet-text-main);
}

.page-beginner-guide-registration-process__faq-toggle {
  font-size: 1.5em;
  color: var(--s26bet-gold-color);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-beginner-guide-registration-process__faq-item[open] .page-beginner-guide-registration-process__faq-toggle {
  transform: rotate(45deg);
}

.page-beginner-guide-registration-process__faq-answer {
  padding: 0 20px 20px 20px;
  color: var(--s26bet-text-secondary);
  font-size: 1em;
}

.page-beginner-guide-registration-process__faq-answer p {
  margin: 0;
}

/* Conclusion Section */
.page-beginner-guide-registration-process__conclusion-section {
  padding: 80px 0;
  background-color: var(--s26bet-bg-main);
}

/* Dark background section for contrast */
.page-beginner-guide-registration-process__dark-section {
  background-color: var(--s26bet-bg-card);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-beginner-guide-registration-process__section-title {
    font-size: 2em;
  }
  .page-beginner-guide-registration-process__main-title {
    font-size: clamp(2em, 4vw, 3em);
  }
  .page-beginner-guide-registration-process__hero-description {
    font-size: 1.1em;
  }
  .page-beginner-guide-registration-process__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-beginner-guide-registration-process__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-registration-process__container {
    padding: 0 15px;
  }
  .page-beginner-guide-registration-process__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-beginner-guide-registration-process__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-beginner-guide-registration-process__hero-description {
    font-size: 1em;
  }
  .page-beginner-guide-registration-process__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-beginner-guide-registration-process__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-beginner-guide-registration-process__text-block {
    font-size: 1em;
  }
  .page-beginner-guide-registration-process__list-item,
  .page-beginner-guide-registration-process__step-card {
    padding: 20px;
  }
  .page-beginner-guide-registration-process__step-title {
    font-size: 1.5em;
  }
  .page-beginner-guide-registration-process__cta-button,
  .page-beginner-guide-registration-process__cta-button--large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    text-align: center;
  }
  .page-beginner-guide-registration-process__center-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }
  .page-beginner-guide-registration-process img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-beginner-guide-registration-process__hero-image-wrapper,
  .page-beginner-guide-registration-process__content-image,
  .page-beginner-guide-registration-process__step-icon-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-beginner-guide-registration-process__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }
  .page-beginner-guide-registration-process__faq-answer {
    padding: 0 15px 15px 15px;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-registration-process__section-title {
    font-size: 1.5em;
  }
  .page-beginner-guide-registration-process__main-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }
  .page-beginner-guide-registration-process__hero-description {
    font-size: 0.9em;
  }
  .page-beginner-guide-registration-process__step-title {
    font-size: 1.3em;
  }
  .page-beginner-guide-registration-process__step-icon-wrapper {
    width: 80px;
    height: 80px;
  }
  .page-beginner-guide-registration-process__faq-item summary {
    font-size: 0.95em;
  }
}