.page-support {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-support__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom */
  text-align: center;
  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;
  filter: brightness(0.6);
}

.page-support__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #FFD36B; /* Glow */
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.page-support__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #FFF6D6; /* Text Main */
}

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

.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-support__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  color: #111111; /* Dark text for contrast */
  border: none;
}

.page-support__btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.6);
}

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

.page-support__btn-secondary:hover {
  background: #FFD36B;
  color: #111111;
}

.page-support__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

.page-support__section-intro {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #FFF6D6; /* Text Main */
}

.page-support__why-choose-section,
.page-support__faq-section,
.page-support__contact-section,
.page-support__responsible-gaming-section,
.page-support__security-section,
.page-support__updates-section,
.page-support__cta-final {
  padding: 80px 0;
  background-color: #0A0A0A;
}

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

.page-support__feature-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.2);
}

.page-support__feature-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-support__feature-description {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
}

.page-support__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 50px auto 0 auto;
  border-radius: 10px;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-support__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #1a1a1a;
  border-bottom: 1px solid #3A2A12;
}

.page-support__faq-item:last-child .page-support__faq-question {
  border-bottom: none;
}

.page-support__faq-question:hover {
  background-color: #222222;
}

.page-support__faq-title {
  font-size: 1.25rem;
  color: #FFD36B; /* Glow */
  margin: 0;
  font-weight: 600;
}

.page-support__faq-toggle {
  font-size: 1.8rem;
  color: #F2C14E; /* Main Color */
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6; /* Text Main */
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 15px 25px;
}

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

.page-support__cta-faq {
  text-align: center;
  margin-top: 40px;
}

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

.page-support__contact-method-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__contact-method-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.2);
}

.page-support__method-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-support__method-description {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 25px;
}

.page-support__cta-responsible-gaming,
.page-support__cta-security,
.page-support__cta-updates,
.page-support__cta-buttons-final {
  text-align: center;
  margin-top: 40px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

  .page-support__hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 20px;
    margin-top: -150px; /* Pull content up slightly over image for better flow */
  }

  .page-support__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-support__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

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

  .page-support__btn-primary,
  .page-support__btn-secondary {
    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__container {
    padding: 0 15px;
  }

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

  .page-support__section-intro {
    font-size: 1rem;
    margin-bottom: 30px;
  }

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

  .page-support__feature-item,
  .page-support__contact-method-item {
    padding: 20px;
  }

  .page-support__feature-title,
  .page-support__method-title {
    font-size: 1.3rem;
  }

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

  .page-support__faq-title {
    font-size: 1.1rem;
  }

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

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

  .page-support__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-support__cta-responsible-gaming,
  .page-support__cta-security,
  .page-support__cta-updates,
  .page-support__cta-buttons-final {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }
}

/* Global image responsiveness for all images within .page-support */
.page-support img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile forced image responsiveness */
@media (max-width: 768px) {
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__hero-section,
  .page-support__why-choose-section,
  .page-support__faq-section,
  .page-support__contact-section,
  .page-support__responsible-gaming-section,
  .page-support__security-section,
  .page-support__updates-section,
  .page-support__cta-final {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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