.page-support {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-support__hero-section {
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-support__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

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

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

.page-support__btn {
  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;
  white-space: nowrap;
}

.page-support__btn--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-support__btn--primary:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-support__btn--secondary {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  border: 2px solid #FFFFFF;
}

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

.page-support__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #555555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-support__faq-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-support__faq-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.page-support__faq-card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-support__faq-card-title a:hover {
  color: #FCBC45;
}

.page-support__faq-card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__faq-card-link {
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__faq-card-link:hover {
  color: #e0a53b;
  text-decoration: underline;
}

/* Contact Section */
.page-support__contact-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-support__contact-card {
  background-color: #f0f0f0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-support__contact-icon {
  width: 200px; /* Enforce minimum size */
  height: 200px; /* Enforce minimum size */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-support__contact-card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-support__contact-card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
}

/* Responsible Gaming Section */
.page-support__responsible-gaming-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
}

.page-support__responsible-gaming-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}

.page-support__responsible-gaming-image {
  width: 50%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.page-support__responsible-gaming-text {
  width: 50%;
}

.page-support__responsible-gaming-text .page-support__section-title {
  color: #FCBC45;
  text-align: left;
}

.page-support__responsible-gaming-text .page-support__section-intro {
  color: #f0f0f0;
  text-align: left;
  margin-bottom: 30px;
  margin-left: 0;
  margin-right: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__responsible-gaming-content {
    flex-direction: column;
    text-align: center;
  }
  .page-support__responsible-gaming-image,
  .page-support__responsible-gaming-text {
    width: 100%;
    max-width: 700px;
  }
  .page-support__responsible-gaming-text .page-support__section-title,
  .page-support__responsible-gaming-text .page-support__section-intro {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-actions {
    flex-direction: column;
  }
  .page-support__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__section-intro {
    font-size: 0.95em;
  }
  .page-support__faq-grid,
  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-support__hero-section {
    padding: 60px 15px;
  }
  .page-support__faq-section,
  .page-support__contact-section,
  .page-support__responsible-gaming-section {
    padding: 60px 0;
  }
  /* Mobile image constraint */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__hero-image {
    width: 100%; /* Ensure hero image scales */
    height: 100%;
  }
  .page-support__contact-icon {
    width: 200px;
    height: 200px;
  }
  .page-support__responsible-gaming-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
}