/* style/support.css */
.page-support {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-support__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* body already handles --header-offset */
  text-align: center;
  overflow: hidden;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 30px;
}

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

.page-support__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

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

.page-support__hero-description {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-support__section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-support__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 40px;
  font-weight: 600;
}

.page-support__text-block {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-support__text-block a {
  color: #2AD16F; /* Lighter green for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__text-block a:hover {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-support__highlight {
  color: #F2C14E; /* Gold */
  font-weight: bold;
}

/* CTA Buttons */
.page-support__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-support__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-support__cta-button--secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F; /* Lighter green */
  border: 2px solid #2E7A4E; /* Border */
}

.page-support__cta-button--secondary:hover {
  background: #1E3A2A; /* Divider */
  color: #57E38D; /* Glow */
}

/* Channels Section */
.page-support__channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-support__channel-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__channel-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(87, 227, 141, 0.4)); /* Glow effect */
  max-width: 100%;
  height: auto;
  display: block;
}

.page-support__channel-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-support__channel-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__faq-promo {
  margin-top: 60px;
  padding: 40px;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-support__faq-title {
  font-size: 1.8em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

/* Guide Section */
.page-support__guide-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__guide-card {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-support__guide-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%;
  display: block;
}

.page-support__card-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-support__card-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Security Section */
.page-support__security-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 20px;
}

.page-support__security-image {
  width: 800px;
  height: 600px;
  object-fit: contain;
  margin: 40px auto;
  display: block;
  max-width: 100%;
}

/* Games & Promotions Section */
.page-support__games-promotions-image {
  width: 1000px;
  height: 563px;
  object-fit: cover;
  margin: 40px auto;
  display: block;
  border-radius: 10px;
  max-width: 100%;
}

/* FAQ Section */
.page-support__faq-list {
  margin-top: 40px;
  text-align: left;
}

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

.page-support__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  font-weight: 600;
  font-size: 1.1em;
  list-style: none; /* Remove default marker */
  -webkit-touch-callout: none; /* Disable callout on iOS */
  -webkit-user-select: none; /* Disable text selection on iOS */
  -moz-user-select: none; /* Disable text selection on Firefox */
  -ms-user-select: none; /* Disable text selection on IE/Edge */
  user-select: none; /* Disable text selection */
}

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

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

.page-support__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #2AD16F;
  transition: transform 0.3s ease;
}

.page-support__faq-item[open] .page-support__faq-toggle {
  transform: rotate(45deg);
}

.page-support__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

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

/* Conclusion Section */
.page-support__conclusion-section {
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }
  .page-support__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
  .page-support__section {
    padding: 40px 15px;
  }
  .page-support__section-title {
    font-size: clamp(1.6em, 4vw, 2.5em);
  }
  .page-support__text-block {
    font-size: 1em;
  }
  .page-support__channel-icon {
    width: 180px;
    height: 130px;
  }
  .page-support__security-image, .page-support__games-promotions-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }
  .page-support__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-support__hero-description {
    font-size: 0.95em;
  }
  .page-support__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__section {
    padding: 30px 15px;
  }
  .page-support__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__section-title {
    font-size: clamp(1.5em, 5vw, 2em);
  }
  .page-support__text-block {
    font-size: 0.9em;
  }
  
  /* Images responsive */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Image containers responsive */
  .page-support__hero-image-wrapper,
  .page-support__channel-icon,
  .page-support__guide-image,
  .page-support__security-image,
  .page-support__games-promotions-image,
  .page-support__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-support__channel-card, .page-support__guide-card {
    padding: 20px;
  }

  .page-support__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-support__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9em;
  }

  /* Buttons responsive */
  .page-support__cta-buttons,
  .page-support__button-group,
  .page-support__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-support__cta-button {
    margin-bottom: 10px; /* Spacing for stacked buttons */
  }
  .page-support__channels-grid, .page-support__guide-cards {
    grid-template-columns: 1fr;
  }
}