.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__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles top padding, this is decorative */
  background-color: #08160F;
  overflow: hidden;
}

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

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Ensure min size */
}

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

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

.page-support__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-support__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-support__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-support__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F; /* Brighter green for contrast */
  border: 1px solid #2AD16F;
}

.page-support__btn-secondary:hover {
  background: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
  transform: translateY(-2px);
}

.page-support__btn-link {
  background: none;
  border: none;
  color: #2AD16F;
  padding: 8px 0;
  text-align: left;
}

.page-support__btn-link:hover {
  color: #F2C14E;
}

.page-support__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

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

.page-support__dark-section {
  background-color: #11271B; /* Card BG */
  padding: 60px 0;
}

.page-support__why-us-section,
.page-support__getting-started-section,
.page-support__game-guides-section,
.page-support__promotions-section,
.page-support__faq-section,
.page-support__contact-section,
.page-support__responsible-gambling,
.page-support__join-cta {
  padding: 60px 0;
}

.page-support__feature-card,
.page-support__step-card,
.page-support__guide-card,
.page-support__promo-card,
.page-support__method-card,
.page-support__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6;
  height: 100%; /* Ensure equal height in grid */
  box-sizing: border-box;
}

.page-support__feature-icon,
.page-support__guide-image,
.page-support__method-icon {
  width: 100%;
  height: auto;
  max-width: 300px;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  display: block;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

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

.page-support__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-support__card-title a:hover {
  color: #2AD16F;
}

.page-support__card-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

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

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

/* FAQ Specific Styles */
.page-support__faq-list {
  margin-top: 40px;
}

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

.page-support__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  font-weight: 600;
  font-size: 1.1em;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

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

.page-support__faq-qtext {
  flex-grow: 1;
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: #F2C14E;
}

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

.page-support__faq-answer {
  padding: 20px 25px;
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-support__faq-answer .page-support__btn-link {
  margin-top: 10px;
}

.page-support__responsible-gambling {
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
  padding: 50px 0;
}

.page-support__responsible-links {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-support__responsible-links .page-support__btn-link {
  color: #F2FFF6;
  border: 1px solid #F2FFF6;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

.page-support__responsible-links .page-support__btn-link:hover {
  background-color: #2AD16F;
  border-color: #2AD16F;
  color: #11271B;
}

.page-support__join-cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(180deg, #08160F 0%, #11A84E 100%); /* Blend to brand primary */
}

.page-support__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-content {
    padding: 0 30px;
  }

  .page-support__section-title {
    font-size: 2em;
  }

  .page-support__features-grid,
  .page-support__steps-grid,
  .page-support__promotions-grid,
  .page-support__guides-grid,
  .page-support__contact-methods {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

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

  .page-support__hero-section {
    padding-bottom: 40px;
  }

  .page-support__main-title {
    font-size: 2.2em;
  }

  .page-support__hero-description {
    font-size: 1em;
  }

  .page-support__btn-primary,
  .page-support__btn-secondary,
  .page-support__btn-link,
  .page-support a[class*="button"],
  .page-support a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-support__cta-buttons,
  .page-support__button-group,
  .page-support__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important;
    gap: 15px;
  }

  .page-support__hero-image,
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__hero-image-wrapper,
  .page-support__video-section,
  .page-support__video-container,
  .page-support__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-support__hero-image-wrapper {
    margin-bottom: 20px;
  }

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

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

  .page-support__section-title {
    font-size: 1.8em;
  }

  .page-support__dark-section,
  .page-support__why-us-section,
  .page-support__getting-started-section,
  .page-support__game-guides-section,
  .page-support__promotions-section,
  .page-support__faq-section,
  .page-support__contact-section,
  .page-support__responsible-gambling,
  .page-support__join-cta {
    padding: 40px 0;
  }
}

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

  .page-support__section-title {
    font-size: 1.6em;
  }

  .page-support__btn-large {
    font-size: 1.1em;
    padding: 15px 30px;
  }

  .page-support__features-grid,
  .page-support__steps-grid,
  .page-support__promotions-grid,
  .page-support__guides-grid,
  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }

  .page-support__hero-image {
    min-height: 250px;
  }

  .page-support__feature-icon,
  .page-support__guide-image,
  .page-support__method-icon {
    max-width: 250px;
    min-width: 200px;
    min-height: 200px;
  }
}