.page-support {
  color: #F3F8FF; /* Text Main for dark background */
  background-color: #000; /* Body background is black */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-support__section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

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

.page-support__section-title {
  font-size: 36px;
  color: #F2C14E; /* Gold for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-support__section-intro {
  font-size: 18px;
  color: #AFC4E8; /* Text Secondary */
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* HERO Section */
.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 */
  background-color: #08162B; /* Deep Navy for hero background */
}

.page-support__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure it takes full width */
}

.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;
  border: 2px solid #244D84; /* Border color */
  box-shadow: 0 0 20px rgba(79, 168, 255, 0.4); /* Glow effect */
}

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

.page-support__hero-content h1 {
  font-size: 48px;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 20px;
  color: #AFC4E8; /* Text Secondary */
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-support__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-support__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-support__cta-button--large {
  padding: 18px 50px;
  font-size: 20px;
  border-radius: 10px;
}

/* Card styles */
.page-support__card {
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #1B3357; /* Divider color for border */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #244D84; /* Border color */
}

.page-support__card-title {
  font-size: 24px;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-support__card p {
  color: #AFC4E8; /* Text Secondary */
  font-size: 16px;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__card-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-support__card-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Contact Info Section */
.page-support__contact-grid,
.page-support__issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* FAQ Section */
.page-support__faq {
  background-color: #08162B; /* Deep Navy for FAQ section */
}

details.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #1B3357; /* Divider color */
  overflow: hidden;
  background: #10233F; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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;
  color: #F3F8FF; /* Text Main */
  font-weight: 600;
  font-size: 18px;
}
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: rgba(43, 115, 246, 0.1); /* Slightly lighter on hover */
}
.page-support__faq-qtext {
  flex: 1;
  line-height: 1.5;
  text-align: left;
}
.page-support__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-support__faq-item .page-support__faq-answer {
  padding: 0 25px 25px;
  background: #08162B; /* Deep Navy */
  border-radius: 0 0 10px 10px;
  color: #AFC4E8; /* Text Secondary */
  font-size: 16px;
}
details.page-support__faq-item[open] summary.page-support__faq-question {
  background: rgba(43, 115, 246, 0.15); /* Active state background */
  border-bottom: 1px solid #1B3357;
}

/* Security & Responsible Gaming Section */
.page-support__security-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.page-support__security-card {
  padding: 40px;
}

/* Call to Action Box */
.page-support__call-to-action {
  padding-bottom: 80px;
}
.page-support__cta-box {
  background-color: #113B7A; /* Main color for CTA box */
  padding: 50px;
  border-radius: 15px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid #4FA8FF; /* Glow color for border */
  box-shadow: 0 0 30px rgba(79, 168, 255, 0.6); /* Stronger glow */
}

.page-support__cta-title {
  font-size: 38px;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 20px;
  font-weight: 700;
}

.page-support__cta-description {
  font-size: 20px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-support__section-title {
    font-size: 32px;
  }
  .page-support__hero-content h1 {
    font-size: 42px;
  }
  .page-support__hero-description {
    font-size: 18px;
  }
  .page-support__cta-title {
    font-size: 34px;
  }
  .page-support__cta-description {
    font-size: 18px;
  }
  .page-support__contact-grid,
  .page-support__issues-grid,
  .page-support__security-content {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .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__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-support__hero-content h1 {
    font-size: 32px;
  }
  .page-support__hero-description {
    font-size: 16px;
  }
  .page-support__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-support__cta-button--large {
    padding: 15px 40px;
    font-size: 18px;
  }

  .page-support__section-title {
    font-size: 28px;
  }
  .page-support__section-intro {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-support__contact-grid,
  .page-support__issues-grid,
  .page-support__security-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-support__card {
    padding: 25px;
  }
  .page-support__card-title {
    font-size: 20px;
  }
  .page-support__card p {
    font-size: 15px;
  }
  .page-support__card-button {
    font-size: 15px;
    padding: 10px 20px;
  }

  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: 24px;
    width: 24px;
  }
  details.page-support__faq-item .page-support__faq-answer {
    padding: 0 20px 20px;
    font-size: 15px;
  }

  .page-support__cta-box {
    padding: 30px 20px;
  }
  .page-support__cta-title {
    font-size: 28px;
  }
  .page-support__cta-description {
    font-size: 16px;
  }

  /* Buttons responsive */
  .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 {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-support__hero-content h1 {
    font-size: 28px;
  }
  .page-support__section-title {
    font-size: 24px;
  }
  .page-support__cta-title {
    font-size: 24px;
  }
}