/* style/blog-how-to-deposit-withdraw-99vin-win.css */

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

/* Base styles for the page content */
.page-blog-how-to-deposit-withdraw-99vin-win {
  background-color: var(--bg-dark); /* Using custom background color */
  color: var(--text-main); /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
}

.page-blog-how-to-deposit-withdraw-99vin-win__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-deposit-withdraw-99vin-win__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  margin-bottom: 40px;
  overflow: hidden;
}

.page-blog-how-to-deposit-withdraw-99vin-win__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px; /* Limit height for hero image */
}

.page-blog-how-to-deposit-withdraw-99vin-win__hero-content {
  position: relative; /* Changed from absolute to relative for 'image-above-text' rule */
  z-index: 2; /* Ensure content is above image if image is background, but here image is above */
  text-align: center;
  padding: 40px 20px;
  background-color: var(--bg-dark); /* Background for text block */
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;
  margin-top: -80px; /* Overlap slightly with image for visual interest */
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-deposit-withdraw-99vin-win__main-title {
  font-size: clamp(2rem, 4vw, 3rem); /* Responsive font size */
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-blog-how-to-deposit-withdraw-99vin-win__description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* General Section Styles */
.page-blog-how-to-deposit-withdraw-99vin-win__section {
  padding: 60px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-how-to-deposit-withdraw-99vin-win__section:last-of-type {
  border-bottom: none;
}

.page-blog-how-to-deposit-withdraw-99vin-win__heading {
  font-size: 2.2rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-how-to-deposit-withdraw-99vin-win__sub-heading {
  font-size: 1.6rem;
  color: var(--text-main);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-deposit-withdraw-99vin-win__content-block p {
  margin-bottom: 15px;
  color: var(--text-main);
}

.page-blog-how-to-deposit-withdraw-99vin-win__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-how-to-deposit-withdraw-99vin-win__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.page-blog-how-to-deposit-withdraw-99vin-win__list-item::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: var(--glow-color);
}

.page-blog-how-to-deposit-withdraw-99vin-win__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

/* Call to Action Buttons */
.page-blog-how-to-deposit-withdraw-99vin-win__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-deposit-withdraw-99vin-win__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.3);
}

.page-blog-how-to-deposit-withdraw-99vin-win__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(42, 209, 111, 0.5);
}

.page-blog-how-to-deposit-withdraw-99vin-win__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-left: 20px;
}

.page-blog-how-to-deposit-withdraw-99vin-win__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-main);
}

.page-blog-how-to-deposit-withdraw-99vin-win__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-blog-how-to-deposit-withdraw-99vin-win__faq-section {
  background-color: var(--card-bg);
  padding: 80px 0;
  border-radius: 10px;
}

.page-blog-how-to-deposit-withdraw-99vin-win__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-blog-how-to-deposit-withdraw-99vin-win__faq-item summary {
  list-style: none;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-blog-how-to-deposit-withdraw-99vin-win__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-deposit-withdraw-99vin-win__faq-item summary:hover {
  background-color: var(--deep-green);
}

.page-blog-how-to-deposit-withdraw-99vin-win__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-deposit-withdraw-99vin-win__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: var(--glow-color);
}

.page-blog-how-to-deposit-withdraw-99vin-win__faq-item[open] .page-blog-how-to-deposit-withdraw-99vin-win__faq-toggle {
  content: '−';
}

.page-blog-how-to-deposit-withdraw-99vin-win__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Conclusion Section */
.page-blog-how-to-deposit-withdraw-99vin-win__conclusion .page-blog-how-to-deposit-withdraw-99vin-win__cta-button {
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-deposit-withdraw-99vin-win__main-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
  .page-blog-how-to-deposit-withdraw-99vin-win__heading {
    font-size: 2rem;
  }
  .page-blog-how-to-deposit-withdraw-99vin-win__sub-heading {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-deposit-withdraw-99vin-win {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-how-to-deposit-withdraw-99vin-win__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }
  .page-blog-how-to-deposit-withdraw-99vin-win__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-blog-how-to-deposit-withdraw-99vin-win__description {
    font-size: 1rem;
  }
  .page-blog-how-to-deposit-withdraw-99vin-win__section {
    padding: 40px 0;
  }
  .page-blog-how-to-deposit-withdraw-99vin-win__heading {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-blog-how-to-deposit-withdraw-99vin-win__sub-heading {
    font-size: 1.2rem;
  }
  .page-blog-how-to-deposit-withdraw-99vin-win__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    margin-left: 0; /* Remove margin for single column layout */
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-how-to-deposit-withdraw-99vin-win__btn-secondary {
    margin-top: 15px;
    margin-left: 0;
  }
  .page-blog-how-to-deposit-withdraw-99vin-win__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-blog-how-to-deposit-withdraw-99vin-win__faq-section {
    padding: 60px 0;
  }
  .page-blog-how-to-deposit-withdraw-99vin-win__faq-item summary {
    padding: 15px 20px;
    font-size: 1.1rem;
  }
  .page-blog-how-to-deposit-withdraw-99vin-win__faq-answer {
    padding: 0 20px 15px;
  }
  /* Mobile image responsiveness */
  .page-blog-how-to-deposit-withdraw-99vin-win img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-how-to-deposit-withdraw-99vin-win__section,
  .page-blog-how-to-deposit-withdraw-99vin-win__card,
  .page-blog-how-to-deposit-withdraw-99vin-win__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-how-to-deposit-withdraw-99vin-win__hero-section {
    padding-top: 10px !important;
  }
}