/* style/support.css */
.page-support {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #0f1a29; /* Slightly lighter than main color for body background */
}

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

.page-support__hero {
  background: linear-gradient(135deg, #1A2E47 0%, #0a141f 100%); /* Dark gradient for hero */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-support__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #cccccc;
}

.page-support__hero-cta {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA button */
  color: #1A2E47; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-support__hero-cta:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
}

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

.page-support__faq, .page-support__contact, .page-support__responsible-gaming, .page-support__cta-banner {
  padding: 80px 0;
  text-align: center;
}

.page-support__faq {
  background-color: #1A2E47;
  position: relative;
  overflow: hidden;
}

.page-support__faq-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: auto;
  opacity: 0.1;
  z-index: 1;
}

.page-support__contact {
  background-color: #0f1a29;
  position: relative;
  overflow: hidden;
}

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

.page-support__responsible-gaming {
  background-color: #1A2E47;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.page-support__responsible-gaming-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: auto;
  opacity: 0.1;
  z-index: 1;
}

.page-support__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__section-subtitle {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__accordion {
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: left;
  position: relative;
  z-index: 2;
}

.page-support__accordion-item {
  background-color: #2a3e59; /* Slightly lighter dark blue for accordion items */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-support__accordion-header {
  background-color: #3a506b; /* Even lighter dark blue for accordion header */
  color: #FFD700; /* Gold text for header */
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-support__accordion-header:hover {
  background-color: #4a607b;
}

.page-support__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-support__accordion-content {
  padding: 0 25px;
  background-color: #2a3e59;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-support__accordion-content p {
  padding: 15px 0;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-support__accordion-content p a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-support__accordion-content p a:hover {
  text-decoration: underline;
}

.page-support__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-support__method-item {
  background-color: #1A2E47;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow for icons */
}

.page-support__method-item h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-support__method-item p {
  color: #cccccc;
  margin-bottom: 25px;
  line-height: 1.5;
}

.page-support__method-cta {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E47;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-support__method-cta:hover {
  background-color: #e0b800;
}

.page-support__responsible-gaming p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.7;
  color: #e0e0e0;
  position: relative;
  z-index: 2;
}

.page-support__responsible-gaming-cta {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E47;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 2;
}

.page-support__responsible-gaming-cta:hover {
  background-color: #e0b800;
}

.page-support__cta-banner {
  background-color: #0f1a29;
  padding: 80px 0;
}

.page-support__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__cta-description {
  font-size: 1.2em;
  color: #cccccc;
  margin-bottom: 40px;
}

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

.page-support__cta-btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-support__cta-btn--primary {
  background-color: #FFD700;
  color: #1A2E47;
}

.page-support__cta-btn--primary:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
}

.page-support__cta-btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-support__cta-btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E47;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2.2em;
  }
  .page-support__contact-methods {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-support__hero {
    padding: 80px 0;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__faq, .page-support__contact, .page-support__responsible-gaming, .page-support__cta-banner {
    padding: 60px 0;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-subtitle {
    font-size: 0.9em;
  }
  .page-support__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-support__cta-title {
    font-size: 2.2em;
  }
  .page-support__cta-description {
    font-size: 1em;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__cta-btn {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-cta {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__section-subtitle {
    font-size: 0.85em;
  }
  .page-support__accordion-header {
    font-size: 0.9em;
    padding: 12px 15px;
  }
  .page-support__method-item {
    padding: 20px;
  }
  .page-support__method-icon {
    width: 50px;
    height: 50px;
  }
  .page-support__method-item h3 {
    font-size: 1.4em;
  }
  .page-support__method-cta {
    padding: 8px 20px;
    font-size: 0.9em;
  }
  .page-support__cta-title {
    font-size: 1.8em;
  }
  .page-support__cta-btn {
    font-size: 1em;
    padding: 12px 25px;
    width: 90%;
  }
  .page-support__faq-image, .page-support__responsible-gaming-image {
    display: none; /* Hide decorative images on very small screens */
  }
}