/* style/blog-123hero-registration-deposit-guide.css */
.page-blog-123hero-registration-deposit-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  background-color: var(--background-color);
}

.page-blog-123hero-registration-deposit-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  box-sizing: border-box;
  text-align: center;
}

.page-blog-123hero-registration-deposit-guide__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 40px;
}

.page-blog-123hero-registration-deposit-guide__hero-content {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-blog-123hero-registration-deposit-guide__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-123hero-registration-deposit-guide__description {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-123hero-registration-deposit-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.page-blog-123hero-registration-deposit-guide__btn-primary,
.page-blog-123hero-registration-deposit-guide__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

.page-blog-123hero-registration-deposit-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-123hero-registration-deposit-guide__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-123hero-registration-deposit-guide__btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 2px solid var(--border-color);
}

.page-blog-123hero-registration-deposit-guide__btn-secondary:hover {
  background-color: var(--border-color);
  color: #ffffff;
}

.page-blog-123hero-registration-deposit-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-blog-123hero-registration-deposit-guide__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-blog-123hero-registration-deposit-guide__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-main);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.page-blog-123hero-registration-deposit-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--deep-green);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-blog-123hero-registration-deposit-guide__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-blog-123hero-registration-deposit-guide__step-list,
.page-blog-123hero-registration-deposit-guide__game-list,
.page-blog-123hero-registration-deposit-guide__promo-list,
.page-blog-123hero-registration-deposit-guide__support-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-blog-123hero-registration-deposit-guide__step-item,
.page-blog-123hero-registration-deposit-guide__game-item,
.page-blog-123hero-registration-deposit-guide__promo-item,
.page-blog-123hero-registration-deposit-guide__support-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-123hero-registration-deposit-guide__step-title,
.page-blog-123hero-registration-deposit-guide__game-title,
.page-blog-123hero-registration-deposit-guide__promo-title,
.page-blog-123hero-registration-deposit-guide__support-item strong {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 15px;
}

.page-blog-123hero-registration-deposit-guide__step-description,
.page-blog-123hero-registration-deposit-guide__game-description,
.page-blog-123hero-registration-deposit-guide__promo-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-blog-123hero-registration-deposit-guide__sub-list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.page-blog-123hero-registration-deposit-guide__sub-item {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.page-blog-123hero-registration-deposit-guide__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-blog-123hero-registration-deposit-guide__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-blog-123hero-registration-deposit-guide__btn-center {
  display: block;
  margin: 30px auto 50px;
  width: fit-content;
}

.page-blog-123hero-registration-deposit-guide__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-blog-123hero-registration-deposit-guide__game-item {
  text-align: center;
}

.page-blog-123hero-registration-deposit-guide__game-title a {
  color: var(--text-main);
  text-decoration: none;
}

.page-blog-123hero-registration-deposit-guide__game-title a:hover {
  color: var(--gold);
}

.page-blog-123hero-registration-deposit-guide__text-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.page-blog-123hero-registration-deposit-guide__text-link:hover {
  text-decoration: underline;
}

.page-blog-123hero-registration-deposit-guide__faq-section {
  margin-top: 30px;
  margin-bottom: 50px;
}

.page-blog-123hero-registration-deposit-guide__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-blog-123hero-registration-deposit-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--divider);
  list-style: none; /* For details/summary */
}

.page-blog-123hero-registration-deposit-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-123hero-registration-deposit-guide__faq-question:hover {
  background-color: var(--primary-color);
}

.page-blog-123hero-registration-deposit-guide__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-left: 15px;
}

.page-blog-123hero-registration-deposit-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-blog-123hero-registration-deposit-guide__faq-item[open] .page-blog-123hero-registration-deposit-guide__faq-question {
  border-bottom: 1px solid var(--divider);
}

.page-blog-123hero-registration-deposit-guide__cta-buttons--final {
  margin-top: 40px;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-123hero-registration-deposit-guide__hero-image {
    width: 100%;
    height: 500px;
  }
}

@media (max-width: 768px) {
  .page-blog-123hero-registration-deposit-guide__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-123hero-registration-deposit-guide__hero-image {
    height: 300px;
    margin-bottom: 30px;
  }

  .page-blog-123hero-registration-deposit-guide__main-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .page-blog-123hero-registration-deposit-guide__description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .page-blog-123hero-registration-deposit-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-123hero-registration-deposit-guide__btn-primary,
  .page-blog-123hero-registration-deposit-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-123hero-registration-deposit-guide__content-area {
    padding: 40px 15px;
  }

  .page-blog-123hero-registration-deposit-guide__container {
    padding: 0;
  }

  .page-blog-123hero-registration-deposit-guide__section-title {
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-123hero-registration-deposit-guide__step-item,
  .page-blog-123hero-registration-deposit-guide__game-item,
  .page-blog-123hero-registration-deposit-guide__promo-item,
  .page-blog-123hero-registration-deposit-guide__support-item {
    padding: 20px;
  }

  .page-blog-123hero-registration-deposit-guide__step-title,
  .page-blog-123hero-registration-deposit-guide__game-title,
  .page-blog-123hero-registration-deposit-guide__promo-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .page-blog-123hero-registration-deposit-guide__text-block,
  .page-blog-123hero-registration-deposit-guide__step-description,
  .page-blog-123hero-registration-deposit-guide__game-description,
  .page-blog-123hero-registration-deposit-guide__promo-description,
  .page-blog-123hero-registration-deposit-guide__faq-answer p {
    font-size: 0.95rem;
  }

  .page-blog-123hero-registration-deposit-guide__game-list {
    grid-template-columns: 1fr;
  }

  /* Mobile image and video responsiveness */
  .page-blog-123hero-registration-deposit-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-123hero-registration-deposit-guide__image-wrapper,
  .page-blog-123hero-registration-deposit-guide__section,
  .page-blog-123hero-registration-deposit-guide__card,
  .page-blog-123hero-registration-deposit-guide__container,
  .page-blog-123hero-registration-deposit-guide__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-123hero-registration-deposit-guide__hero-section {
    padding-top: 10px !important; /* body handles header-offset */
  }
}

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

.page-blog-123hero-registration-deposit-guide__dark-bg {
  background-color: var(--background-color);
  color: var(--text-main);
}

.page-blog-123hero-registration-deposit-guide__card {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-blog-123hero-registration-deposit-guide__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
}

.page-blog-123hero-registration-deposit-guide__btn-secondary {
  border-color: var(--border-color);
  color: var(--text-main);
}

.page-blog-123hero-registration-deposit-guide__btn-secondary:hover {
  background-color: var(--border-color);
  color: #ffffff;
}

.page-blog-123hero-registration-deposit-guide__text-link {
  color: var(--gold-color);
}

.page-blog-123hero-registration-deposit-guide__faq-question {
  background-color: var(--deep-green);
  border-bottom-color: var(--divider-color);
}

.page-blog-123hero-registration-deposit-guide__faq-question:hover {
  background-color: var(--primary-color);
}

.page-blog-123hero-registration-deposit-guide__faq-toggle {
  color: var(--text-main);
}

.page-blog-123hero-registration-deposit-guide__faq-answer {
  color: var(--text-secondary);
}

.page-blog-123hero-registration-deposit-guide__faq-item[open] .page-blog-123hero-registration-deposit-guide__faq-question {
  border-bottom-color: var(--divider-color);
}