/* style/support.css */

/* Base styles for the support page */
.page-support {
  background-color: #08160F; /* Custom Background */
  color: #F2FFF6; /* Custom Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 60px;
}

.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-support__dark-section {
  background-color: #11271B; /* Custom Card BG */
  color: #F2FFF6;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles --header-offset, use small top padding */
  background-color: #08160F;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 40px;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-support__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.page-support__main-title {
  font-size: clamp(2em, 4vw, 3em);
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E; /* Custom Gold */
  margin-bottom: 20px;
}

.page-support__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Custom Text Secondary */
  margin-bottom: 30px;
}

.page-support__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-support__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom Button Gradient */
  color: #F2FFF6; /* Custom Text Main */
  border: none;
}

.page-support__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-support__btn-secondary {
  background: transparent;
  color: #57E38D; /* Custom Glow */
  border: 2px solid #2E7A4E; /* Custom Border */
}

.page-support__btn-secondary:hover {
  background-color: rgba(87, 227, 141, 0.1); /* Slight hover effect with Glow color */
  color: #F2FFF6;
}

.page-support__small-btn {
  padding: 10px 20px;
  font-size: 0.9em;
}

/* Section Titles and Descriptions */
.page-support__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 700;
  color: #F2C14E; /* Custom Gold */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-support__section-description {
  font-size: 1.05em;
  color: #A7D9B8; /* Custom Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-support__text-block {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  color: #F2FFF6;
}

.page-support__text-block p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #A7D9B8;
}

/* Contact Methods Section */
.page-support__contact-methods {
  padding: 60px 0;
}

.page-support__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__card {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #F2FFF6;
}

.page-support__contact-icon,
.page-support__guide-icon,
.page-support__feature-icon {
  width: 100%;
  max-width: 200px; /* Ensure images are not too wide in cards */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
}

.page-support__card-title {
  font-size: 1.4em;
  color: #F2C14E; /* Custom Gold */
  margin-bottom: 15px;
}

.page-support__card-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Custom Text Secondary */
  flex-grow: 1;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-support__faq-section {
  padding: 60px 0;
}

.page-support__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-support__faq-item {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: #F2FFF6; /* Custom Text Main */
  background-color: #11271B;
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-support__faq-question::-webkit-details-marker {
  display: none;
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #57E38D; /* Custom Glow */
}

.page-support__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Custom Text Secondary */
  line-height: 1.7;
}

/* Quick Guides Section */
.page-support__quick-guides {
  padding: 60px 0;
}

.page-support__guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Security & Responsible Gaming Section */
.page-support__security-responsible {
  padding: 60px 0;
  background-color: #08160F; /* Custom Background */
}

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

.page-support__feature-card {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  color: #F2FFF6;
}

/* CTA Download Section */
.page-support__cta-download {
  padding: 60px 0;
  text-align: center;
  background-color: #11271B; /* Custom Card BG */
}

.page-support__app-qr-code {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-top: 30px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Why Choose Section */
.page-support__why-choose {
  padding: 60px 0;
  background-color: #08160F; /* Custom Background */
}

.page-support__advantage-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  color: #F2FFF6;
}

.page-support__advantage-list li {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom Border */
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 1.05em;
}

.page-support__advantage-icon {
  color: #57E38D; /* Custom Glow */
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }
  .page-support__section-title {
    font-size: clamp(1.8em, 4.5vw, 2.2em);
  }
}

@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-support__hero-section,
  .page-support__contact-methods,
  .page-support__faq-section,
  .page-support__quick-guides,
  .page-support__security-responsible,
  .page-support__cta-download,
  .page-support__why-choose {
    padding-left: 15px !important;
    padding-right: 15px !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .page-support__hero-content {
    padding: 0;
  }

  .page-support__main-title {
    font-size: clamp(2em, 7vw, 2.5em);
  }

  .page-support__section-title {
    font-size: clamp(1.8em, 6vw, 2em);
  }

  .page-support__description,
  .page-support__section-description,
  .page-support__card-text,
  .page-support__faq-answer p,
  .page-support__text-block p,
  .page-support__advantage-list li {
    font-size: 0.95em;
  }

  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-support__btn-primary,
  .page-support__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-support img,
  .page-support__hero-image,
  .page-support__contact-icon,
  .page-support__guide-icon,
  .page-support__feature-icon,
  .page-support__app-qr-code {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__container,
  .page-support__method-grid,
  .page-support__guide-grid,
  .page-support__feature-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0;
  }

  .page-support__card {
    padding: 20px;
  }

  .page-support__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-support__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-support__advantage-list {
    padding: 0 15px;
  }

  .page-support__advantage-list li {
    font-size: 0.9em;
    padding: 12px 15px;
  }
}