.page-support {
  color: #F2FFF6; /* Text Main */
  background-color: var(--background-color, #08160F); /* Fallback to Deep Green if var not set */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-support__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding: 60px 0 40px 0; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px; /* Space between image and content */
  box-sizing: border-box;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-support__hero-content {
  max-width: 800px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-support__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.page-support__description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-support__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  gap: 15px;
  justify-content: center;
}

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

.page-support__section-intro {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-small {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
  text-align: center;
}

.page-support__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: none;
}

.page-support__btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px rgba(42, 209, 111, 0.6);
}

.page-support__btn-secondary {
  background: transparent;
  color: #11A84E; /* Main Color */
  border: 2px solid #11A84E; /* Main Color */
}

.page-support__btn-secondary:hover {
  background: rgba(17, 168, 78, 0.1);
  color: #2AD16F;
  border-color: #2AD16F;
}

.page-support__btn-small {
  padding: 8px 15px;
  font-size: 0.9rem;
  border-radius: 5px;
  background: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border Color */
}

.page-support__btn-small:hover {
  background: #11A84E; /* Main Color */
  border-color: #11A84E;
}

.page-support__btn-large {
  padding: 15px 35px;
  font-size: 1.2rem;
}

/* FAQ Section */
.page-support__faq-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none; /* For details/summary */
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

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

.page-support__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

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

.page-support__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  max-height: 0; /* Default for div-based, but details handles it natively */
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-support__faq-item[open] .page-support__faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 10px 25px 20px 25px; /* Add padding when open */
}

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

.page-support__game-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}


/* Guide Section */
.page-support__guide-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-support__guide-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border Color */
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-support__guide-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-support__card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-support__card-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1; /* Push button to bottom */
  padding: 0 15px;
}


/* Contact Channels Section */
.page-support__contact-channels-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

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

.page-support__contact-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border Color */
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__contact-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%; /* Make icons circular if desired */
  background-color: #0A4B2C; /* Deep Green for icon background */
  padding: 10px;
}


/* Policies Section */
.page-support__policies-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-support__policy-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border Color */
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

/* Conclusion Section */
.page-support__conclusion-section {
  padding: 60px 0 80px 0;
  background-color: #08160F; /* Background */
  text-align: center;
}

.page-support__conclusion-section .page-support__btn-primary {
  margin-top: 30px;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-section {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .page-support__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-support__description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-support__container {
    padding: 0 15px;
  }
  
  /* Force images/videos/buttons responsiveness */
  .page-support img,
  .page-support video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-support__hero-image-wrapper,
  .page-support__guide-card,
  .page-support__contact-card,
  .page-support__policy-card,
  .page-support__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-support__hero-section {
    padding: 20px 0 20px 0;
  }
  .page-support__hero-content {
    padding: 0 15px;
  }
  .page-support__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-support__description {
    font-size: 0.95rem;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-support__btn-primary,
  .page-support__btn-secondary,
  .page-support__btn-small {
    width: 100%; /* Full width on mobile */
    padding: 12px 15px !important;
    font-size: 1rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-support__btn-large {
    padding: 15px 20px !important;
    font-size: 1.1rem !important;
  }

  .page-support__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    padding-top: 30px;
  }
  .page-support__section-intro {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .page-support__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-support__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.9rem;
  }
  .page-support__faq-item[open] .page-support__faq-answer {
    padding: 10px 20px 15px 20px;
  }

  .page-support__guide-grid,
  .page-support__contact-grid,
  .page-support__policy-grid {
    grid-template-columns: 1fr;
  }

  .page-support__guide-image {
    height: 180px;
  }
  .page-support__card-title {
    font-size: 1.1rem;
  }
  .page-support__card-text {
    font-size: 0.9rem;
  }
  
  .page-support__game-links {
    flex-direction: column;
    gap: 8px;
  }
  .page-support__game-links .page-support__btn-small {
    width: auto;
  }
}

/* Ensure no filter on images */
.page-support img {
  filter: none !important;
}

/* Accessibility: Focus styles */
.page-support a:focus,
.page-support button:focus,
.page-support__faq-question:focus {
  outline: 2px solid #57E38D; /* Glow */
  outline-offset: 3px;
}

/* Color contrast enforcement for specific elements if needed */
.page-support__dark-bg {
  color: #ffffff; /* Deep Green background with white text */
  background: #0A4B2C;
}
.page-support__light-bg {
  color: #333333; /* For any accidental light background */
  background: #ffffff;
}