/* style/support.css */
.page-support {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #FFFFFF;
}

.page-support__hero-section {
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-support__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45;
}

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

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

.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;
  min-width: 180px;
  text-align: center;
  font-size: 1.1em;
}

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

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

.page-support__button--secondary {
  background-color: transparent;
  color: #FFFFFF; /* White text for secondary button */
  border: 2px solid #FFFFFF;
}

.page-support__button--secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.page-support__button--small {
  padding: 10px 20px;
  font-size: 1em;
  min-width: unset;
}

.page-support__hero-image-wrapper {
  max-width: 100%;
  overflow: hidden;
  margin-top: 40px;
}

.page-support__hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-support__faq-section,
.page-support__contact-section,
.page-support__responsible-gaming-section,
.page-support__app-download-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-support__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-support__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}

.page-support__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  transition: box-shadow 0.3s ease;
}

.page-support__faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

.page-support__faq-question a {
  color: #000000;
  text-decoration: none;
}

.page-support__faq-question a:hover {
  text-decoration: underline;
  color: #FCBC45;
}

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

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

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

.page-support__faq-image-wrapper {
  margin-top: 40px;
}

.page-support__faq-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

.page-support__contact-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 40px;
}

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

.page-support__option-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__card-icon {
  font-size: 3em;
  color: #FCBC45;
  margin-bottom: 15px;
}

/* Placeholder icons for demonstration */
.icon-live-chat::before { content: '💬'; }
.icon-email::before { content: '📧'; }
.icon-phone::before { content: '📞'; }

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

.page-support__card-description {
  color: #555555;
  margin-bottom: 20px;
}

.page-support__contact-image-wrapper {
  margin-top: 40px;
}

.page-support__contact-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

.page-support__responsible-gaming-description,
.page-support__app-download-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__responsible-gaming-image-wrapper,
.page-support__app-download-image-wrapper {
  margin-top: 40px;
}

.page-support__responsible-gaming-image,
.page-support__app-download-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

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

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

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

  .page-support__button {
    width: 100%;
    max-width: 280px;
  }

  .page-support__section-title {
    font-size: 2em;
  }

  .page-support__faq-section,
  .page-support__contact-section,
  .page-support__responsible-gaming-section,
  .page-support__app-download-section {
    margin: 40px auto;
    padding: 30px 15px;
  }

  .page-support__faq-question {
    font-size: 1.1em;
  }

  .page-support__contact-options {
    grid-template-columns: 1fr;
  }

  /* Ensure images are responsive and do not overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for mobile too */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-section {
    padding: 60px 15px;
  }

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

  .page-support__section-title {
    font-size: 1.8em;
  }
}