.page-support {
  color: #ffffff; /* Body background is dark (#121212), so text must be light */
}

.page-support__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(135deg, #26A9E0, #1a7bb0);
  overflow: hidden;
}

.page-support__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-support__hero-content {
  text-align: center;
  max-width: 900px;
  width: 100%;
  z-index: 1;
  position: relative;
}

.page-support__main-title {
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  /* No fixed font-size, rely on clamp for responsiveness if needed */
}

.page-support__hero-description {
  font-size: 1.15em;
  color: #F0F8FF;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-support__btn-primary,
.page-support__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: inline-block;
  text-align: center;
}

.page-support__btn-primary {
  background: #EA7C07; /* Login color */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-support__btn-primary:hover {
  background: #d46f06;
  border-color: #d46f06;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-support__btn-secondary {
  background: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-support__btn-secondary:hover {
  background: #e0e0e0;
  color: #1a7bb0;
  border-color: #1a7bb0;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-support__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #ffffff; /* Default text color for content sections */
}

.page-support__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.page-support__section-intro {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #F0F8FF;
}

.page-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-support__faq-item {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-support__faq-item[open] {
  background: rgba(255, 255, 255, 0.15);
  border-color: #26A9E0;
}

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

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

.page-support__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
}

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

.page-support__faq-toggle {
  font-size: 1.5em;
  font-weight: 300;
  margin-left: 20px;
  color: #26A9E0;
}

.page-support__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05em;
  line-height: 1.7;
  color: #E0E0E0;
}

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

.page-support__getting-started .page-support__steps-grid,
.page-support__account-management .page-support__info-grid,
.page-support__payments .page-support__payment-methods,
.page-support__game-guides .page-support__game-categories,
.page-support__promotions .page-support__promo-grid,
.page-support__technical-support .page-support__tech-grid,
.page-support__security-responsible-gaming .page-support__security-features,
.page-support__contact-section .page-support__contact-methods {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-support__step-card,
.page-support__info-card,
.page-support__payment-card,
.page-support__game-card,
.page-support__promo-card,
.page-support__tech-card,
.page-support__feature-card,
.page-support__method-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-support__step-card:hover,
.page-support__game-card:hover,
.page-support__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-support__step-image,
.page-support__payment-image,
.page-support__game-image,
.page-support__feature-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__step-title,
.page-support__info-title,
.page-support__payment-title,
.page-support__game-title,
.page-support__promo-title,
.page-support__tech-title,
.page-support__feature-title,
.page-support__method-title {
  font-size: 1.4em;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-support__step-description,
.page-support__info-description,
.page-support__payment-description,
.page-support__game-description,
.page-support__promo-description,
.page-support__tech-description,
.page-support__feature-description,
.page-support__method-description {
  font-size: 1em;
  line-height: 1.6;
  color: #E0E0E0;
  flex-grow: 1;
}

.page-support__btn-link {
  margin-top: 20px;
  color: #EA7C07;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.page-support__centered-cta {
  text-align: center;
  margin-top: 40px;
}

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

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

  .page-support__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em); /* Responsive H1 font size */
  }

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

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

  .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__content-area {
    padding: 30px 15px;
  }

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

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

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

  .page-support__faq-toggle {
    font-size: 1.2em;
  }

  .page-support__getting-started .page-support__steps-grid,
  .page-support__account-management .page-support__info-grid,
  .page-support__payments .page-support__payment-methods,
  .page-support__game-guides .page-support__game-categories,
  .page-support__promotions .page-support__promo-grid,
  .page-support__technical-support .page-support__tech-grid,
  .page-support__security-responsible-gaming .page-support__security-features,
  .page-support__contact-section .page-support__contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Image responsiveness */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__hero-section,
  .page-support__content-area,
  .page-support__steps-grid,
  .page-support__info-grid,
  .page-support__payment-methods,
  .page-support__game-categories,
  .page-support__promo-grid,
  .page-support__tech-grid,
  .page-support__security-features,
  .page-support__contact-methods,
  .page-support__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-support__video-section {
    padding-top: 10px !important;
  }
}