/* style/support.css */
.page-support {
  color: #ffffff; /* Default text color for the page, contrasting with dark background if any */
  background-color: #000000; /* Main background color for the page */
  padding-top: var(--header-offset, 120px); /* Space for fixed header */
}

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

.page-support__section-title {
  font-size: 2.5rem;
  color: #FCBC45; /* Login button color for emphasis */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-support__section-description {
  font-size: 1.1rem;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-support__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
  border-radius: 10px;
}

.page-support__hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  font-weight: 700;
}

.page-support__hero-description {
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

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

.page-support__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1rem;
}

.page-support__button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

.page-support__button--primary:hover {
  background-color: #e0a33c;
}

.page-support__button--secondary {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-support__button--secondary:hover {
  background-color: transparent;
  color: #FFFFFF;
}

.page-support__button--small {
  padding: 10px 20px;
  font-size: 1rem;
}

/* FAQ Section */
.page-support__faq-section {
  padding: 80px 0;
  background-color: #0d0d0d; /* Slightly lighter black for contrast */
}

.page-support__faq-list {
  display: grid;
  gap: 20px;
}

.page-support__faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
}

.page-support__faq-question {
  padding: 20px;
  font-size: 1.25rem;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  font-weight: 600;
}

.page-support__faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.page-support__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-support__faq-answer {
  padding: 0 20px 20px;
  font-size: 1.1rem;
  color: #b3b3b3;
  line-height: 1.6;
  display: none;
}

.page-support__faq-answer.active {
  display: block;
}

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

.page-support__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
}

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

.page-support__faq-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__faq-button:hover {
  background-color: #e0a33c;
}

/* Contact Section */
.page-support__contact-section {
  padding: 80px 0;
  background-color: #000000;
}

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

.page-support__contact-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-support__contact-icon {
  width: 200px; /* Minimum size */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-support__contact-text {
  font-size: 1.1rem;
  color: #b3b3b3;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Responsible Gaming Section */
.page-support__responsible-gaming-section {
  padding: 80px 0;
  background-color: #0d0d0d;
  text-align: center;
}

.page-support__responsible-gaming-section .page-support__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-support__responsible-gaming-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
}

.page-support__responsible-gaming-content {
  max-width: 800px;
}

.page-support__responsible-gaming-content .page-support__section-title {
  color: #FFFFFF;
}

.page-support__responsible-gaming-content .page-support__section-description {
  color: #b3b3b3;
  margin-bottom: 30px;
}

/* Floating Register/Login Buttons */
.page-support__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-support__floating-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__floating-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-support__floating-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-support__floating-button--login {
  background-color: #FCBC45;
  color: #000000;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 3rem;
  }
  .page-support__hero-description {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 60px 0;
  }
  .page-support__hero-title {
    font-size: 2.2rem;
  }
  .page-support__hero-description {
    font-size: 1rem;
  }
  .page-support__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 100%;
    max-width: 300px;
  }
  .page-support__section-title {
    font-size: 2rem;
  }
  .page-support__faq-question {
    font-size: 1.1rem;
  }
  .page-support__faq-answer {
    font-size: 0.95rem;
  }
  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-support__responsible-gaming-section .page-support__container {
    flex-direction: column;
  }
  .page-support__responsible-gaming-image {
    width: 100%;
  }
  .page-support__floating-buttons {
    right: 10px;
    bottom: 10px;
  }
  .page-support__floating-button {
    padding: 10px 20px;
    font-size: 1rem;
  }
  
  /* IMPORTANT: Mobile content area image constraint */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__contact-icon {
    width: 150px; /* Adjust for mobile, still above 200px as per min requirement */
  }
  .page-support__responsible-gaming-image {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8rem;
  }
  .page-support__section-title {
    font-size: 1.8rem;
  }
  .page-support__hero-description {
    font-size: 0.9rem;
  }
}