/* style/blog-pp777x-secure-deposits-withdrawals.css */

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

/* Base styles for the page content */
.page-blog-pp777x-secure-deposits-withdrawals {
  font-family: Arial, sans-serif;
  color: var(--pp777x-text-main); /* Default text color for the page */
  background-color: var(--pp777x-background); /* Overall page background */
  line-height: 1.6;
}

/* General Section Styling */
.page-blog-pp777x-secure-deposits-withdrawals__content-section {
  padding: 40px 0;
  background-color: var(--pp777x-background);
}

.page-blog-pp777x-secure-deposits-withdrawals__dark-bg {
  background-color: var(--pp777x-deep-green);
}

.page-blog-pp777x-secure-deposits-withdrawals__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-pp777x-secure-deposits-withdrawals__text-center {
  text-align: center;
}

.page-blog-pp777x-secure-deposits-withdrawals__section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  color: var(--pp777x-text-main);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-pp777x-secure-deposits-withdrawals__text-block {
  font-size: 1rem;
  color: var(--pp777x-text-secondary);
  margin-bottom: 20px;
}

/* Hero Section */
.page-blog-pp777x-secure-deposits-withdrawals__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-pp777x-secure-deposits-withdrawals__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-pp777x-secure-deposits-withdrawals__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-pp777x-secure-deposits-withdrawals__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  margin-top: -150px; /* Overlap slightly with the bottom of the image for visual flow */
  padding: 30px;
  background-color: rgba(17, 39, 27, 0.9); /* Card BG with slight transparency */
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--pp777x-border);
}

.page-blog-pp777x-secure-deposits-withdrawals__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--pp777x-text-main);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-pp777x-secure-deposits-withdrawals__description {
  font-size: 1.1rem;
  color: var(--pp777x-text-secondary);
  margin-bottom: 30px;
}

.page-blog-pp777x-secure-deposits-withdrawals__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.page-blog-pp777x-secure-deposits-withdrawals__btn-primary,
.page-blog-pp777x-secure-deposits-withdrawals__btn-secondary,
.page-blog-pp777x-secure-deposits-withdrawals a[class*="btn"] {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-pp777x-secure-deposits-withdrawals__btn-primary {
  background: var(--pp777x-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-pp777x-secure-deposits-withdrawals__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-pp777x-secure-deposits-withdrawals__btn-secondary {
  background: transparent;
  color: var(--pp777x-secondary-color);
  border: 2px solid var(--pp777x-secondary-color);
}

.page-blog-pp777x-secure-deposits-withdrawals__btn-secondary:hover {
  background-color: var(--pp777x-secondary-color);
  color: #ffffff;
}

.page-blog-pp777x-secure-deposits-withdrawals__btn--large {
  padding: 18px 35px;
  font-size: 1.1rem;
}

/* Grid Container */
.page-blog-pp777x-secure-deposits-withdrawals__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Cards */
.page-blog-pp777x-secure-deposits-withdrawals__card {
  background-color: var(--pp777x-card-bg);
  border: 1px solid var(--pp777x-border);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: var(--pp777x-text-secondary);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-blog-pp777x-secure-deposits-withdrawals__card-title {
  font-size: 1.4rem;
  color: var(--pp777x-text-main);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-pp777x-secure-deposits-withdrawals__card-text {
  font-size: 0.95rem;
  color: var(--pp777x-text-secondary);
}

/* Images within content */
.page-blog-pp777x-secure-deposits-withdrawals__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
  display: block;
}

.page-blog-pp777x-secure-deposits-withdrawals__image--center {
  margin-left: auto;
  margin-right: auto;
}

/* Lists */
.page-blog-pp777x-secure-deposits-withdrawals__ordered-list,
.page-blog-pp777x-secure-deposits-withdrawals__unordered-list {
  list-style-position: inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--pp777x-text-secondary);
}

.page-blog-pp777x-secure-deposits-withdrawals__ordered-list li,
.page-blog-pp777x-secure-deposits-withdrawals__unordered-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-blog-pp777x-secure-deposits-withdrawals__ordered-list li strong {
  color: var(--pp777x-text-main);
}

.page-blog-pp777x-secure-deposits-withdrawals__unordered-list li::marker {
  color: var(--pp777x-primary-color);
}

/* Links within content */
.page-blog-pp777x-secure-deposits-withdrawals a {
  color: var(--pp777x-secondary-color);
  text-decoration: none;
}

.page-blog-pp777x-secure-deposits-withdrawals a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-blog-pp777x-secure-deposits-withdrawals__faq-list {
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-blog-pp777x-secure-deposits-withdrawals__faq-item {
  background-color: var(--pp777x-card-bg);
  border: 1px solid var(--pp777x-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-pp777x-secure-deposits-withdrawals__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  color: var(--pp777x-text-main);
  font-weight: bold;
  font-size: 1.1rem;
  list-style: none; /* For details/summary native marker */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.page-blog-pp777x-secure-deposits-withdrawals__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-pp777x-secure-deposits-withdrawals__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--pp777x-secondary-color);
}

.page-blog-pp777x-secure-deposits-withdrawals__faq-item[open] .page-blog-pp777x-secure-deposits-withdrawals__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-pp777x-secure-deposits-withdrawals__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--pp777x-text-secondary);
}

/* Call to Action Section */
.page-blog-pp777x-secure-deposits-withdrawals__cta-section {
  padding: 60px 20px;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-pp777x-secure-deposits-withdrawals__hero-content {
    margin-top: -100px;
    padding: 25px;
  }
  .page-blog-pp777x-secure-deposits-withdrawals__main-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
  }
  .page-blog-pp777x-secure-deposits-withdrawals__section-title {
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  }
}

@media (max-width: 768px) {
  .page-blog-pp777x-secure-deposits-withdrawals {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-pp777x-secure-deposits-withdrawals__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-pp777x-secure-deposits-withdrawals__hero-image-wrapper {
    max-height: 300px;
  }
  .page-blog-pp777x-secure-deposits-withdrawals__hero-content {
    margin-top: -80px;
    padding: 20px;
    border-radius: 8px;
  }
  .page-blog-pp777x-secure-deposits-withdrawals__main-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
  .page-blog-pp777x-secure-deposits-withdrawals__description {
    font-size: 1rem;
  }
  .page-blog-pp777x-secure-deposits-withdrawals__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-pp777x-secure-deposits-withdrawals__btn-primary,
  .page-blog-pp777x-secure-deposits-withdrawals__btn-secondary,
  .page-blog-pp777x-secure-deposits-withdrawals a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-pp777x-secure-deposits-withdrawals__content-section {
    padding: 30px 0;
  }
  .page-blog-pp777x-secure-deposits-withdrawals__container {
    padding: 0 15px;
  }
  .page-blog-pp777x-secure-deposits-withdrawals__grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-pp777x-secure-deposits-withdrawals__card {
    padding: 20px;
    border-radius: 8px;
  }
  .page-blog-pp777x-secure-deposits-withdrawals__card-title {
    font-size: 1.2rem;
  }
  .page-blog-pp777x-secure-deposits-withdrawals__text-block,
  .page-blog-pp777x-secure-deposits-withdrawals__ordered-list li,
  .page-blog-pp777x-secure-deposits-withdrawals__unordered-list li,
  .page-blog-pp777x-secure-deposits-withdrawals__faq-answer p {
    font-size: 0.95rem;
  }
  .page-blog-pp777x-secure-deposits-withdrawals__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-blog-pp777x-secure-deposits-withdrawals__cta-section {
    padding: 40px 15px;
  }
  /* Image responsiveness */
  .page-blog-pp777x-secure-deposits-withdrawals img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-pp777x-secure-deposits-withdrawals__section,
  .page-blog-pp777x-secure-deposits-withdrawals__card,
  .page-blog-pp777x-secure-deposits-withdrawals__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-pp777x-secure-deposits-withdrawals__hero-section {
    padding-top: 10px !important; /* body đã承担 --header-offset，此处禁止 var(--header-offset) */
  }
}

@media (max-width: 480px) {
  .page-blog-pp777x-secure-deposits-withdrawals__hero-content {
    margin-top: -60px;
  }
  .page-blog-pp777x-secure-deposits-withdrawals__main-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
  .page-blog-pp777x-secure-deposits-withdrawals__section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
  .page-blog-pp777x-secure-deposits-withdrawals__cta-buttons {
    gap: 10px;
  }
}