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

.page-blog-sc88-withdrawal-speed-issues {
  background-color: var(--body-bg);
  color: var(--text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-sc88-withdrawal-speed-issues__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px;
  text-align: center;
  background-color: var(--deep-green-color);
}

.page-blog-sc88-withdrawal-speed-issues__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-blog-sc88-withdrawal-speed-issues__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-sc88-withdrawal-speed-issues__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-sc88-withdrawal-speed-issues__hero-title {
  color: var(--gold-color);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-blog-sc88-withdrawal-speed-issues__hero-description {
  color: var(--text-secondary);
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-sc88-withdrawal-speed-issues__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-blog-sc88-withdrawal-speed-issues__btn-primary,
.page-blog-sc88-withdrawal-speed-issues__btn-secondary {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-sc88-withdrawal-speed-issues__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-sc88-withdrawal-speed-issues__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-sc88-withdrawal-speed-issues__btn-secondary {
  background: var(--card-bg);
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
}

.page-blog-sc88-withdrawal-speed-issues__btn-secondary:hover {
  background: var(--gold-color);
  color: var(--card-bg);
}

.page-blog-sc88-withdrawal-speed-issues__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--body-bg);
  color: var(--text-main);
}

.page-blog-sc88-withdrawal-speed-issues__section--dark-bg {
  background-color: var(--deep-green-color);
}

.page-blog-sc88-withdrawal-speed-issues__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-sc88-withdrawal-speed-issues__section-title {
  color: var(--gold-color);
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-blog-sc88-withdrawal-speed-issues__sub-title {
  color: var(--secondary-color);
  font-size: 1.6em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.page-blog-sc88-withdrawal-speed-issues__text-block {
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.page-blog-sc88-withdrawal-speed-issues__text-block a {
  color: var(--gold-color);
  text-decoration: underline;
}

.page-blog-sc88-withdrawal-speed-issues__text-block a:hover {
  color: var(--glow-color);
}

.page-blog-sc88-withdrawal-speed-issues__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-sc88-withdrawal-speed-issues__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-sc88-withdrawal-speed-issues__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-blog-sc88-withdrawal-speed-issues__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FAQ Section */
.page-blog-sc88-withdrawal-speed-issues__faq-list {
  margin-top: 40px;
}

.page-blog-sc88-withdrawal-speed-issues__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-blog-sc88-withdrawal-speed-issues__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  color: var(--gold-color);
  background-color: var(--deep-green-color);
  border-bottom: 1px solid var(--border-color);
  list-style: none;
  position: relative; /* For custom marker */
}

.page-blog-sc88-withdrawal-speed-issues__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-sc88-withdrawal-speed-issues__faq-qtext {
  flex-grow: 1;
}

.page-blog-sc88-withdrawal-speed-issues__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-sc88-withdrawal-speed-issues__faq-item[open] .page-blog-sc88-withdrawal-speed-issues__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-sc88-withdrawal-speed-issues__faq-answer {
  padding: 15px 25px;
  font-size: 1em;
  color: var(--text-secondary);
}

.page-blog-sc88-withdrawal-speed-issues__faq-answer p {
  margin-bottom: 10px;
  color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-sc88-withdrawal-speed-issues__hero-title {
    font-size: 2.8em;
  }
  .page-blog-sc88-withdrawal-speed-issues__section-title {
    font-size: 2em;
  }
  .page-blog-sc88-withdrawal-speed-issues__sub-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-blog-sc88-withdrawal-speed-issues__hero-section {
    padding: 10px 15px 40px;
  }
  .page-blog-sc88-withdrawal-speed-issues__hero-title {
    font-size: 2em;
  }
  .page-blog-sc88-withdrawal-speed-issues__hero-description {
    font-size: 1em;
  }
  .page-blog-sc88-withdrawal-speed-issues__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }
  .page-blog-sc88-withdrawal-speed-issues__btn-primary,
  .page-blog-sc88-withdrawal-speed-issues__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
  }
  .page-blog-sc88-withdrawal-speed-issues__content-area {
    padding: 40px 15px;
  }
  .page-blog-sc88-withdrawal-speed-issues__section-title {
    font-size: 1.8em;
  }
  .page-blog-sc88-withdrawal-speed-issues__sub-title {
    font-size: 1.3em;
  }
  .page-blog-sc88-withdrawal-speed-issues__image-content,
  .page-blog-sc88-withdrawal-speed-issues__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-blog-sc88-withdrawal-speed-issues__video-wrapper {
    padding-bottom: 56.25% !important; /* Ensure aspect ratio is maintained */
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    margin-left: auto;
    margin-right: auto;
  }
  .page-blog-sc88-withdrawal-speed-issues__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-blog-sc88-withdrawal-speed-issues__faq-answer {
    padding: 10px 20px;
  }
  .page-blog-sc88-withdrawal-speed-issues p,
  .page-blog-sc88-withdrawal-speed-issues li {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .page-blog-sc88-withdrawal-speed-issues__hero-title {
    font-size: 1.8em;
  }
  .page-blog-sc88-withdrawal-speed-issues__section-title {
    font-size: 1.6em;
  }
  .page-blog-sc88-withdrawal-speed-issues__sub-title {
    font-size: 1.2em;
  }
}