.page-support {
  color: #333333; /* Dark text for light body background */
}

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #000000; /* Dark background for hero content */
  color: #FFFFFF;
  text-align: center;
}

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

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6; /* Slightly dim the image to make text pop */
}

.page-support__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  text-align: center;
}

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login color for emphasis */
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-support__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-support__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for contrast */
  border: 2px solid #FCBC45;
}

.page-support__button--primary:hover {
  background-color: #e0a73a;
  border-color: #e0a73a;
}

.page-support__button--secondary {
  background-color: #FFFFFF; /* Register color */
  color: #000000; /* Dark text for contrast */
  border: 2px solid #FFFFFF;
}

.page-support__button--secondary:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

.page-support__button--text {
  background: none;
  border: none;
  color: #FCBC45; /* Login color for text links */
  padding: 0;
  font-size: 1em;
  text-decoration: underline;
}

.page-support__button--text:hover {
  color: #e0a73a;
}

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

.page-support__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

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

.page-support__faq-section {
  background-color: #FFFFFF;
  padding: 60px 0;
}

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

.page-support__faq-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-support__faq-item:hover {
  transform: translateY(-5px);
}

.page-support__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-support__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
  display: none; /* Hidden by default for accordion */
}

.page-support__faq-question--active + .page-support__faq-answer {
  display: block;
}

.page-support__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-support__faq-answer a:hover {
  text-decoration: underline;
}

.page-support__image-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-support__section-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-support__guides-section {
  background-color: #000000; /* Main color as background */
  color: #FFFFFF;
  padding: 60px 0;
}

.page-support__guides-section .page-support__section-title {
  color: #FCBC45; /* Login color for title on dark background */
}

.page-support__guides-section .page-support__section-intro {
  color: #cccccc;
}

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

.page-support__guide-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-support__guide-card:hover {
  transform: translateY(-5px);
}

.page-support__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-support__guide-title {
  font-size: 1.5em;
  color: #FCBC45;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-support__guide-title a {
  color: #FCBC45;
  text-decoration: none;
}

.page-support__guide-title a:hover {
  text-decoration: underline;
}

.page-support__guide-description {
  font-size: 0.95em;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-support__troubleshooting-section {
  background-color: #f0f0f0;
  padding: 60px 0;
}

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

.page-support__troubleshooting-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-support__troubleshooting-item:hover {
  transform: translateY(-5px);
}

.page-support__troubleshooting-icon {
  width: 200px; /* Enforce min 200px */
  height: 150px; /* Adjust height to maintain aspect ratio with min-width */
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-support__troubleshooting-heading {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-support__troubleshooting-text {
  font-size: 0.95em;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-support__contact-section {
  background-color: #000000; /* Main color as background */
  color: #FFFFFF;
  padding: 60px 0;
}

.page-support__contact-section .page-support__section-title {
  color: #FCBC45; /* Login color for title on dark background */
}

.page-support__contact-section .page-support__section-intro {
  color: #cccccc;
}

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

.page-support__contact-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-support__contact-card:hover {
  transform: translateY(-5px);
}

.page-support__contact-heading {
  font-size: 1.5em;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.page-support__contact-text {
  font-size: 0.95em;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-support__responsible-gaming-section {
  background-color: #FFFFFF;
  padding: 60px 0;
}

.page-support__responsible-gaming-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1em;
  line-height: 1.8;
  color: #555555;
}

.page-support__responsible-gaming-content p {
  margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 3em;
  }
  .page-support__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  }
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
  .page-support__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 100%;
    padding: 12px 25px;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-support__faq-grid,
  .page-support__guides-grid,
  .page-support__troubleshooting-grid,
  .page-support__contact-options {
    grid-template-columns: 1fr;
  }
  .page-support__faq-question {
    font-size: 1.2em;
  }
  .page-support__hero-image,
  .page-support__section-image,
  .page-support__guide-image,
  .page-support__troubleshooting-icon {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min width for mobile as well */
    min-height: 200px; /* Ensure min height for mobile as well */
  }
  .page-support__hero-content {
    padding: 15px;
  }
  .page-support__container {
    padding: 30px 15px;
  }
  .page-support__responsible-gaming-content {
    font-size: 1em;
  }
  /* Ensure no horizontal scroll on mobile */
  .page-support {
    overflow-x: hidden;
  }
  .page-support__hero-section,
  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__troubleshooting-section,
  .page-support__contact-section,
  .page-support__responsible-gaming-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
}

/* Ensure all content images in .page-support are responsive and meet minimum size */
.page-support img {
  max-width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
}