.page-support {
  color: #ffffff; /* Light text on dark body background */
  background-color: #000; /* Ensuring content area also respects dark background */
  padding-top: var(--header-offset, 120px); /* Fixed header spacing for desktop and mobile */
  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;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
  background-color: #1A1A2E; /* Dark background for hero section */
}

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

.page-support__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

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

.page-support__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.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;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 200px; /* Ensure buttons are large enough */
  text-align: center;
}

.page-support__button--primary {
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-support__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

.page-support__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A2E;
  transform: translateY(-3px);
}

.page-support__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

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

.page-support__faq-section {
  background-color: #1A1A2E;
  padding: 80px 0;
}

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

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-support__faq-answer {
  font-size: 1em;
  color: #e0e0e0;
}

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

.page-support__faq-cta-text {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-support__contact-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

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

.page-support__contact-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.page-support__contact-icon {
  width: 200px; /* Minimum 200px */
  height: auto;
  margin-bottom: 25px;
  display: block; /* Ensure it's not inline */
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

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

.page-support__contact-description {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-support__tech-assistance-section {
  background-color: #1A1A2E;
  padding: 80px 0;
}

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

.page-support__tech-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__tech-heading {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support__tech-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-support__tech-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  width: 800px; /* HTML width attribute is 800 */
  height: 600px; /* HTML height attribute is 600 */
  object-fit: cover;
}

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

.page-support__responsible-content {
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.page-support__responsible-text {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-support__responsible-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  width: 800px; /* HTML width attribute is 800 */
  height: 600px; /* HTML height attribute is 600 */
  object-fit: cover;
}

.page-support__cta-section {
  background-color: #1A1A2E;
  padding: 80px 0;
  text-align: center;
}

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

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

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

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

  .page-support__hero-description,
  .page-support__section-subtitle {
    font-size: 1.1em;
  }

  .page-support__section-title,
  .page-support__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-support {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }

  .page-support__hero-section {
    padding: 60px 20px;
  }

  .page-support__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-support__button {
    width: 100%;
    max-width: 300px; /* Constrain button width on small screens */
    margin: 0 auto;
  }

  .page-support__section-title,
  .page-support__cta-title {
    font-size: 1.8em;
    padding-top: 40px;
  }

  .page-support__section-subtitle,
  .page-support__responsible-text,
  .page-support__cta-description {
    font-size: 0.95em;
  }

  .page-support__faq-grid,
  .page-support__contact-methods,
  .page-support__tech-points {
    grid-template-columns: 1fr;
  }

  .page-support__faq-item,
  .page-support__contact-card,
  .page-support__tech-item {
    padding: 25px;
  }

  .page-support__faq-question,
  .page-support__contact-title,
  .page-support__tech-heading {
    font-size: 1.3em;
  }

  .page-support__contact-icon {
    width: 150px; /* Ensure images remain above 200px, but scale down */
    height: auto;
  }

  /* Critical: prevent content overflow on mobile */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-support__hero-description {
    font-size: 0.9em;
  }

  .page-support__section-title,
  .page-support__cta-title {
    font-size: 1.5em;
  }

  .page-support__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}