/* style/beginner-guide-first-deposit.css */
:root {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-color-dark-bg: #ffffff;
  --text-color-light-bg: #333333;
  --card-bg-dark-theme: rgba(255, 255, 255, 0.08);
  --card-border-dark-theme: rgba(255, 255, 255, 0.15);
  --section-padding-desktop: 80px 0;
  --section-padding-mobile: 40px 0;
}

.page-beginner-guide-first-deposit {
  color: var(--text-color-dark-bg); /* Body background is #000000 (dark), so use light text */
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
}

/* Fixed Navigation Bar Spacing */
.page-beginner-guide-first-deposit__hero-section {
  padding-top: 120px; /* Adjust based on actual header height */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-beginner-guide-first-deposit__main-title {
  font-size: 3.2em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-first-deposit__description {
  font-size: 1.2em;
  color: var(--text-color-dark-bg);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-first-deposit__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-beginner-guide-first-deposit__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-beginner-guide-first-deposit__btn-primary {
  background: var(--primary-color);
  color: #000000; /* Ensure contrast with primary color */
}

.page-beginner-guide-first-deposit__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-first-deposit__btn-secondary {
  background: var(--secondary-color);
  color: var(--text-color-dark-bg);
  border: 1px solid var(--primary-color);
}

.page-beginner-guide-first-deposit__btn-secondary:hover {
  background: #6b0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-first-deposit__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
  color: var(--primary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-first-deposit__content-section {
  padding: var(--section-padding-desktop);
}

.page-beginner-guide-first-deposit__dark-bg {
  background: #000000;
  color: var(--text-color-dark-bg);
}

.page-beginner-guide-first-deposit__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-color-dark-bg);
}

.page-beginner-guide-first-deposit__text-block a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-beginner-guide-first-deposit__text-block a:hover {
  text-decoration: underline;
}

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

.page-beginner-guide-first-deposit__feature-card {
  background: var(--card-bg-dark-theme);
  border: 1px solid var(--card-border-dark-theme);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-color-dark-bg);
}

.page-beginner-guide-first-deposit__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-first-deposit__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.page-beginner-guide-first-deposit__feature-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-beginner-guide-first-deposit__feature-text {
  font-size: 1em;
  color: var(--text-color-dark-bg);
}

.page-beginner-guide-first-deposit__steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.page-beginner-guide-first-deposit__step-item {
  display: flex;
  align-items: flex-start;
  background: var(--card-bg-dark-theme);
  border: 1px solid var(--card-border-dark-theme);
  border-radius: 10px;
  padding: 25px;
  transition: box-shadow 0.3s ease;
}

.page-beginner-guide-first-deposit__step-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.page-beginner-guide-first-deposit__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--primary-color);
  margin-right: 20px;
  flex-shrink: 0;
  line-height: 1;
}

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

.page-beginner-guide-first-deposit__step-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-beginner-guide-first-deposit__step-content p {
  color: var(--text-color-dark-bg);
  font-size: 1em;
}

.page-beginner-guide-first-deposit__payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-beginner-guide-first-deposit__payment-card {
  background: var(--card-bg-dark-theme);
  border: 1px solid var(--card-border-dark-theme);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-color-dark-bg);
}

.page-beginner-guide-first-deposit__payment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-first-deposit__payment-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.page-beginner-guide-first-deposit__payment-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-beginner-guide-first-deposit__promo-card {
  background: var(--card-bg-dark-theme);
  border: 1px solid var(--card-border-dark-theme);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 40px;
  overflow: hidden;
}

.page-beginner-guide-first-deposit__promo-image {
  flex: 1 1 40%;
  min-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
  max-width: 100%;
}

.page-beginner-guide-first-deposit__promo-details {
  flex: 1 1 55%;
  padding: 30px;
  color: var(--text-color-dark-bg);
}

.page-beginner-guide-first-deposit__promo-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-beginner-guide-first-deposit__promo-text {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-beginner-guide-first-deposit__promo-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-beginner-guide-first-deposit__promo-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1em;
}

.page-beginner-guide-first-deposit__list-icon {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.2em;
}

.page-beginner-guide-first-deposit__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-beginner-guide-first-deposit__tips-item {
  background: var(--card-bg-dark-theme);
  border: 1px solid var(--card-border-dark-theme);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: var(--text-color-dark-bg);
  font-size: 1.05em;
}

.page-beginner-guide-first-deposit__tips-item .page-beginner-guide-first-deposit__list-icon {
  font-size: 1em;
  margin-top: 4px;
}

/* FAQ Section */
.page-beginner-guide-first-deposit__faq-section {
  padding: var(--section-padding-desktop);
  background: #000000;
  color: var(--text-color-dark-bg);
}

.page-beginner-guide-first-deposit__faq-list {
  margin-top: 40px;
}

.page-beginner-guide-first-deposit__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--card-bg-dark-theme);
  border: 1px solid var(--card-border-dark-theme);
}

.page-beginner-guide-first-deposit__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--card-border-dark-theme);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-beginner-guide-first-deposit__faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.page-beginner-guide-first-deposit__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary-color);
  pointer-events: none;
}

.page-beginner-guide-first-deposit__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-beginner-guide-first-deposit__faq-item.active .page-beginner-guide-first-deposit__faq-toggle {
  color: var(--text-color-dark-bg);
  transform: rotate(45deg); /* Keep it consistent with the '-' symbol */
}

.page-beginner-guide-first-deposit__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: var(--text-color-dark-bg);
  font-size: 1em;
}

.page-beginner-guide-first-deposit__faq-item.active .page-beginner-guide-first-deposit__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 0 8px 8px;
}

.page-beginner-guide-first-deposit__cta-bottom-section {
  padding: var(--section-padding-desktop);
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  text-align: center;
}

.page-beginner-guide-first-deposit__cta-bottom-section .page-beginner-guide-first-deposit__section-title {
  color: var(--primary-color);
}

.page-beginner-guide-first-deposit__cta-bottom-section .page-beginner-guide-first-deposit__text-block {
  color: var(--text-color-dark-bg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-beginner-guide-first-deposit__main-title {
    font-size: 2.8em;
  }
  .page-beginner-guide-first-deposit__section-title {
    font-size: 2em;
  }
  .page-beginner-guide-first-deposit__promo-card {
    flex-direction: column;
  }
  .page-beginner-guide-first-deposit__promo-image {
    border-radius: 10px 10px 0 0;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-first-deposit__hero-section {
    padding-top: 100px !important; /* Mobile padding-top */
    padding-bottom: 40px;
  }
  .page-beginner-guide-first-deposit__container {
    padding: 0 15px;
  }
  .page-beginner-guide-first-deposit__main-title {
    font-size: 2.2em;
  }
  .page-beginner-guide-first-deposit__description {
    font-size: 1em;
  }
  .page-beginner-guide-first-deposit__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-beginner-guide-first-deposit__cta-button {
    font-size: 1em;
    padding: 12px 25px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-beginner-guide-first-deposit__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-beginner-guide-first-deposit__content-section {
    padding: var(--section-padding-mobile);
  }
  .page-beginner-guide-first-deposit__text-block {
    font-size: 0.95em;
  }
  .page-beginner-guide-first-deposit__feature-card,
  .page-beginner-guide-first-deposit__payment-card {
    padding: 20px;
  }
  .page-beginner-guide-first-deposit__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .page-beginner-guide-first-deposit__step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-beginner-guide-first-deposit__step-title {
    font-size: 1.4em;
  }
  .page-beginner-guide-first-deposit__promo-details {
    padding: 20px;
  }
  .page-beginner-guide-first-deposit__promo-title {
    font-size: 1.6em;
  }
  .page-beginner-guide-first-deposit__promo-text,
  .page-beginner-guide-first-deposit__promo-list li,
  .page-beginner-guide-first-deposit__tips-item {
    font-size: 0.95em;
  }
  .page-beginner-guide-first-deposit__faq-question {
    padding: 15px 20px;
  }
  .page-beginner-guide-first-deposit__faq-question h3 {
    font-size: 1.1em;
  }
  .page-beginner-guide-first-deposit__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-beginner-guide-first-deposit__faq-item.active .page-beginner-guide-first-deposit__faq-answer {
    padding: 15px 20px !important;
  }
  .page-beginner-guide-first-deposit img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-beginner-guide-first-deposit__section,
  .page-beginner-guide-first-deposit__card,
  .page-beginner-guide-first-deposit__container,
  .page-beginner-guide-first-deposit__feature-card,
  .page-beginner-guide-first-deposit__payment-card,
  .page-beginner-guide-first-deposit__promo-card,
  .page-beginner-guide-first-deposit__promo-details {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-beginner-guide-first-deposit__promo-image {
    width: 100% !important;
    border-radius: 10px 10px 0 0;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-first-deposit__main-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-first-deposit__section-title {
    font-size: 1.5em;
  }
  .page-beginner-guide-first-deposit__cta-button {
    padding: 10px 20px;
  }
  .page-beginner-guide-first-deposit__step-number {
    font-size: 2em;
  }
  .page-beginner-guide-first-deposit__step-title {
    font-size: 1.2em;
  }
  .page-beginner-guide-first-deposit__promo-title {
    font-size: 1.4em;
  }
}