.page-support {
  background-color: #0D0E12; /* Body background from shared.css, so page content should adapt */
  color: #FFF3E6; /* Text Main from custom palette */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(180deg, #17191F 0%, #0D0E12 100%); /* Card BG to Background color gradient */
  color: #FFF3E6;
}

.page-support__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-support__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-support__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-support__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #FFB04D; /* Glow color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-support__subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  color: #FFF3E6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  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, #D96800 0%, #FFA53A 100%); /* Reverse gradient on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-support__section-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: #FF8C1A; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  line-height: 1.3;
}

.page-support__introduction-section,
.page-support__transactions-section,
.page-support__promotions-section,
.page-support__contact-section,
.page-support__conclusion-section {
  padding: 60px 0;
}

.page-support__getting-started-section,
.page-support__game-rules-section,
.page-support__security-section,
.page-support__faq-section {
  padding: 60px 0;
  background-color: #121418; /* Slightly lighter dark background for contrast */
}

.page-support__dark-bg {
  background-color: #0D0E12;
  color: #FFF3E6;
}

.page-support__light-bg {
  background-color: #17191F; /* Card BG color */
  color: #FFF3E6;
}

.page-support__card {
  background-color: #17191F; /* Card BG color */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C; /* Border color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure cards in grid have same height */
  box-sizing: border-box;
}

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

.page-support__card-title {
  font-size: 22px;
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.page-support__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

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

.page-support__list,
.page-support__list-promotions,
.page-support__contact-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-support__list li,
.page-support__list-promotions li,
.page-support__contact-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #FFF3E6;
}

.page-support__list li::before,
.page-support__list-promotions li::before,
.page-support__contact-list li::before {
  content: '✔';
  color: #FF8C1A; /* Main color */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-support__list-promotions li::before {
  content: '🎁';
  font-size: 1.2em;
}

.page-support__contact-list li::before {
  content: '📞';
  font-size: 1.2em;
}

.page-support__read-more-link {
  color: #FF8C1A; /* Main color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__read-more-link:hover {
  color: #FFA53A; /* Auxiliary color */
  text-decoration: underline;
}

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

.page-support__game-cards .page-support__card p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.page-support__text-center {
  text-align: center;
  margin-top: 30px;
  font-size: 17px;
  color: #FFF3E6;
}

.page-support__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* FAQ Section */
details.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #A84F0C; /* Border color */
  overflow: hidden;
  background: #17191F; /* Card BG color */
  color: #FFF3E6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

details.page-support__faq-item summary.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-weight: 600;
  font-size: 17px;
  color: #FFA53A; /* Auxiliary color */
}

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

details.page-support__faq-item summary.page-support__faq-question:hover {
  background: #22252c; /* Slightly lighter hover for dark background */
}

.page-support__faq-qtext {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

.page-support__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FF8C1A; /* Main color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

details.page-support__faq-item .page-support__faq-answer {
  padding: 0 25px 25px;
  background: #121418; /* Background color */
  border-radius: 0 0 8px 8px;
  color: #FFF3E6;
}

.page-support__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-support__hero-image img {
    border-radius: 6px;
  }
  .page-support__card {
    padding: 25px;
  }
  .page-support__grid-2-cols, .page-support__grid-3-cols, .page-support__game-cards {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__container {
    padding: 0 15px;
  }
  .page-support__section-title {
    margin-bottom: 30px;
    padding-top: 15px;
  }
  .page-support__hero-image {
    margin-bottom: 20px;
  }
  .page-support__hero-image img {
    border-radius: 4px;
  }
  .page-support__main-title {
    font-size: 26px;
  }
  .page-support__subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-support__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    width: 100% !important;
  }
  .page-support__introduction-section,
  .page-support__transactions-section,
  .page-support__promotions-section,
  .page-support__contact-section,
  .page-support__conclusion-section,
  .page-support__getting-started-section,
  .page-support__game-rules-section,
  .page-support__security-section,
  .page-support__faq-section {
    padding: 40px 0;
  }
  .page-support__grid-2-cols, .page-support__grid-3-cols, .page-support__game-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-support__card {
    padding: 20px;
  }
  .page-support__card-title {
    font-size: 20px;
  }
  .page-support__list li,
  .page-support__list-promotions li,
  .page-support__contact-list li {
    font-size: 15px;
  }
  .page-support__image-full-width {
    margin: 20px 0;
  }
  details.page-support__faq-item summary.page-support__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-support__faq-qtext {
    font-size: 16px;
  }
  .page-support__faq-toggle {
    font-size: 22px;
    width: 24px;
  }
  details.page-support__faq-item .page-support__faq-answer {
    padding: 0 20px 20px;
  }
  .page-support__faq-answer p {
    font-size: 15px;
  }
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-support__section, .page-support__card, .page-support__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__cta-button, .page-support__btn-primary, .page-support__btn-secondary, .page-support a[class*="button"], .page-support a[class*="btn"] {
    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__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-buttons {
    display: flex;
    flex-direction: column;
  }
}