:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-bg: #C30808;
  --login-button-bg: #C30808;
  --register-login-font: #FFFF00;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-color-light: #FFFFFF;
  --border-color: #e0e0e0;
}

.page-resources-456win-deposit-withdrawal-tutorial {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-dark); /* Default text color for light body background */
  background-color: var(--background-color-light);
  line-height: 1.6;
}

.page-resources-456win-deposit-withdrawal-tutorial__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-456win-deposit-withdrawal-tutorial__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background: linear-gradient(135deg, var(--primary-color) 0%, #000000 100%); /* Using brand color with a dark gradient */
  color: var(--text-color-light);
  overflow: hidden; /* Ensure no overflow from image */
}

.page-resources-456win-deposit-withdrawal-tutorial__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-resources-456win-deposit-withdrawal-tutorial__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-resources-456win-deposit-withdrawal-tutorial__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-456win-deposit-withdrawal-tutorial__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  margin-top: -80px; /* Overlap with image slightly for visual appeal */
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-456win-deposit-withdrawal-tutorial__main-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--text-color-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-456win-deposit-withdrawal-tutorial__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color-light);
}

.page-resources-456win-deposit-withdrawal-tutorial__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--register-button-bg); /* Using specific register color */
  color: var(--register-login-font); /* Using specific font color */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 2px solid var(--register-login-font);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.page-resources-456win-deposit-withdrawal-tutorial__cta-button:hover {
  background: #a30606; /* Darken on hover */
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Content Sections */
.page-resources-456win-deposit-withdrawal-tutorial__content-section {
  padding: 60px 0;
  border-bottom: 1px solid #f0f0f0;
}

.page-resources-456win-deposit-withdrawal-tutorial__content-section:last-of-type {
  border-bottom: none;
}

.page-resources-456win-deposit-withdrawal-tutorial__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-456win-deposit-withdrawal-tutorial__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-resources-456win-deposit-withdrawal-tutorial__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-456win-deposit-withdrawal-tutorial__highlight-text {
  color: var(--primary-color);
  font-weight: bold;
}

.page-resources-456win-deposit-withdrawal-tutorial__subsection-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-456win-deposit-withdrawal-tutorial__method-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-resources-456win-deposit-withdrawal-tutorial__card {
  background: var(--background-color-light);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-456win-deposit-withdrawal-tutorial__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-resources-456win-deposit-withdrawal-tutorial__card-image {
  width: 100%;
  max-width: 400px; /* Ensure images in cards are large enough */
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block; /* Ensure image behaves as block for max-width */
}

.page-resources-456win-deposit-withdrawal-tutorial__card-title {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-resources-456win-deposit-withdrawal-tutorial__card-text {
  font-size: 0.95em;
  color: var(--text-color-dark);
}

.page-resources-456win-deposit-withdrawal-tutorial__step-list,
.page-resources-456win-deposit-withdrawal-tutorial__info-list,
.page-resources-456win-deposit-withdrawal-tutorial__contact-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-resources-456win-deposit-withdrawal-tutorial__step-list li,
.page-resources-456win-deposit-withdrawal-tutorial__info-list li,
.page-resources-456win-deposit-withdrawal-tutorial__contact-list li {
  background: #f9f9f9;
  border-left: 5px solid var(--primary-color);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 1.05em;
  color: var(--text-color-dark);
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-resources-456win-deposit-withdrawal-tutorial__step-number {
  font-weight: bold;
  color: var(--primary-color);
  margin-right: 10px;
}

.page-resources-456win-deposit-withdrawal-tutorial__contact-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-456win-deposit-withdrawal-tutorial__contact-link:hover {
  color: #005a2d;
  text-decoration: underline;
}

.page-resources-456win-deposit-withdrawal-tutorial__cta-area {
  text-align: center;
  margin-top: 50px;
}

.page-resources-456win-deposit-withdrawal-tutorial__cta-button--deposit,
.page-resources-456win-deposit-withdrawal-tutorial__cta-button--withdraw,
.page-resources-456win-deposit-withdrawal-tutorial__cta-button--join {
  background: var(--primary-color);
  color: var(--text-color-light);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  padding: 15px 35px;
  font-size: 1.1em;
  font-weight: bold;
}

.page-resources-456win-deposit-withdrawal-tutorial__cta-button--deposit:hover,
.page-resources-456win-deposit-withdrawal-tutorial__cta-button--withdraw:hover,
.page-resources-456win-deposit-withdrawal-tutorial__cta-button--join:hover {
  background: #005a2d;
  border-color: #005a2d;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-resources-456win-deposit-withdrawal-tutorial__faq-section {
  background: #f5f5f5;
}

.page-resources-456win-deposit-withdrawal-tutorial__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-456win-deposit-withdrawal-tutorial__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 15px;
  opacity: 0;
  color: var(--text-color-dark);
}

.page-resources-456win-deposit-withdrawal-tutorial__faq-item.active .page-resources-456win-deposit-withdrawal-tutorial__faq-answer {
  max-height: 2000px !important; /* 🚨 Using !important */
  padding: 20px 15px !important; /* 🚨 Using !important */
  opacity: 1;
  background: var(--background-color-light);
  border-radius: 0 0 5px 5px;
}

.page-resources-456win-deposit-withdrawal-tutorial__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--background-color-light);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-456win-deposit-withdrawal-tutorial__faq-question:hover {
  background: #f0f0f0;
  border-color: #d0d0d0;
}

.page-resources-456win-deposit-withdrawal-tutorial__faq-question:active {
  background: #e5e5e5;
}

.page-resources-456win-deposit-withdrawal-tutorial__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary-color);
  pointer-events: none; /* Prevent h3 from blocking click event */
}