/* style/support.css */
.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Inherited from body, but good to specify for clarity */
}

.page-support a {
  color: #017439;
  text-decoration: none;
}

.page-support a:hover {
  text-decoration: underline;
}

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

.page-support__section {
  padding: 80px 0;
  text-align: center;
}

.page-support__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
}

.page-support__section-title--light {
  color: #ffffff;
}

.page-support__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__section-description--light {
  color: #f0f0f0;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 100px 0;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #017439, #004d2e);
}

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

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-support__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #ffffff;
}

.page-support__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-support__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-primary {
  background: #C30808; /* Custom color for Register/Login */
  color: #FFFF00; /* Custom color for Register/Login font */
  border: 2px solid #C30808;
}

.page-support__btn-primary:hover {
  background: #e00b0b;
  border-color: #e00b0b;
  transform: translateY(-3px);
}

.page-support__btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-support__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Cards */
.page-support__card {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
  color: #ffffff;
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-support__card:hover {
  transform: translateY(-5px);
}

.page-support__card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-support__card-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* Why Us Section */
.page-support__why-us-section {
  background-color: #1a1a1a;
}

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

.page-support__feature-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #017439;
}

.page-support__feature-text {
  color: #f0f0f0;
}

/* FAQ Section */
.page-support__faq-section {
  background: #017439; /* Brand color as dark background */
  color: #ffffff;
}

.page-support__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.page-support__faq-category-title {
  font-size: 2em;
  margin-bottom: 25px;
  color: #ffffff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
}

.page-support__faq-item {
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.page-support__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.page-support__faq-item summary:hover {
  background: rgba(255, 255, 255, 0.15);
}

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

.page-support__faq-qtext {
  flex-grow: 1;
  padding-right: 15px;
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-support__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #f0f0f0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-support__faq-answer .page-support__text-link {
  color: #FFFF00; /* Custom link color for better visibility on dark green */
  text-decoration: underline;
}

.page-support__faq-image-wrapper {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-support__faq-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.page-support__contact-section {
  background-color: #1a1a1a;
}

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

.page-support__contact-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  text-align: center;
}

.page-support__contact-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #017439;
}

.page-support__contact-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-support__social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.page-support__social-link {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}

.page-support__social-link:hover {
  background: #017439;
}

.page-support__social-link img {
  
  
  max-width: 100%;
  height: auto;
  filter: invert(1);
  /* Icons are often black, invert to white for dark background */
  /* NOTE: This is an exception for social icons which are typically small and monochrome. */
  /* For general content images, filter is forbidden. */
}

.page-support__contact-image-wrapper {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-support__contact-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Security Section */
.page-support__security-section {
  background: #004d2e; /* Darker shade of brand color */
  color: #ffffff;
}

.page-support__text-link {
  color: #FFFF00; /* Custom link color for better visibility */
  text-decoration: underline;
}

.page-support__security-image-wrapper {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-support__security-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Responsible Gaming Section */
.page-support__responsible-gaming-section {
  background-color: #1a1a1a;
}

/* App Download Section */
.page-support__app-download-section {
  background: #017439; /* Brand color as dark background */
  color: #ffffff;
}

.page-support__app-image-wrapper {
  margin-top: 60px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-support__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-support__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Global image styles */
.page-support img {
  max-width: 100%;
  height: auto;
  display: block;
}