.page-faq-gameplay-issues {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-faq-gameplay-issues__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-faq-gameplay-issues__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #3a4b63 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-faq-gameplay-issues__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,gaming,particles]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-faq-gameplay-issues__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-faq-gameplay-issues__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.page-faq-gameplay-issues__content-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-faq-gameplay-issues__article {
  margin-bottom: 50px;
  padding: 30px;
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-faq-gameplay-issues__article:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-faq-gameplay-issues__section-title {
  font-size: 2.2em;
  color: #0A192F; /* Dark blue */
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700; /* Gold underline */
  padding-bottom: 10px;
  text-align: center;
}

.page-faq-gameplay-issues__sub-section-title {
  font-size: 1.6em;
  color: #0A192F; /* Dark blue */
  margin-top: 35px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}

.page-faq-gameplay-issues__sub-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 80%;
  background-color: #FFD700; /* Gold accent */
  border-radius: 3px;
}

.page-faq-gameplay-issues__article p {
  font-size: 1.1em;
  margin-bottom: 1em;
  color: #555;
}

.page-faq-gameplay-issues__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-faq-gameplay-issues__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-faq-gameplay-issues__btn {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.page-faq-gameplay-issues__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-faq-gameplay-issues__btn--primary:hover {
  background-color: #e6c200;
  color: #0A192F;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-faq-gameplay-issues__btn--secondary {
  background-color: transparent;
  color: #0A192F; /* Dark blue text */
  border: 2px solid #FFD700; /* Gold border */
  margin-left: 15px;
}

.page-faq-gameplay-issues__btn--secondary:hover {
  background-color: #0A192F; /* Dark blue background */
  color: #FFD700; /* Gold text */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-faq-gameplay-issues__call-to-action {
  background-color: #0A192F; /* Dark blue */
  color: #fff;
  padding: 60px 0;
  text-align: center;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-faq-gameplay-issues__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
}

.page-faq-gameplay-issues__cta-text {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-faq-gameplay-issues__cta-buttons .page-faq-gameplay-issues__btn {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-faq-gameplay-issues__hero-title {
    font-size: 2.5em;
  }

  .page-faq-gameplay-issues__hero-subtitle,
  .page-faq-gameplay-issues__article p {
    font-size: 1em;
  }

  .page-faq-gameplay-issues__section-title {
    font-size: 1.8em;
  }

  .page-faq-gameplay-issues__sub-section-title {
    font-size: 1.4em;
  }

  .page-faq-gameplay-issues__cta-title {
    font-size: 2.2em;
  }

  .page-faq-gameplay-issues__cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-faq-gameplay-issues__hero-section {
    padding: 60px 0;
  }

  .page-faq-gameplay-issues__hero-title {
    font-size: 2em;
  }

  .page-faq-gameplay-issues__hero-subtitle {
    font-size: 0.9em;
    margin-bottom: 30px;
  }

  .page-faq-gameplay-issues__content-section {
    padding: 40px 0;
  }

  .page-faq-gameplay-issues__article {
    padding: 20px;
    margin-bottom: 30px;
  }

  .page-faq-gameplay-issues__section-title {
    font-size: 1.6em;
  }

  .page-faq-gameplay-issues__sub-section-title {
    font-size: 1.2em;
  }

  .page-faq-gameplay-issues__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-faq-gameplay-issues__btn--secondary {
    margin-left: 0;
    margin-top: 10px;
  }

  .page-faq-gameplay-issues__cta-title {
    font-size: 1.8em;
  }

  .page-faq-gameplay-issues__cta-text {
    font-size: 1em;
  }

  .page-faq-gameplay-issues__cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-faq-gameplay-issues__cta-buttons .page-faq-gameplay-issues__btn {
    width: 80%;
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .page-faq-gameplay-issues__hero-title {
    font-size: 1.8em;
  }

  .page-faq-gameplay-issues__hero-subtitle {
    font-size: 0.85em;
  }

  .page-faq-gameplay-issues__section-title {
    font-size: 1.4em;
  }

  .page-faq-gameplay-issues__sub-section-title {
    font-size: 1.1em;
  }

  .page-faq-gameplay-issues__btn {
    width: 90%;
    margin: 10px auto;
  }

  .page-faq-gameplay-issues__cta-buttons .page-faq-gameplay-issues__btn {
    width: 90%;
  }
}