/* style/video-tutorials-deposit-withdrawal.css */
.page-video-tutorials-deposit-withdrawal {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

.page-video-tutorials-deposit-withdrawal__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-video-tutorials-deposit-withdrawal__hero {
  background: linear-gradient(135deg, #0A2342 0%, #0A2342 60%, #1A3E6D 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-video-tutorials-deposit-withdrawal__hero-content {
  max-width: 800px;
  z-index: 10;
  margin-bottom: 40px;
}

.page-video-tutorials-deposit-withdrawal__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  font-weight: bold;
  line-height: 1.2;
}

.page-video-tutorials-deposit-withdrawal__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-video-tutorials-deposit-withdrawal__hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust as needed */
  right: -50px; /* Adjust as needed */
  width: 400px; /* Example size */
  height: 400px; /* Example size */
  opacity: 0.2;
  z-index: 5;
}

.page-video-tutorials-deposit-withdrawal__hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(15deg); /* Slight rotation for dynamic feel */
}

/* Buttons */
.page-video-tutorials-deposit-withdrawal__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  font-size: 1.1em;
}

.page-video-tutorials-deposit-withdrawal__btn--primary {
  background-color: #FFD700; /* Gold background */
  color: #0A2342; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-video-tutorials-deposit-withdrawal__btn--primary:hover {
  background-color: #e6c200;
  color: #0A2342;
  transform: translateY(-2px);
}

.page-video-tutorials-deposit-withdrawal__btn--secondary {
  background-color: #0A2342; /* Dark blue background */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-video-tutorials-deposit-withdrawal__btn--secondary:hover {
  background-color: #1A3E6D;
  color: #FFD700;
  transform: translateY(-2px);
}

.page-video-tutorials-deposit-withdrawal__btn--tertiary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-video-tutorials-deposit-withdrawal__btn--tertiary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
}

/* Sections */
.page-video-tutorials-deposit-withdrawal__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-radius: 10px;
}

.page-video-tutorials-deposit-withdrawal__section:nth-of-type(odd) {
  background-color: #fcfcfc;
}

.page-video-tutorials-deposit-withdrawal__section-title {
  font-size: 2.5em;
  color: #0A2342; /* Dark blue title */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-video-tutorials-deposit-withdrawal__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-video-tutorials-deposit-withdrawal__sub-section-title {
  font-size: 1.8em;
  color: #0A2342;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

/* Video Wrapper */
.page-video-tutorials-deposit-withdrawal__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background-color: #eee;
  border-radius: 10px;
  overflow: hidden;
  margin: 30px 0;
  cursor: pointer;
}

.page-video-tutorials-deposit-withdrawal__video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-video-tutorials-deposit-withdrawal__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-video-tutorials-deposit-withdrawal__video-overlay:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.page-video-tutorials-deposit-withdrawal__play-button {
  color: #FFD700;
  font-size: 4em;
  border: 4px solid #FFD700;
  border-radius: 50%;
  padding: 10px 20px 10px 25px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Lists */
.page-video-tutorials-deposit-withdrawal__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-video-tutorials-deposit-withdrawal__list li {
  background-color: #f9f9f9;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.03);
  font-size: 1.1em;
  color: #444;
}

.page-video-tutorials-deposit-withdrawal__list li strong {
  color: #0A2342;
}

.page-video-tutorials-deposit-withdrawal__text-highlight {
  background-color: #FFD700;
  color: #0A2342;
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 30px;
  margin-bottom: 30px;
  font-weight: bold;
  text-align: center;
  display: block;
}

/* Advantages Grid */
.page-video-tutorials-deposit-withdrawal__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-video-tutorials-deposit-withdrawal__advantage-item {
  background-color: #fcfdff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-video-tutorials-deposit-withdrawal__advantage-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.page-video-tutorials-deposit-withdrawal__advantage-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-video-tutorials-deposit-withdrawal__advantage-item h3 {
  color: #0A2342;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-video-tutorials-deposit-withdrawal__advantage-item p {
  color: #555;
}

/* FAQ Section */
.page-video-tutorials-deposit-withdrawal__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.03);
}

.page-video-tutorials-deposit-withdrawal__faq-question {
  color: #0A2342;
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-video-tutorials-deposit-withdrawal__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-video-tutorials-deposit-withdrawal__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-video-tutorials-deposit-withdrawal__faq-answer {
  color: #555;
  font-size: 1.1em;
  display: none; /* Hidden by default */
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #eee;
}

.page-video-tutorials-deposit-withdrawal__faq-answer.active {
  display: block;
}

/* Call to Action */
.page-video-tutorials-deposit-withdrawal__cta {
  background-color: #0A2342; /* Dark blue background */
  color: #fff;
  text-align: center;
  padding: 80px 0;
  border-radius: 10px;
}

.page-video-tutorials-deposit-withdrawal__cta-content {
  max-width: 900px;
}

.page-video-tutorials-deposit-withdrawal__cta .page-video-tutorials-deposit-withdrawal__section-title {
  color: #FFD700; /* Gold title */
}

.page-video-tutorials-deposit-withdrawal__cta .page-video-tutorials-deposit-withdrawal__section-title::after {
  background-color: #FFD700;
}

.page-video-tutorials-deposit-withdrawal__cta p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-video-tutorials-deposit-withdrawal__title {
    font-size: 2.5em;
  }

  .page-video-tutorials-deposit-withdrawal__subtitle {
    font-size: 1.1em;
  }

  .page-video-tutorials-deposit-withdrawal__section-title {
    font-size: 2em;
  }

  .page-video-tutorials-deposit-withdrawal__sub-section-title {
    font-size: 1.5em;
  }

  .page-video-tutorials-deposit-withdrawal__hero-image-wrapper {
    display: none; /* Hide on smaller screens */
  }

  .page-video-tutorials-deposit-withdrawal__advantages-grid {
    grid-template-columns: 1fr;
  }

  .page-video-tutorials-deposit-withdrawal__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-video-tutorials-deposit-withdrawal__hero {
    padding: 60px 0;
  }

  .page-video-tutorials-deposit-withdrawal__cta {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-video-tutorials-deposit-withdrawal__title {
    font-size: 2em;
  }

  .page-video-tutorials-deposit-withdrawal__subtitle {
    font-size: 1em;
  }

  .page-video-tutorials-deposit-withdrawal__section-title {
    font-size: 1.8em;
  }

  .page-video-tutorials-deposit-withdrawal__list li {
    padding: 15px;
    font-size: 1em;
  }

  .page-video-tutorials-deposit-withdrawal__btn {
    width: 100%;
    margin: 10px 0;
  }
}