/* style/support.css */

/* Base Styles for the Support Page */
.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #f8f8f8; /* Light background for content sections */
}

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

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

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

.page-support__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Auxiliary brand color */
  color: #003366; /* Dark text for auxiliary color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFCC00;
}

.page-support__cta-button:hover {
  background-color: #e6b800;
  color: #001a33;
}

.page-support__cta-button--secondary {
  background-color: #003366;
  color: #FFCC00;
  border-color: #003366;
}

.page-support__cta-button--secondary:hover {
  background-color: #001a33;
  color: #FFCC00;
}

.page-support__cta-button--transparent {
  background-color: transparent;
  color: #003366;
  border: 2px solid #003366;
}

.page-support__cta-button--transparent:hover {
  background-color: #003366;
  color: #FFCC00;
}

/* Hero Section */
.page-support__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--header-offset, 120px) 20px 60px 20px; /* PC padding-top */
  background: linear-gradient(135deg, #003366, #001a33);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-support__hero-content {
  z-index: 1;
  max-width: 900px;
}

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Auxiliary brand color for title */
  line-height: 1.2;
}

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

.page-support__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  overflow: hidden;
}

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

.page-support__faq-category {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-support__category-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 25px;
  border-bottom: 2px solid #FFCC00;
  padding-bottom: 10px;
}

.page-support__faq-list {
  list-style: none;
  padding: 0;
}

.page-support__faq-list li {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #e0e0e0;
}

.page-support__faq-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-support__faq-list li strong {
  color: #003366;
  font-size: 1.1em;
  display: block;
  margin-bottom: 5px;
}

.page-support__faq-list li a {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-support__faq-list li a:hover {
  color: #FFCC00;
}

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

.page-support__faq-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

/* Game Rules Section */
.page-support__game-rules-section {
  padding: 80px 0;
  background-color: #f0f5f9;
}

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

.page-support__guide-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-support__guide-title a {
  color: #003366;
  text-decoration: none;
}

.page-support__guide-title a:hover {
  color: #FFCC00;
}

.page-support__guide-text {
  color: #666666;
  margin-bottom: 25px;
}

.page-support__guide-link {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__guide-link:hover {
  background-color: #e6b800;
}

.page-support__game-rules-image {
  margin-top: 60px;
  text-align: center;
}

.page-support__game-rules-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

/* 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(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

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

.page-support__contact-description {
  color: #666666;
  margin-bottom: 25px;
}

.page-support__contact-button {
  display: inline-block;
  background-color: #003366;
  color: #FFCC00;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__contact-button:hover {
  background-color: #001a33;
}

.page-support__contact-image {
  margin-top: 60px;
  text-align: center;
}

.page-support__contact-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

.page-support__responsible-gaming-image {
  margin-top: 40px;
}

.page-support__responsible-gaming-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

/* Why Choose Section */
.page-support__why-choose-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-support__benefit-card {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-support__benefit-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

.page-support__benefit-description {
  color: #666666;
}

.page-support__elite-support-image {
  margin-top: 60px;
  text-align: center;
}

.page-support__elite-support-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

/* Get Started Section */
.page-support__get-started-section {
  background-color: #003366; /* Primary brand color */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.page-support__get-started-content {
  max-width: 800px;
}

.page-support__get-started-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

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

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

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-top: var(--header-offset, 120px); /* Mobile padding-top */
    padding-bottom: 40px;
  }

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

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

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

  .page-support__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-support__faq-grid,
  .page-support__game-guides-grid,
  .page-support__contact-methods,
  .page-support__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-support__cta-button {
    width: 100%;
    max-width: 300px;
  }

  /* Ensure content area images are responsive and don't overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }

  .page-support__faq-image img,
  .page-support__game-rules-image img,
  .page-support__contact-image img,
  .page-support__responsible-gaming-image img,
  .page-support__elite-support-image img {
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
    width: 100%; /* Ensure they scale down */
    height: auto; /* Maintain aspect ratio */
  }
}

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

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

  .page-support__category-title,
  .page-support__guide-title,
  .page-support__contact-title,
  .page-support__benefit-title {
    font-size: 1.4em;
  }
}