.page-support {
  color: #ffffff; /* Default text color for dark body background */
  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 {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1E90FF, #000000);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-support__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:1920x1080:v9bet,support,abstract_pattern,dark_blue_gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-support__hero-section .page-support__container {
  position: relative;
  z-index: 1;
}

.page-support__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for title */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.page-support__description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

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

.page-support__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-support__btn-primary {
  background: #FFD700;
  color: #1a1a1a; /* Dark text for gold button */
}

.page-support__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-support__btn-secondary:hover {
  background: #1a7ae6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-support__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700; /* Gold accent for section titles */
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

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

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

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1a1a1a;
  color: #FFD700; /* Gold for questions */
  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: #2a2a2a;
  border-color: #FFD700;
}

.page-support__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #FFD700;
}

.page-support__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  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: 30px;
  height: 30px;
}

.page-support__faq-item.active .page-support__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

.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, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #222222;
  color: #f0f0f0;
}

.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;
}

.page-support__faq-answer p {
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-support__contact-section {
  padding: 80px 20px;
  background: #1E90FF; /* Auxiliary color background */
  color: #ffffff;
  text-align: center;
}

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

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

.page-support__contact-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-support__contact-card:hover {
  transform: translateY(-5px);
  background: rgba(0, 0, 0, 0.6);
}

.page-support__contact-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  width: 300px; /* Display width */
  height: 200px; /* Display height */
  object-fit: cover;
}

.page-support__contact-card h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support__contact-card p {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__responsible-gaming-section {
  padding: 80px 20px;
  background: #000000;
  color: #f0f0f0;
  text-align: center;
}

.page-support__responsible-gaming-section .page-support__section-title {
  color: #FFD700;
}

.page-support__resources-section {
  padding: 80px 20px;
  background: #0d0d0d;
  color: #f0f0f0;
  text-align: center;
}

.page-support__resources-section .page-support__section-title {
  color: #FFD700;
}

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

.page-support__resource-item {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-support__resource-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-support__resource-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  width: 400px; /* Display width */
  height: 300px; /* Display height */
  object-fit: cover;
}

.page-support__resource-item h3 {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-support__resource-item p {
  font-size: 0.95em;
  color: #cccccc;
}

.page-support__brand-intro-section {
  padding: 80px 20px;
  background: #000000;
  color: #f0f0f0;
  text-align: center;
}

.page-support__brand-intro-section .page-support__section-title {
  color: #FFD700;
}

.page-support__brand-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-support__highlight-item {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-support__highlight-item img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 20px;
  width: 200px; /* Display width */
  height: 200px; /* Display height */
  object-fit: cover;
  border: 4px solid #FFD700;
}

.page-support__highlight-item h3 {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-support__highlight-item p {
  font-size: 0.95em;
  color: #cccccc;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-support__main-title {
    font-size: 3em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px) !important;
    overflow-x: hidden !important;
  }

  .page-support__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

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

  .page-support__description {
    font-size: 1em;
    margin-bottom: 30px;
  }

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

  .page-support__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-support__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-support__faq-section, .page-support__contact-section, .page-support__responsible-gaming-section, .page-support__resources-section, .page-support__brand-intro-section {
    padding: 60px 15px;
  }

  .page-support__faq-question {
    padding: 15px 20px;
  }

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

  .page-support__faq-toggle {
    font-size: 24px;
    width: 25px;
    height: 25px;
  }

  .page-support__faq-item.active .page-support__faq-answer {
    padding: 15px 20px !important;
  }

  .page-support__contact-methods, .page-support__resources-grid, .page-support__brand-highlights {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }

  .page-support__contact-card img, .page-support__resource-item img, .page-support__highlight-item img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}