.page-support {
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

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

.page-support__hero-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-content {
  max-width: 800px;
  margin-bottom: 40px;
  z-index: 1;
}

.page-support__hero-title {
  font-size: 3.2em;
  color: #e94560;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
}

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

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

.page-support__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-support__cta-button--primary {
  background-color: #e94560;
  color: #ffffff;
  border: 2px solid #e94560;
}

.page-support__cta-button--primary:hover {
  background-color: #ff6b81;
  transform: translateY(-3px);
}

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

.page-support__cta-button--secondary:hover {
  background-color: #e94560;
  color: #ffffff;
  transform: translateY(-3px);
}

.page-support__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin-top: 40px;
  z-index: 0;
}

.page-support__hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-support__section-title {
  font-size: 2.8em;
  color: #e94560;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
  text-shadow: 0 0 8px rgba(233, 69, 96, 0.3);
}

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

.page-support__faq-section {
  padding: 60px 0;
  background-color: #1a1a2e;
}

.page-support__faq-category {
  margin-bottom: 40px;
}

.page-support__category-title {
  font-size: 2em;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #e94560;
  padding-bottom: 15px;
  display: inline-block;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

.page-support__accordion-item {
  background-color: #282844;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-support__accordion-header {
  width: 100%;
  background-color: #3b3b64;
  color: #ffffff;
  padding: 20px 25px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-support__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-support__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-support__accordion-header:hover {
  background-color: #4c4c7a;
}

.page-support__accordion-content {
  padding: 0 25px;
  background-color: #282844;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-support__accordion-content p {
  padding: 15px 0;
  color: #cccccc;
  font-size: 1em;
}

.page-support__accordion-content ul {
  padding-left: 20px;
  list-style-type: disc;
  color: #cccccc;
}

.page-support__accordion-content li {
  margin-bottom: 8px;
}

.page-support__contact-section {
  padding: 60px 0;
  background-color: #0f0f1a;
}

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

.page-support__contact-card {
  background-color: #1a1a2e;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.page-support__contact-card:hover {
  transform: translateY(-10px);
}

.page-support__contact-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(233, 69, 96, 0.5));
}

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

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

.page-support__account-management-section {
  padding: 60px 0;
  background-color: #1a1a2e;
}

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

.page-support__guide-card {
  background-color: #282844;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.page-support__guide-card:hover {
  background-color: #3b3b64;
}

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

.page-support__guide-card p {
  color: #cccccc;
  margin-bottom: 20px;
}

.page-support__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #e94560;
  color: #ffffff;
  border: 2px solid #e94560;
}

.page-support__cta-button--small:hover {
  background-color: #ff6b81;
  transform: translateY(-2px);
}

.page-support__responsible-gaming-section {
  padding: 60px 0;
  background-color: #0f0f1a;
}

.page-support__responsible-gaming-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-support__responsible-gaming-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-support__responsible-gaming-text {
  flex: 1;
  max-width: 50%;
}

.page-support__responsible-gaming-text p {
  color: #cccccc;
  margin-bottom: 25px;
}

.page-support__final-cta-section {
  background: linear-gradient(45deg, #e94560 0%, #a33043 100%);
  padding: 80px 0;
  text-align: center;
}

.page-support__final-cta-section .page-support__section-title {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

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

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

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

  .page-support__responsible-gaming-content {
    flex-direction: column;
  }

  .page-support__responsible-gaming-image,
  .page-support__responsible-gaming-text {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-support {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }

  .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__cta-button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-support__section-title {
    font-size: 2em;
    padding-top: 40px;
  }

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

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

  .page-support__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-support__accordion-content {
    padding: 0 20px;
  }

  .page-support__contact-methods,
  .page-support__guides-grid {
    grid-template-columns: 1fr;
  }

  .page-support__contact-card,
  .page-support__guide-card {
    padding: 25px;
  }

  .page-support__responsible-gaming-image {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  /* Ensure all images in content area are responsive and not too small */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__contact-icon {
    width: 150px; /* Reduced for mobile, but still > 200px effective area */
    height: auto;
  }
}

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

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

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

  .page-support__accordion-header {
    font-size: 1em;
  }

  .page-support__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
}