.page-support {
  color: #f5f5f5; /* Light text for contrast on dark background */
  background-color: #0A0A0A; /* Main dark background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-support__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-support__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  font-size: 1em;
  text-align: center;
}

.page-support__button--primary {
  background-color: #FFD700;
  color: #0A0A0A;
  border: 2px solid #FFD700;
}

.page-support__button--primary:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-support__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-support__button--secondary:hover {
  background-color: #FFD700;
  color: #0A0A0A;
}

.page-support__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-support__button--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.page-support__hero-container {
  position: relative;
  width: 100%;
  height: 600px; /* Fixed height for hero section */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
  z-index: 1;
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  color: #f5f5f5;
}

.page-support__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-support__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #e0e0e0;
}

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

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

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

.page-support__faq-item {
  background-color: #2a2a2a;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-support__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__faq-answer {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.7;
}

.page-support__faq-cta {
  text-align: center;
  margin-top: 60px;
}

.page-support__faq-cta-text {
  font-size: 1.3em;
  color: #f5f5f5;
  margin-bottom: 25px;
}

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

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

.page-support__contact-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 350px;
}

.page-support__contact-icon {
  width: 250px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}

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

.page-support__contact-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Resources Section */
.page-support__resources-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

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

.page-support__resource-card {
  background-color: #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-support__resource-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  max-width: 100%;
  height: auto;
}

.page-support__resource-title {
  font-size: 1.4em;
  color: #FFD700;
  padding: 15px 20px 5px;
  font-weight: bold;
}

.page-support__resource-description {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 20px 20px;
  line-height: 1.5;
}

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

.page-support__responsible-gaming-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
}

.page-support__responsible-gaming-image {
  flex: 0 0 450px;
  width: 450px;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
}

.page-support__responsible-gaming-text {
  flex-grow: 1;
}

.page-support__responsible-gaming-text p {
  font-size: 1.1em;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* CTA Section */
.page-support__cta-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  text-align: center;
}

.page-support__cta-container {
  background-color: #2a2a2a;
  border-radius: 15px;
  padding: 60px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-support__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__cta-description {
  font-size: 1.3em;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 3em;
  }
  .page-support__hero-description {
    font-size: 1.2em;
  }
  .page-support__section-title {
    font-size: 2.4em;
  }
  .page-support__responsible-gaming-content {
    flex-direction: column;
    align-items: center;
  }
  .page-support__responsible-gaming-image {
    flex: none;
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-support__hero-container {
    height: 500px;
  }
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-support__button--large {
    width: 90%;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__section-intro {
    font-size: 1em;
  }
  .page-support__faq-grid, .page-support__contact-methods, .page-support__resources-grid {
    grid-template-columns: 1fr;
  }
  .page-support__contact-icon, .page-support__resource-image, .page-support__responsible-gaming-image {
    max-width: 100%;
    height: auto;
  }
  /* Ensure all content area images are responsive and don't overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__cta-title {
    font-size: 2.2em;
  }
  .page-support__cta-description {
    font-size: 1.1em;
  }
  .page-support__cta-container {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-container {
    height: 400px;
  }
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__faq-question {
    font-size: 1.3em;
  }
  .page-support__contact-title {
    font-size: 1.5em;
  }
  .page-support__resource-title {
    font-size: 1.2em;
  }
  .page-support__cta-title {
    font-size: 1.8em;
  }
}