/* style/support.css */
.page-support {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

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

.page-support__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-support__section-description {
  font-size: 18px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin: 0 auto 40px;
}

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

/* Hero Section */
.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08160F;
}

.page-support__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-support__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-support__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-support__hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-support__hero-content p {
  font-size: 20px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-support__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-support__cta-button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Cards */
.page-support__card {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-support__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-support__card h3 {
  font-size: 24px;
  color: #F2FFF6; /* Text Main */
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-support__card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 16px;
  line-height: 1.7;
}

/* Why Choose Us Section */
.page-support__why-choose-us .page-support__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-support__why-choose-us .page-support__feature-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

/* Contact Methods Section */
.page-support__dark-section {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-support__contact-card h3 {
  color: #F2C14E; /* Gold */
  font-size: 26px;
}

.page-support__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-support__btn-primary:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-support__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
  cursor: pointer;
}

.page-support__btn-secondary:hover {
  background-color: #1E3A2A; /* Divider */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

details.page-support__faq-item summary.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  background-color: #11271B; /* Card BG */
}

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

details.page-support__faq-item summary.page-support__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-support__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2FFF6; /* Text Main */
}

.page-support__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-support__faq-item .page-support__faq-answer {
  padding: 0 25px 25px;
  background: #0A4B2C; /* Deep Green */
  border-radius: 0 0 12px 12px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 16px;
  text-align: left;
}

.page-support__faq-answer p {
  margin-bottom: 15px;
}

.page-support__btn-link {
  color: #F2C14E; /* Gold */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__btn-link:hover {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

/* Responsible Gaming Section */
.page-support__responsible-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-support__responsible-gaming .page-support__option-card h3 {
  color: #F2C14E; /* Gold */
}

/* Feedback Section */
.page-support__feedback-section .page-support__section-description {
  margin-bottom: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .page-support__section {
    padding: 40px 15px;
  }

  .page-support__section-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .page-support__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-support__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-support__hero-content h1 {
    font-size: clamp(28px, 7vw, 48px);
    margin-bottom: 15px;
  }

  .page-support__hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-support__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    width: 100% !important; /* Ensure full width on mobile */
    max-width: 300px !important; /* Limit max width for smaller buttons */
    margin-left: auto;
    margin-right: auto;
  }

  .page-support__features,
  .page-support__contact-grid,
  .page-support__responsible-options {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__card {
    padding: 25px;
    border-radius: 8px;
  }

  .page-support__card h3 {
    font-size: 20px;
  }

  .page-support__card p {
    font-size: 15px;
  }

  .page-support__contact-card h3 {
    font-size: 22px;
  }

  .page-support__btn-primary,
  .page-support__btn-secondary {
    padding: 10px 20px;
    font-size: 15px;
    width: 100% !important;
    max-width: 250px !important; /* Limit max width for smaller buttons */
    margin-left: auto;
    margin-right: auto;
  }

  details.page-support__faq-item {
    border-radius: 8px;
  }

  details.page-support__faq-item summary.page-support__faq-question {
    padding: 15px 20px;
  }

  .page-support__faq-qtext {
    font-size: 16px;
  }

  .page-support__faq-toggle {
    font-size: 24px;
    width: 24px;
  }

  details.page-support__faq-item .page-support__faq-answer {
    padding: 0 20px 20px;
  }
  
  /* Image responsiveness for all img tags */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  
  /* Ensure all containers holding images or buttons are responsive */
  .page-support__container,
  .page-support__hero-container,
  .page-support__features,
  .page-support__contact-grid,
  .page-support__responsible-options,
  .page-support__hero-image,
  .page-support__feature-item,
  .page-support__contact-card,
  .page-support__option-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Specific padding for sections if needed to prevent overflow */
  .page-support__section {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* Button text wrapping */
.page-support__cta-button,
.page-support__btn-primary,
.page-support__btn-secondary,
.page-support a[class*="button"],
.page-support a[class*="btn"] {
  white-space: normal;
  word-wrap: break-word;
}