/* style/support.css */

/* Base styles for the page-support scope */
.page-support {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Light text for dark body background */
  background-color: #08160F; /* Main background color */
}

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

.page-support__section {
  padding: 60px 0;
  text-align: center;
}

.page-support__section-title {
  font-size: 36px;
  color: #F2FFF6;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-support__text-block {
  font-size: 18px;
  color: #A7D9B8;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-support__hero-content-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  background-color: #08160F;
  width: 100%;
  box-sizing: border-box;
}

.page-support__main-title {
  font-size: 48px;
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__description {
  font-size: 20px;
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-support__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

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

.page-support__btn-secondary {
  background-color: transparent;
  color: #22C768;
  border: 2px solid #22C768;
}

.page-support__btn-secondary:hover {
  background-color: #22C768;
  color: #08160F;
  transform: translateY(-2px);
}

/* Why Choose Section */
.page-support__why-choose {
  background-color: #0A4B2C;
}

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

.page-support__feature-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-support__feature-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-support__feature-title {
  font-size: 24px;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-support__feature-description {
  font-size: 16px;
  color: #A7D9B8;
}

/* Common Issues Section */
.page-support__common-issues {
  background-color: #08160F;
}

.page-support__issue-category {
  margin-bottom: 50px;
  text-align: left;
}

.page-support__category-title {
  font-size: 30px;
  color: #22C768;
  margin-bottom: 20px;
  border-bottom: 2px solid #1E3A2A;
  padding-bottom: 10px;
}

.page-support__category-description {
  font-size: 18px;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-support__solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-support__solution-list li {
  background-color: #11271B; /* Card BG */
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #2E7A4E;
}

.page-support__solution-item-title {
  font-size: 22px;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-support__solution-list p {
  font-size: 16px;
  color: #A7D9B8;
}

.page-support__solution-list a {
  color: #57E38D; /* Glow color for links */
  text-decoration: none;
}

.page-support__solution-list a:hover {
  text-decoration: underline;
}

/* Contact Methods Section */
.page-support__contact-methods {
  background-color: #0A4B2C;
}

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

.page-support__contact-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
}

.page-support__contact-icon {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-support__contact-title {
  font-size: 24px;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-support__contact-description {
  font-size: 16px;
  color: #A7D9B8;
  margin-bottom: 25px;
}

/* Responsible Gaming Section */
.page-support__responsible-gaming {
  background-color: #08160F;
}

/* FAQ Section */
.page-support__faq-section {
  background-color: #0A4B2C;
}

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

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

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #11271B;
  list-style: none; /* For <details> summary */
}

.page-support__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Webkit */
}

.page-support__faq-toggle {
  font-size: 24px;
  line-height: 1;
  color: #22C768;
  margin-left: 15px;
}

.page-support__faq-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  color: #A7D9B8;
  line-height: 1.6;
}

/* Bottom CTA Section */
.page-support__cta-bottom {
  background-color: #08160F;
  padding-bottom: 80px;
}

.page-support__cta-bottom-content {
  max-width: 900px;
}

.page-support__cta-bottom-content .page-support__text-block a {
  color: #57E38D;
  text-decoration: none;
}

.page-support__cta-bottom-content .page-support__text-block a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-support__main-title {
    font-size: 40px;
  }
  .page-support__section-title {
    font-size: 32px;
  }
  .page-support__description,
  .page-support__text-block {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-support__section {
    padding: 40px 0;
  }
  .page-support__hero-content-wrapper {
    padding: 30px 15px;
  }
  .page-support__main-title {
    font-size: 32px;
  }
  .page-support__section-title {
    font-size: 28px;
  }
  .page-support__description,
  .page-support__text-block {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__btn-primary,
  .page-support__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
  }
  .page-support__container {
    padding: 0 15px;
  }
  .page-support__feature-card,
  .page-support__contact-card,
  .page-support__solution-list li {
    padding: 20px;
  }
  .page-support__feature-title,
  .page-support__contact-title {
    font-size: 20px;
  }
  .page-support__category-title {
    font-size: 24px;
  }
  .page-support__solution-item-title,
  .page-support__faq-question .page-support__faq-qtext {
    font-size: 17px;
  }
  .page-support__faq-question {
    padding: 15px 20px;
  }
  .page-support__faq-answer {
    padding: 0 20px 15px;
  }

  /* Image and Video Responsive - Mandatory */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-support video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__cta-buttons,
  .page-support__contact-grid,
  .page-support__features-grid,
  .page-support__issue-category,
  .page-support__faq-list,
  .page-support__hero-content-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-support__hero-section {
    padding-top: 10px !important;
  }
  .page-support__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-support__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

/* Contrast Fixes */
.page-support__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}
.page-support__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}