.page-support {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Dark background #121212, so light text */
  background-color: #121212; /* Default body background from shared.css */
  line-height: 1.6;
}

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

.page-support__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #ffc107; /* Highlight with auxiliary color */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-support__sub-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffc107;
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #007bff, #0a58ca); /* Brand blue gradient */
  color: #ffffff;
  padding-bottom: 40px;
}

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

.page-support__hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffc107; /* Highlight with auxiliary color */
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

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

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

.page-support__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.15;
}

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

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-small {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #121212; /* Dark text for light background */
  border: 2px solid #ffc107;
}

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

.page-support__btn-secondary {
  background-color: transparent;
  color: #ffc107; /* Auxiliary color */
  border: 2px solid #ffc107;
}

.page-support__btn-secondary:hover {
  background-color: #ffc107;
  color: #121212;
  transform: translateY(-2px);
}

.page-support__btn-small {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  background-color: #007bff;
  color: #ffffff;
  border: 1px solid #007bff;
  margin-top: 15px;
}

.page-support__btn-small:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

/* Channels Section */
.page-support__channels-section {
  padding: 60px 0;
  background-color: #f8f9fa; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
}

.page-support__channels-section .page-support__section-title {
  color: #007bff;
  text-shadow: none;
}

.page-support__channels-section .page-support__section-intro {
  color: #555555;
}

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

.page-support__channel-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-support__channel-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background-color: #e9ecef;
}

.page-support__channel-icon img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
}

.page-support__channel-title {
  font-size: 24px;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 15px;
}

.page-support__channel-description {
  font-size: 16px;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* FAQ Section */
.page-support__faq-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background */
  color: #ffffff;
}

.page-support__faq-section .page-support__section-title {
  color: #ffc107;
}

.page-support__faq-section .page-support__section-intro {
  color: #f0f0f0;
}

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

.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #2a2a2a; /* Darker card background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #007bff; /* Primary brand color for question header */
  color: #ffffff;
  border: 1px solid #0056b3;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-support__faq-question:hover {
  background: #0056b3;
  border-color: #004085;
}

.page-support__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
}

.page-support__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #ffc107; /* Auxiliary color for toggle icon */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-support__faq-item.active .page-support__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Rotate to form an 'x' or 'minus' */
}

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #e0e0e0;
  background: #2a2a2a; /* Darker card background */
  border-top: 1px solid #3a3a3a;
}

.page-support__faq-answer p {
  margin-bottom: 15px;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
}

/* Responsible Gaming Section */
.page-support__responsible-gaming-section {
  padding: 60px 0;
  background-color: #f8f9fa; /* Light background */
  color: #333333; /* Dark text */
}

.page-support__responsible-gaming-section .page-support__section-title {
  color: #007bff;
  text-shadow: none;
}

.page-support__responsible-gaming-section .page-support__section-intro {
  color: #555555;
}

.page-support__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-support__text-block {
  flex: 1;
}

.page-support__text-block p {
  margin-bottom: 15px;
  color: #555555;
}

.page-support__image-block {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-support__img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Contact CTA Section */
.page-support__contact-cta-section {
  padding: 60px 0;
  background-color: #007bff; /* Primary brand color */
  color: #ffffff;
  text-align: center;
}

.page-support__contact-cta-section .page-support__section-title {
  color: #ffc107;
}

.page-support__contact-cta-section .page-support__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 42px;
  }
  .page-support__hero-description {
    font-size: 18px;
  }
  .page-support__section-title {
    font-size: 32px;
  }
  .page-support__channels-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-support__content-wrapper {
    flex-direction: column;
  }
  .page-support__image-block {
    order: -1; /* Image appears above text on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-support__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure padding for mobile */
    padding-bottom: 30px;
  }
  .page-support__hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-support__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-support__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__btn-primary,
  .page-support__btn-secondary,
  .page-support__btn-small,
  .page-support a[class*="button"],
  .page-support a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-support__hero-buttons,
  .page-support__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
  }
  .page-support__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-support__section-intro {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-support__sub-title {
    font-size: 20px;
  }
  .page-support__channels-section,
  .page-support__faq-section,
  .page-support__responsible-gaming-section,
  .page-support__contact-cta-section {
    padding: 40px 0;
  }
  .page-support__container {
    padding: 0 15px;
  }
  .page-support__channels-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-support__channel-card {
    padding: 20px;
  }
  .page-support__channel-icon {
    width: 90px;
    height: 90px;
  }
  .page-support__channel-title {
    font-size: 20px;
  }
  .page-support__channel-description {
    font-size: 15px;
  }
  .page-support__faq-question {
    padding: 15px 20px;
  }
  .page-support__faq-question h3 {
    font-size: 16px;
    width: calc(100% - 40px);
  }
  .page-support__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-support__faq-answer {
    padding: 0 20px;
  }
  .page-support__faq-item.active .page-support__faq-answer {
    padding: 15px 20px !important;
  }
  .page-support__content-wrapper {
    gap: 30px;
  }
  .page-support__img-responsive {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-support__section,
  .page-support__card,
  .page-support__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}