/* style/support.css */
.page-support {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background from shared.css */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px 60px;
  background-color: #1A202C; /* Auxiliary color for hero section background */
}

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

.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: #FFD700; /* Gold for main title */
  font-weight: bold;
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-support__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #f0f0f0;
}

.page-support__faq-section,
.page-support__game-guides-section,
.page-support__contact-section,
.page-support__responsible-gaming-section {
  padding: 60px 0;
  background-color: #1A202C; /* Auxiliary color for sections */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__faq-grid,
.page-support__guides-grid,
.page-support__contact-methods {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}

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

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

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

.page-support__faq-card,
.page-support__guide-card,
.page-support__method-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-support__faq-card:hover,
.page-support__guide-card:hover,
.page-support__method-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

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

.page-support__card-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__card-link:hover {
  color: #ffe066;
  text-decoration: underline;
}

.page-support__card-text {
  font-size: 1em;
  color: #e0e0e0;
}

.page-support__guide-image,
.page-support__faq-image,
.page-support__contact-image,
.page-support__responsible-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  display: block; /* Ensure images take full width */
  object-fit: cover;
  min-height: 200px; /* Minimum size for content images */
}

.page-support__guide-image {
  margin-bottom: 20px;
}

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

.page-support__responsible-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-support__list-item {
  background-color: rgba(255, 215, 0, 0.08);
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-support__cta-section {
  background-color: #0d121b; /* A darker shade for CTA */
  padding: 80px 20px;
  text-align: center;
}

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

.page-support__cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

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

/* Buttons */
.page-support__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-support__btn--primary {
  background-color: #FFD700; /* Gold primary button */
  color: #1A202C;
}

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

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

.page-support__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-support__btn--tertiary {
  background-color: rgba(255, 215, 0, 0.15);
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-support__btn--tertiary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

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

@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;
    gap: 15px;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-intro {
    font-size: 0.95em;
  }
  .page-support__faq-grid,
  .page-support__guides-grid,
  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-support__card-title {
    font-size: 1.3em;
  }
  .page-support__cta-title {
    font-size: 2em;
  }
  .page-support__cta-description {
    font-size: 1.1em;
  }
  .page-support__btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-support__hero-section,
  .page-support__faq-section,
  .page-support__game-guides-section,
  .page-support__contact-section,
  .page-support__responsible-gaming-section,
  .page-support__cta-section {
    padding: 40px 0;
  }
  .page-support__container {
    padding: 0 15px;
  }
  .page-support__guide-image, .page-support__faq-image, .page-support__contact-image, .page-support__responsible-image {
    max-width: 100%;
    height: auto;
    min-height: 200px; /* Ensure images are not too small */
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__section-title {
    font-size: 1.6em;
  }
  .page-support__cta-title {
    font-size: 1.8em;
  }
  .page-support__btn {
    font-size: 0.9em;
    padding: 10px 15px;
  }
  .page-support__list-item {
    font-size: 1em;
  }
}