/* style/faq-deposit-withdrawal.css */

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

/* Base styles for the page content */
.page-faq-deposit-withdrawal {
  font-family: 'Arial', sans-serif;
  color: var(--tt128-text-main); /* Default text color for the main content area */
  background-color: var(--tt128-background); /* Default background for the main content area */
  line-height: 1.6;
}

.page-faq-deposit-withdrawal__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-faq-deposit-withdrawal__section-title {
  font-size: 2.5rem;
  color: var(--tt128-text-main);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-faq-deposit-withdrawal__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--tt128-primary);
  border-radius: 2px;
}

.page-faq-deposit-withdrawal__sub-title {
  font-size: 1.4rem;
  color: var(--tt128-primary);
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-faq-deposit-withdrawal__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
  color: var(--tt128-text-secondary);
}

.page-faq-deposit-withdrawal__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--tt128-text-secondary);
}

.page-faq-deposit-withdrawal__list li {
  margin-bottom: 10px;
}

/* Hero Section */
.page-faq-deposit-withdrawal__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 10px; /* Small padding, body takes care of header offset */
}

.page-faq-deposit-withdrawal__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-faq-deposit-withdrawal__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-faq-deposit-withdrawal__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--tt128-text-main);
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-faq-deposit-withdrawal__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--tt128-gold);
  /* Using clamp for responsive font size, avoiding fixed large sizes */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-faq-deposit-withdrawal__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--tt128-text-main);
}

/* CTA Buttons */
.page-faq-deposit-withdrawal__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-faq-deposit-withdrawal__btn-primary,
.page-faq-deposit-withdrawal__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  white-space: normal;
  word-wrap: break-word;
}

.page-faq-deposit-withdrawal__btn-primary {
  background: var(--tt128-button-gradient);
  color: #ffffff;
  border: none;
}

.page-faq-deposit-withdrawal__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-faq-deposit-withdrawal__btn-secondary {
  background: var(--tt128-background);
  color: var(--tt128-primary);
  border: 2px solid var(--tt128-primary);
}

.page-faq-deposit-withdrawal__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  background: var(--tt128-primary);
  color: #ffffff;
}

/* Feature Cards Section */
.page-faq-deposit-withdrawal__overview-section,
.page-faq-deposit-withdrawal__withdrawal-process,
.page-faq-deposit-withdrawal__support-section {
  padding: 80px 0;
  background-color: #f2fff6; /* Light background for contrast */
  color: #333333; /* Dark text for readability on light background */
}

.page-faq-deposit-withdrawal__overview-section .page-faq-deposit-withdrawal__section-title,
.page-faq-deposit-withdrawal__withdrawal-process .page-faq-deposit-withdrawal__section-title,
.page-faq-deposit-withdrawal__support-section .page-faq-deposit-withdrawal__section-title {
  color: var(--tt128-deep-green);
}

.page-faq-deposit-withdrawal__overview-section .page-faq-deposit-withdrawal__text-block,
.page-faq-deposit-withdrawal__withdrawal-process .page-faq-deposit-withdrawal__text-block,
.page-faq-deposit-withdrawal__support-section .page-faq-deposit-withdrawal__text-block,
.page-faq-deposit-withdrawal__overview-section .page-faq-deposit-withdrawal__list,
.page-faq-deposit-withdrawal__withdrawal-process .page-faq-deposit-withdrawal__list,
.page-faq-deposit-withdrawal__support-section .page-faq-deposit-withdrawal__list {
  color: #555555;
}

.page-faq-deposit-withdrawal__feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-faq-deposit-withdrawal__card {
  background: #ffffff; /* White background for card */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333; /* Dark text on white card */
}

.page-faq-deposit-withdrawal__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-faq-deposit-withdrawal__card-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-faq-deposit-withdrawal__card-title {
  font-size: 1.5rem;
  color: var(--tt128-primary);
  margin-bottom: 15px;
}

.page-faq-deposit-withdrawal__card-description {
  font-size: 1rem;
  color: #666666;
}

/* FAQ Accordion Styles */
.page-faq-deposit-withdrawal__deposit-methods,
.page-faq-deposit-withdrawal__faq-section,
.page-faq-deposit-withdrawal__cta-register {
  padding: 80px 0;
  background-color: var(--tt128-background);
}

.page-faq-deposit-withdrawal__deposit-methods .page-faq-deposit-withdrawal__section-title,
.page-faq-deposit-withdrawal__faq-section .page-faq-deposit-withdrawal__section-title,
.page-faq-deposit-withdrawal__cta-register .page-faq-deposit-withdrawal__section-title {
  color: var(--tt128-text-main);
}

.page-faq-deposit-withdrawal__deposit-methods .page-faq-deposit-withdrawal__text-block,
.page-faq-deposit-withdrawal__faq-section .page-faq-deposit-withdrawal__text-block,
.page-faq-deposit-withdrawal__cta-register .page-faq-deposit-withdrawal__text-block {
  color: var(--tt128-text-secondary);
}

.page-faq-deposit-withdrawal__faq-list {
  margin-top: 40px;
}

.page-faq-deposit-withdrawal__faq-item {
  background-color: var(--tt128-card-bg);
  border: 1px solid var(--tt128-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--tt128-text-main);
}

.page-faq-deposit-withdrawal__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.15rem;
  color: var(--tt128-text-main);
  position: relative;
  list-style: none; /* For details/summary */
}

.page-faq-deposit-withdrawal__faq-question::-webkit-details-marker {
  display: none;
}

.page-faq-deposit-withdrawal__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--tt128-primary);
}

.page-faq-deposit-withdrawal__faq-item[open] .page-faq-deposit-withdrawal__faq-toggle {
  transform: rotate(45deg);
}

.page-faq-deposit-withdrawal__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--tt128-text-secondary);
  line-height: 1.7;
}

.page-faq-deposit-withdrawal__faq-answer ol,
.page-faq-deposit-withdrawal__faq-answer ul {
  margin-left: 20px;
  margin-top: 10px;
  color: var(--tt128-text-secondary);
}

.page-faq-deposit-withdrawal__faq-answer ol li,
.page-faq-deposit-withdrawal__faq-answer ul li {
  margin-bottom: 8px;
}

/* Contact List */
.page-faq-deposit-withdrawal__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.page-faq-deposit-withdrawal__contact-list li {
  background-color: var(--tt128-card-bg);
  border: 1px solid var(--tt128-border);
  border-radius: 8px;
  padding: 20px;
  font-size: 1.1rem;
  color: var(--tt128-text-main);
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-faq-deposit-withdrawal__contact-list li:hover {
  background-color: var(--tt128-deep-green);
}

/* CTA Section within content */
.page-faq-deposit-withdrawal__cta-section {
  text-align: center;
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-faq-deposit-withdrawal__hero-content {
    max-width: 700px;
  }

  .page-faq-deposit-withdrawal__section-title {
    font-size: 2rem;
  }

  .page-faq-deposit-withdrawal__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
}

@media (max-width: 768px) {
  .page-faq-deposit-withdrawal img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-faq-deposit-withdrawal__section,
  .page-faq-deposit-withdrawal__card,
  .page-faq-deposit-withdrawal__container,
  .page-faq-deposit-withdrawal__hero-section,
  .page-faq-deposit-withdrawal__overview-section,
  .page-faq-deposit-withdrawal__deposit-methods,
  .page-faq-deposit-withdrawal__withdrawal-process,
  .page-faq-deposit-withdrawal__faq-section,
  .page-faq-deposit-withdrawal__support-section,
  .page-faq-deposit-withdrawal__cta-register {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-faq-deposit-withdrawal__hero-section {
    min-height: 400px;
    padding-top: 10px !important;
  }

  .page-faq-deposit-withdrawal__hero-content {
    padding: 20px 15px;
  }

  .page-faq-deposit-withdrawal__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-faq-deposit-withdrawal__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-faq-deposit-withdrawal__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-faq-deposit-withdrawal__btn-primary,
  .page-faq-deposit-withdrawal__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-faq-deposit-withdrawal__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-faq-deposit-withdrawal__text-block,
  .page-faq-deposit-withdrawal__list li,
  .page-faq-deposit-withdrawal__card-description,
  .page-faq-deposit-withdrawal__faq-answer {
    font-size: 0.95rem;
  }

  .page-faq-deposit-withdrawal__card {
    padding: 20px;
  }

  .page-faq-deposit-withdrawal__card-title {
    font-size: 1.3rem;
  }

  .page-faq-deposit-withdrawal__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-faq-deposit-withdrawal__faq-answer {
    padding: 0 20px 15px;
  }

  .page-faq-deposit-withdrawal__contact-list {
    grid-template-columns: 1fr;
  }

  .page-faq-deposit-withdrawal__overview-section,
  .page-faq-deposit-withdrawal__deposit-methods,
  .page-faq-deposit-withdrawal__withdrawal-process,
  .page-faq-deposit-withdrawal__faq-section,
  .page-faq-deposit-withdrawal__support-section,
  .page-faq-deposit-withdrawal__cta-register {
    padding: 50px 0;
  }
}