/* style/payment-methods-deposit-tutorial.css */
.page-payment-methods-deposit-tutorial {
  background-color: #08160F; /* Nền tối theo yêu cầu */
  color: #F2FFF6; /* Chữ sáng trên nền tối */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-payment-methods-deposit-tutorial__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body đã có padding-top, đây chỉ là khoảng cách nhỏ */
  overflow: hidden;
}

.page-payment-methods-deposit-tutorial__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-payment-methods-deposit-tutorial__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(17, 39, 27, 0.7); /* Card BG với độ trong suốt */
  border-radius: 10px;
  margin-top: 80px;
}

.page-payment-methods-deposit-tutorial__main-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-payment-methods-deposit-tutorial__description {
  font-size: 1.15rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-payment-methods-deposit-tutorial__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-payment-methods-deposit-tutorial__btn-primary,
.page-payment-methods-deposit-tutorial__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-payment-methods-deposit-tutorial__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(87, 227, 141, 0.4); /* Glow */
}

.page-payment-methods-deposit-tutorial__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(87, 227, 141, 0.6);
}

.page-payment-methods-deposit-tutorial__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #2E7A4E; /* Border */
}

.page-payment-methods-deposit-tutorial__btn-secondary:hover {
  background: rgba(46, 122, 78, 0.2); /* Border transparent */
  color: #F2FFF6;
}

.page-payment-methods-deposit-tutorial__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-payment-methods-deposit-tutorial__introduction-section,
.page-payment-methods-deposit-tutorial__methods-section,
.page-payment-methods-deposit-tutorial__important-notes-section,
.page-payment-methods-deposit-tutorial__promotions-section,
.page-payment-methods-deposit-tutorial__faq-section,
.page-payment-methods-deposit-tutorial__call-to-action-section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-payment-methods-deposit-tutorial__section-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-payment-methods-deposit-tutorial p {
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-payment-methods-deposit-tutorial strong {
  color: #57E38D; /* Glow */
}

.page-payment-methods-deposit-tutorial a {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

.page-payment-methods-deposit-tutorial a:hover {
  text-decoration: underline;
}

.page-payment-methods-deposit-tutorial__video-tutorial-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A;
  text-align: center;
}

.page-payment-methods-deposit-tutorial__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  width: 100%; /* Important for desktop */
}

.page-payment-methods-deposit-tutorial__video-wrapper .page-payment-methods-deposit-tutorial__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
}

.page-payment-methods-deposit-tutorial__video-description {
  font-size: 1rem;
  color: #A7D9B8;
}

.page-payment-methods-deposit-tutorial__method-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-deposit-tutorial__method-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  object-fit: cover;
}

.page-payment-methods-deposit-tutorial__method-content {
  max-width: 800px;
}

.page-payment-methods-deposit-tutorial__method-title {
  color: #F2C14E; /* Gold */
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-payment-methods-deposit-tutorial__step-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.page-payment-methods-deposit-tutorial__step-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #F2FFF6; /* Text Main */
}

.page-payment-methods-deposit-tutorial__step-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2AD16F; /* Button */
  font-weight: bold;
}

.page-payment-methods-deposit-tutorial__note {
  font-style: italic;
  color: #A7D9B8; /* Text Secondary */
  border-left: 4px solid #2E7A4E; /* Border */
  padding-left: 15px;
  margin-top: 20px;
}

.page-payment-methods-deposit-tutorial__list {
  list-style: none;
  padding: 0;
}

.page-payment-methods-deposit-tutorial__list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #F2FFF6; /* Text Main */
}

.page-payment-methods-deposit-tutorial__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  font-size: 1.5em;
  line-height: 0.8;
  color: #57E38D; /* Glow */
}

.page-payment-methods-deposit-tutorial__promotions-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-payment-methods-deposit-tutorial__faq-list {
  margin-top: 30px;
}

.page-payment-methods-deposit-tutorial__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-payment-methods-deposit-tutorial__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
}

.page-payment-methods-deposit-tutorial__faq-question:hover {
  background-color: #13994A; /* Button darker green */
}

.page-payment-methods-deposit-tutorial__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #F2C14E; /* Gold */
  margin-left: 15px;
}

.page-payment-methods-deposit-tutorial__faq-item[open] .page-payment-methods-deposit-tutorial__faq-toggle {
  color: #F2C14E;
}

.page-payment-methods-deposit-tutorial__faq-answer {
  padding: 15px 25px 20px;
  background-color: #11271B; /* Card BG */
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  border-top: 1px solid #2E7A4E; /* Border */
}

.page-payment-methods-deposit-tutorial__faq-answer p {
  margin-bottom: 0;
  color: #A7D9B8;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-payment-methods-deposit-tutorial__method-card {
    flex-direction: row;
    text-align: left;
  }

  .page-payment-methods-deposit-tutorial__method-card:nth-child(even) {
    flex-direction: row-reverse;
  }

  .page-payment-methods-deposit-tutorial__method-image {
    flex: 0 0 40%;
    margin-right: 30px;
    margin-bottom: 0;
  }

  .page-payment-methods-deposit-tutorial__method-card:nth-child(even) .page-payment-methods-deposit-tutorial__method-image {
    margin-left: 30px;
    margin-right: 0;
  }

  .page-payment-methods-deposit-tutorial__method-content {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-deposit-tutorial {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-payment-methods-deposit-tutorial__hero-content {
    padding: 30px 15px;
    margin-top: 40px;
  }

  .page-payment-methods-deposit-tutorial__main-title {
    font-size: 2rem;
  }

  .page-payment-methods-deposit-tutorial__description {
    font-size: 1rem;
  }

  .page-payment-methods-deposit-tutorial__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-payment-methods-deposit-tutorial__btn-primary,
  .page-payment-methods-deposit-tutorial__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-payment-methods-deposit-tutorial__container,
  .page-payment-methods-deposit-tutorial__method-card,
  .page-payment-methods-deposit-tutorial__video-tutorial-section,
  .page-payment-methods-deposit-tutorial__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-payment-methods-deposit-tutorial__video-tutorial-section {
    padding-top: 10px !important; /* body đã承担 --header-offset */
  }

  .page-payment-methods-deposit-tutorial img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-payment-methods-deposit-tutorial video,
  .page-payment-methods-deposit-tutorial__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-payment-methods-deposit-tutorial__method-card {
    padding: 20px;
  }

  .page-payment-methods-deposit-tutorial__method-title {
    font-size: 1.5rem;
  }

  .page-payment-methods-deposit-tutorial__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-payment-methods-deposit-tutorial__faq-answer {
    padding: 10px 20px 15px;
  }
}