.page-support {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--dark-bg-1); /* Inherit from shared.css */
}

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

.page-support__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-support__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-support__btn-primary:hover {
  background-color: #1a8cc7;
  border-color: #1a8cc7;
}

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

.page-support__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-support__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-support__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  box-sizing: border-box;
}

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

.page-support__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-support__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 900px;
}

.page-support__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-support__description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

/* FAQ Section */
.page-support__faq-section {
  padding: 80px 20px;
  background-color: var(--dark-bg-1);
}

.page-support__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-support__faq-item[open] .page-support__faq-question {
  background-color: rgba(255, 255, 255, 0.15);
}

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

.page-support__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #26A9E0;
}

.page-support__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1.05em;
  color: #e0e0e0;
}

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

.page-support__faq-answer a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-support__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-support__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  max-width: 400px; /* Smaller for sidebar effect */
  width: 100%;
}

/* Contact Section */
.page-support__contact-section {
  padding: 80px 20px;
  background-color: #26A9E0; /* Brand color as background */
  color: #ffffff;
  text-align: center;
}

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

.page-support__contact-card {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__contact-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 0;
  box-shadow: none;
}

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

.page-support__contact-description {
  font-size: 1.05em;
  color: #f0f0f0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__btn-primary--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

/* Account & Technical Sections (similar structure) */
.page-support__account-section,
.page-support__responsible-gaming-section {
  padding: 80px 20px;
  background-color: var(--dark-bg-1);
}

.page-support__technical-section {
  padding: 80px 20px;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-support__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-support__content-grid:nth-child(even) {
  flex-direction: row-reverse;
}

.page-support__text-block {
  flex: 1;
  min-width: 300px;
  color: #e0e0e0;
}

.page-support__text-block h3 {
  color: #26A9E0;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-support__technical-section .page-support__text-block h3 {
  color: #ffffff;
}

.page-support__tech-list,
.page-support__responsible-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-support__tech-list li,
.page-support__responsible-list li {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #ffffff;
  border-left: 4px solid #26A9E0;
}

.page-support__tech-list li strong,
.page-support__responsible-list li strong {
  color: #26A9E0;
}

.page-support__technical-section .page-support__tech-list li strong {
  color: #ffffff;
}

/* Video Section */
.page-support__video-section {
  padding: 80px 20px;
  background-color: var(--dark-bg-1);
  text-align: center;
}

.page-support__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 900px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  background-color: #000;
}

.page-support__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-support__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
  object-fit: cover;
}

.page-support__section-intro--bottom {
  margin-top: 20px;
  margin-bottom: 0;
}

/* CTA Bottom Section */
.page-support__cta-bottom-section {
  padding: 60px 20px;
  background-color: #1a8cc7; /* Slightly darker brand color for emphasis */
  text-align: center;
}

.page-support__cta-bottom-content {
  max-width: 800px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__main-title {
    font-size: 2.8em;
  }
  .page-support__description {
    font-size: 1.1em;
  }
  .page-support__hero-section {
    height: 500px;
  }
  .page-support__image--right {
    float: none;
    margin: 20px auto;
  }
  .page-support__content-grid {
    flex-direction: column;
  }
  .page-support__content-grid:nth-child(even) {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-support__main-title {
    font-size: 2em;
  }
  .page-support__description {
    font-size: 1em;
  }
  .page-support__hero-section {
    height: 400px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__section-intro {
    font-size: 0.95em;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-support__btn-primary,
  .page-support__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-support__faq-answer {
    font-size: 1em;
    padding: 0 15px 15px 15px;
  }
  .page-support__contact-methods {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  .page-support__image,
  .page-support__contact-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__video-section,
  .page-support__video-container,
  .page-support__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-support video,
  .page-support__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-support__video-wrapper {
    padding-bottom: 56.25% !important; /* Ensure aspect ratio */
    height: 0 !important;
  }
  .page-support__content-grid {
    gap: 20px;
  }
  .page-support__image--right {
    margin: 20px auto;
    float: none;
  }
  .page-support__text-block {
    min-width: unset;
  }
}