.page-support {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: var(--background-color); /* Inherit from shared */
}

/* Ensure body padding-top is handled by shared.css */
/* .page-support__hero-section, .page-support__video-section etc. should not have var(--header-offset) */

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

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
  background-color: #08160F; /* Background */
}

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

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Slightly dim the background image */
  filter: grayscale(50%); /* Add a subtle filter */
}

.page-support__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 15px;
}

.page-support__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

.page-support__intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
}

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

.page-support__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-support__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-support__cta-button--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-support__cta-button--secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
}

.page-support__cta-button--secondary:hover {
  background: #57E38D;
  color: #08160F; /* Background */
  transform: translateY(-2px);
}

.page-support__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-support__cta-button--inline {
    background: transparent;
    color: #F2C14E; /* Gold */
    border: 2px solid #F2C14E; /* Gold */
    padding: 10px 20px;
    font-size: 0.9rem;
}

.page-support__cta-button--inline:hover {
    background: #F2C14E;
    color: #08160F;
}

.page-support__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-support__section-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-support__why-choose-us,
.page-support__contact-methods,
.page-support__faq-section,
.page-support__responsible-gaming,
.page-support__tech-support,
.page-support__payment-support,
.page-support__feedback-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-support__why-choose-us {
  background-color: #11271B; /* Card BG */
}

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

.page-support__feature-item {
  background-color: #0A4B2C; /* Deep Green */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-support__feature-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-support__feature-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

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

.page-support__method-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__method-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  max-width: 100px; /* Enforce min 200px rule for general images, but these are illustrative */
  max-height: 100px;
}

.page-support__method-title {
  font-size: 1.3rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-support__method-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-support__faq-section {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-support__faq-item {
  background-color: #11271B; /* Card BG */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border */
}

.page-support__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  list-style: none;
  position: relative;
  user-select: none; /* Prevent text selection on click */
}

.page-support__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-support__faq-qtext {
  flex-grow: 1;
}

.page-support__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-support__faq-item[open] .page-support__faq-toggle {
  content: "−";
}

.page-support__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

.page-support__faq-cta {
  text-align: center;
  margin-top: 40px;
}

.page-support__responsible-gaming {
  background-color: #08160F; /* Background */
}

.page-support__responsible-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.page-support__text-block {
  flex: 1;
  min-width: 300px;
}

.page-support__sub-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-support__responsible-gaming p {
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
  margin-bottom: 15px;
}

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

.page-support__responsible-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-support__tech-grid,
.page-support__payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-support__tech-item,
.page-support__payment-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-support__tech-title,
.page-support__payment-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-support__tech-item p,
.page-support__payment-item p {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

.page-support__feedback-section {
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-support__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-support__intro-text {
    font-size: 1rem;
  }

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

  .page-support__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 15px !important;
    font-size: 0.95rem !important;
  }

  .page-support__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .page-support__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-support__hero-section,
  .page-support__why-choose-us,
  .page-support__contact-methods,
  .page-support__faq-section,
  .page-support__responsible-gaming,
  .page-support__tech-support,
  .page-support__payment-support,
  .page-support__feedback-section {
    padding: 40px 0;
  }

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

  .page-support__feature-item,
  .page-support__method-card,
  .page-support__tech-item,
  .page-support__payment-item {
    padding: 20px;
  }

  .page-support__faq-item summary {
    font-size: 1rem;
    padding: 15px;
  }

  .page-support__faq-answer {
    padding: 0 15px 15px 15px;
    font-size: 0.95rem;
  }

  /* Image responsive rules */
  .page-support img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-support__hero-image-wrapper,
  .page-support__image-wrapper,
  .page-support__method-icon {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-support__hero-image,
  .page-support__responsible-image {
      min-width: unset;
      min-height: unset;
  }
}