/* style/blog-how-to-deposit-withdraw-789online.css */

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

.page-blog-how-to-deposit-withdraw-789online {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* Main text color for the page */
  background-color: var(--page-bg); /* Page background from custom colors */
  line-height: 1.6;
}

.page-blog-how-to-deposit-withdraw-789online__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  overflow: hidden;
}

.page-blog-how-to-deposit-withdraw-789online__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-how-to-deposit-withdraw-789online__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-deposit-withdraw-789online__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
  margin-top: -80px; /* Adjust to slightly overlap with image or simply place below */
  background: rgba(17, 39, 27, 0.85); /* Card BG with opacity */
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  padding: 40px;
}

.page-blog-how-to-deposit-withdraw-789online__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-blog-how-to-deposit-withdraw-789online__description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-how-to-deposit-withdraw-789online__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-how-to-deposit-withdraw-789online__btn-primary,
.page-blog-how-to-deposit-withdraw-789online__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-how-to-deposit-withdraw-789online__btn-primary {
  background: var(--button-gradient);
  color: #ffffff; /* White text for primary button */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-how-to-deposit-withdraw-789online__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-how-to-deposit-withdraw-789online__btn-secondary {
  background: var(--card-bg);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-how-to-deposit-withdraw-789online__btn-secondary:hover {
  transform: translateY(-3px);
  background: var(--primary-color);
  color: #ffffff;
}

.page-blog-how-to-deposit-withdraw-789online__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog-how-to-deposit-withdraw-789online__text-block {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-blog-how-to-deposit-withdraw-789online__section-title {
  font-size: 2.2rem;
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: 700;
  border-bottom: 2px solid var(--divider-color);
  padding-bottom: 10px;
}

.page-blog-how-to-deposit-withdraw-789online__sub-title {
  font-size: 1.6rem;
  color: var(--secondary-color);
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-how-to-deposit-withdraw-789online p {
  margin-bottom: 15px;
  color: var(--text-main);
  font-size: 1.05rem;
}

.page-blog-how-to-deposit-withdraw-789online__list,
.page-blog-how-to-deposit-withdraw-789online__list-numbered {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: var(--text-main);
}

.page-blog-how-to-deposit-withdraw-789online__list li,
.page-blog-how-to-deposit-withdraw-789online__list-numbered li {
  margin-bottom: 8px;
  color: var(--text-main);
  font-size: 1rem;
}

.page-blog-how-to-deposit-withdraw-789online__list-numbered {
  list-style-type: decimal;
}

.page-blog-how-to-deposit-withdraw-789online__sub-list {
  list-style-type: circle;
  margin-left: 20px;
  color: var(--text-main);
}

.page-blog-how-to-deposit-withdraw-789online__image-wrapper {
  margin: 30px 0;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.page-blog-how-to-deposit-withdraw-789online__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin: 0 auto; /* Center image */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-blog-how-to-deposit-withdraw-789online__cta-section {
  background-color: var(--deep-green);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin-top: 30px;
  border: 1px solid var(--border-color);
}

.page-blog-how-to-deposit-withdraw-789online__cta-section p {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 20px;
}

.page-blog-how-to-deposit-withdraw-789online__faq-container {
  margin-top: 30px;
}

.page-blog-how-to-deposit-withdraw-789online__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-deposit-withdraw-789online__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s ease;
  list-style: none; /* For details summary */
}

.page-blog-how-to-deposit-withdraw-789online__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details summary */
}

.page-blog-how-to-deposit-withdraw-789online__faq-question:hover {
  background-color: var(--primary-color);
}

.page-blog-how-to-deposit-withdraw-789online__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-deposit-withdraw-789online__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-blog-how-to-deposit-withdraw-789online__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  /* For details, browser handles open/close. No max-height needed. */
}

.page-blog-how-to-deposit-withdraw-789online__faq-answer p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-how-to-deposit-withdraw-789online__hero-content {
    margin-top: -60px;
    padding: 30px;
  }
  .page-blog-how-to-deposit-withdraw-789online__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-blog-how-to-deposit-withdraw-789online__section-title {
    font-size: 1.8rem;
  }
  .page-blog-how-to-deposit-withdraw-789online__sub-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-deposit-withdraw-789online {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-how-to-deposit-withdraw-789online__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-how-to-deposit-withdraw-789online__hero-content {
    margin-top: -40px;
    padding: 20px;
    width: calc(100% - 30px); /* Add padding to sides */
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-how-to-deposit-withdraw-789online__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-blog-how-to-deposit-withdraw-789online__description {
    font-size: 1rem;
  }
  .page-blog-how-to-deposit-withdraw-789online__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-blog-how-to-deposit-withdraw-789online__btn-primary,
  .page-blog-how-to-deposit-withdraw-789online__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 0 auto;
  }
  .page-blog-how-to-deposit-withdraw-789online__content-area {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-how-to-deposit-withdraw-789online__text-block {
    padding: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-how-to-deposit-withdraw-789online__section-title {
    font-size: 1.6rem;
  }
  .page-blog-how-to-deposit-withdraw-789online__sub-title {
    font-size: 1.2rem;
  }
  .page-blog-how-to-deposit-withdraw-789online p,
  .page-blog-how-to-deposit-withdraw-789online__list li {
    font-size: 0.95rem;
  }
  .page-blog-how-to-deposit-withdraw-789online__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-blog-how-to-deposit-withdraw-789online__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-how-to-deposit-withdraw-789online__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-blog-how-to-deposit-withdraw-789online__faq-answer {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
  .page-blog-how-to-deposit-withdraw-789online__faq-toggle {
    font-size: 1.5rem;
  }
  .page-blog-how-to-deposit-withdraw-789online__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 20px 15px;
  }
  .page-blog-how-to-deposit-withdraw-789online__cta-section p {
    font-size: 1.1rem;
  }
}