/* style/support.css */

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

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

.page-support__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.page-support__text-block {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: center;
}

.page-support__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 60px 0;
}

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

.page-support__hero-image-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 30px;
}

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

.page-support__hero-content {
  text-align: center;
  padding: 0 20px;
  z-index: 1;
}

.page-support__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 800;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__description {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
  max-width: 900px;
  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: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-support__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-support__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

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

.page-support__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  transform: translateY(-3px);
}

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

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

.page-support__method-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-support__method-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-support__card-title {
  font-size: 1.8em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

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

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

.page-support__faq-list {
  margin-top: 40px;
}

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

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #1E3A2A; /* Divider for summary background */
  transition: background-color 0.3s ease;
  list-style: none; /* For details tag */
}

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

.page-support__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-support__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #57E38D; /* Glow */
  margin-left: 15px;
}

.page-support__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-support__faq-item[open] .page-support__faq-answer {
  max-height: 500px; /* Adjust as needed */
  transition: max-height 0.3s ease-in;
}

/* Responsible Gaming Section */
.page-support__responsible-gaming-section {
  padding: 60px 0;
}

.page-support__responsible-gaming-section .page-support__section-title {
  margin-bottom: 40px;
}

.page-support__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-support__text-content {
  flex: 1;
  min-width: 300px;
}

.page-support__text-content .page-support__text-block {
  text-align: left;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-support__text-content .page-support__btn-primary {
  margin-top: 30px;
}

.page-support__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-support__responsive-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Call to Action Section */
.page-support__cta-section {
  padding: 60px 0;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-image-wrapper {
    height: 500px; /* Adjust height for tablets */
  }
  .page-support__hero-image {
    object-position: center bottom;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-bottom: 40px;
  }
  .page-support__hero-image-wrapper {
    height: 300px;
    margin-bottom: 20px;
  }
  .page-support__main-title {
    font-size: 2em;
  }
  .page-support__description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-support__section-title {
    font-size: 2em;
    margin-bottom: 20px;
  }
  .page-support__text-block {
    font-size: 0.95em;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__btn-primary,
  .page-support__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
  }
  .page-support__methods-grid {
    grid-template-columns: 1fr;
  }
  .page-support__method-card {
    padding: 20px;
  }
  .page-support__card-title {
    font-size: 1.5em;
  }
  .page-support__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-support__faq-answer {
    padding: 0 15px 15px 15px;
  }
  .page-support__content-wrapper {
    flex-direction: column-reverse; /* Text above image on mobile */
  }
  .page-support__text-content .page-support__text-block {
    text-align: center;
  }
  .page-support__text-content .page-support__btn-primary {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .page-support__hero-section,
  .page-support__contact-methods,
  .page-support__faq-section,
  .page-support__responsible-gaming-section,
  .page-support__cta-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__hero-section {
    padding-top: 10px !important;
  }
  /* Forced responsive styles for images, videos, buttons */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-support__hero-image-wrapper,
  .page-support__image-wrapper,
  .page-support__method-card,
  .page-support__faq-item,
  .page-support__cta-buttons,
  .page-support__button-group,
  .page-support__btn-container,
  .page-support__methods-grid,
  .page-support__faq-list,
  .page-support__content-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-support__hero-content,
  .page-support__text-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 480px) {
  .page-support__main-title {
    font-size: 1.8em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
}