/* style/beginner-guide-withdrawal-process.css */
/* 页面完整样式代码 - 注意：所有选择器必须添加页面前缀 */

.page-beginner-guide-withdrawal-process {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray text for dark background */
  background-color: #0A192F; /* Primary dark background */
  line-height: 1.6;
  padding-bottom: 50px; /* Space for footer */
}

.page-beginner-guide-withdrawal-process__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-beginner-guide-withdrawal-process__hero {
  background: linear-gradient(135deg, #0A192F 0%, #2a3d54 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide-withdrawal-process__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFFFFF;
}

.page-beginner-guide-withdrawal-process__hero-title .highlight {
  color: #FFD700; /* Gold highlight */
}

.page-beginner-guide-withdrawal-process__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #C0C0C0;
}

.page-beginner-guide-withdrawal-process__hero-cta {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-beginner-guide-withdrawal-process__hero-cta:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-beginner-guide-withdrawal-process__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-beginner-guide-withdrawal-process__section:last-of-type {
  border-bottom: none;
}

.page-beginner-guide-withdrawal-process__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold title */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-beginner-guide-withdrawal-process__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-beginner-guide-withdrawal-process__section-title .highlight {
  color: #FFFFFF;
}

.page-beginner-guide-withdrawal-process__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-beginner-guide-withdrawal-process__text {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-beginner-guide-withdrawal-process__text .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-beginner-guide-withdrawal-process__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-beginner-guide-withdrawal-process__text-link:hover {
  text-decoration: underline;
}

.page-beginner-guide-withdrawal-process__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-withdrawal-process__image--full-width {
  width: 100%;
}

.page-beginner-guide-withdrawal-process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-beginner-guide-withdrawal-process__grid--two-columns {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-beginner-guide-withdrawal-process__method-card,
.page-beginner-guide-withdrawal-process__info-card {
  background-color: #1a2a40; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-beginner-guide-withdrawal-process__method-card:hover,
.page-beginner-guide-withdrawal-process__info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-withdrawal-process__method-icon,
.page-beginner-guide-withdrawal-process__info-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
}

.page-beginner-guide-withdrawal-process__method-title,
.page-beginner-guide-withdrawal-process__info-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-beginner-guide-withdrawal-process__method-description,
.page-beginner-guide-withdrawal-process__info-description {
  font-size: 1em;
  color: #C0C0C0;
}

.page-beginner-guide-withdrawal-process__step-card {
  display: flex;
  align-items: center;
  background-color: #1a2a40;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-beginner-guide-withdrawal-process__step-card:nth-child(even) {
  flex-direction: row-reverse;
}

.page-beginner-guide-withdrawal-process__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FFD700;
  margin-right: 30px;
  min-width: 60px;
  text-align: center;
}

.page-beginner-guide-withdrawal-process__step-card:nth-child(even) .page-beginner-guide-withdrawal-process__step-number {
  margin-right: 0;
  margin-left: 30px;
}

.page-beginner-guide-withdrawal-process__step-content {
  flex-grow: 1;
}

.page-beginner-guide-withdrawal-process__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-beginner-guide-withdrawal-process__step-description {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-beginner-guide-withdrawal-process__step-image {
  width: 250px;
  height: 180px;
  object-fit: contain;
  margin-left: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-beginner-guide-withdrawal-process__step-card:nth-child(even) .page-beginner-guide-withdrawal-process__step-image {
  margin-left: 0;
  margin-right: 30px;
}

.page-beginner-guide-withdrawal-process__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-beginner-guide-withdrawal-process__button--primary {
  background-color: #FFD700;
  color: #0A192F;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-beginner-guide-withdrawal-process__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-beginner-guide-withdrawal-process__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-beginner-guide-withdrawal-process__button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-beginner-guide-withdrawal-process__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-beginner-guide-withdrawal-process__list li {
  background-color: #1a2a40;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-withdrawal-process__list li strong {
  color: #FFD700;
}

.page-beginner-guide-withdrawal-process__cta-final {
  text-align: center;
  background-color: #0A192F;
  padding: 80px 0;
}

.page-beginner-guide-withdrawal-process__cta-final .page-beginner-guide-withdrawal-process__section-title {
  color: #FFFFFF;
}

.page-beginner-guide-withdrawal-process__cta-final .page-beginner-guide-withdrawal-process__section-title::after {
  background-color: #FFFFFF;
}

.page-beginner-guide-withdrawal-process__cta-final .page-beginner-guide-withdrawal-process__text {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #C0C0C0;
}

.page-beginner-guide-withdrawal-process__cta-buttons {
  margin-top: 40px;
}

.page-beginner-guide-withdrawal-process__support {
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-beginner-guide-withdrawal-process__hero-title {
    font-size: 2.8em;
  }

  .page-beginner-guide-withdrawal-process__hero-subtitle {
    font-size: 1.2em;
  }

  .page-beginner-guide-withdrawal-process__section-title {
    font-size: 2em;
  }

  .page-beginner-guide-withdrawal-process__grid--two-columns {
    grid-template-columns: 1fr;
  }

  .page-beginner-guide-withdrawal-process__step-card {
    flex-direction: column;
    text-align: center;
  }

  .page-beginner-guide-withdrawal-process__step-card:nth-child(even) {
    flex-direction: column;
  }

  .page-beginner-guide-withdrawal-process__step-number {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .page-beginner-guide-withdrawal-process__step-card:nth-child(even) .page-beginner-guide-withdrawal-process__step-number {
    margin-left: 0;
    margin-bottom: 20px;
  }

  .page-beginner-guide-withdrawal-process__step-image {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-beginner-guide-withdrawal-process__step-card:nth-child(even) .page-beginner-guide-withdrawal-process__step-image {
    margin-left: auto;
    margin-right: auto;
  }

  .page-beginner-guide-withdrawal-process__button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-beginner-guide-withdrawal-process__cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-withdrawal-process__hero-title {
    font-size: 2.2em;
  }

  .page-beginner-guide-withdrawal-process__hero-subtitle {
    font-size: 1em;
  }

  .page-beginner-guide-withdrawal-process__section-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-withdrawal-process__hero-cta,
  .page-beginner-guide-withdrawal-process__button {
    padding: 12px 20px;
    font-size: 0.95em;
  }

  .page-beginner-guide-withdrawal-process__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-withdrawal-process__hero-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-withdrawal-process__section-title {
    font-size: 1.5em;
  }

  .page-beginner-guide-withdrawal-process__step-number {
    font-size: 2.5em;
  }

  .page-beginner-guide-withdrawal-process__step-title {
    font-size: 1.5em;
  }

  .page-beginner-guide-withdrawal-process__step-image {
    width: 100%;
    height: auto;
  }
}