/* style/download-center-download-troubleshooting.css */
.page-download-center-download-troubleshooting {
  font-family: Arial, sans-serif;
  color: #ffffff; /* Default text color for dark background */
  background-color: #000000; /* Main background color */
  line-height: 1.6;
}

.page-download-center-download-troubleshooting .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-download-center-download-troubleshooting .hero-section {
  background: linear-gradient(135deg, #000000 0%, #333333 100%); /* Darker gradient for hero */
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-download-center-download-troubleshooting .hero-content {
  z-index: 1;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-download-center-download-troubleshooting .hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-download-center-download-troubleshooting .hero-description {
  font-size: 1.2em;
  color: #cccccc;
  margin-bottom: 30px;
}

.page-download-center-download-troubleshooting .hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust as needed */
  right: -50px; /* Adjust as needed */
  width: 400px; /* Adjust size */
  height: 400px; /* Adjust size */
  opacity: 0.1;
  z-index: 0;
  animation: rotateImage 30s linear infinite;
}

.page-download-center-download-troubleshooting .hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes rotateImage {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.page-download-center-download-troubleshooting .btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #000000;
  border: 2px solid #FFD700;
}

.page-download-center-download-troubleshooting .btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-download-center-download-troubleshooting .btn-secondary:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-2px);
}

.page-download-center-download-troubleshooting .section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-download-center-download-troubleshooting .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-download-center-download-troubleshooting .section-description {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-center-download-troubleshooting .troubleshooting-steps {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-download-center-download-troubleshooting .step-card {
  background-color: #2a2a2a;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-download-troubleshooting .step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-download-center-download-troubleshooting .card-icon {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-download-center-download-troubleshooting .card-icon img {
  width: 35px;
  height: 35px;
  filter: invert(100%); /* Make icons white on gold background */
}

.page-download-center-download-troubleshooting .card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-download-center-download-troubleshooting .card-text {
  color: #b0b0b0;
  margin-bottom: 20px;
}

.page-download-center-download-troubleshooting .solution-list {
  list-style: none;
  padding-left: 0;
  color: #e0e0e0;
}

.page-download-center-download-troubleshooting .solution-list li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.page-download-center-download-troubleshooting .solution-list li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-download-center-download-troubleshooting .solution-list strong {
  color: #FFD700;
}

.page-download-center-download-troubleshooting .why-fun88 {
  padding: 80px 0;
  background-color: #000000;
  text-align: center;
}

.page-download-center-download-troubleshooting .why-fun88-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-download-center-download-troubleshooting .why-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-download-troubleshooting .why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-download-center-download-troubleshooting .why-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-download-center-download-troubleshooting .why-card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-download-center-download-troubleshooting .why-card-text {
  color: #b0b0b0;
}

.page-download-center-download-troubleshooting .cta-bottom {
  margin-top: 50px;
}

.page-download-center-download-troubleshooting .cta-bottom p {
  color: #cccccc;
  font-size: 1.1em;
  margin-top: 20px;
}

.page-download-center-download-troubleshooting .faq-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-download-center-download-troubleshooting .faq-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-download-troubleshooting .faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-download-center-download-troubleshooting .faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-download-center-download-troubleshooting .faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-download-center-download-troubleshooting .faq-answer {
  color: #b0b0b0;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.page-download-center-download-troubleshooting .faq-answer.active {
  max-height: 300px; /* Adjust as needed for content length */
  opacity: 1;
  margin-top: 15px;
}

.page-download-center-download-troubleshooting .faq-answer a {
  color: #FFD700;
  text-decoration: none;
}

.page-download-center-download-troubleshooting .faq-answer a:hover {
  text-decoration: underline;
}

.page-download-center-download-troubleshooting .contact-support {
  padding: 80px 0;
  background-color: #000000;
  text-align: center;
}

.page-download-center-download-troubleshooting .contact-support .section-description {
  margin-bottom: 40px;
}

.page-download-center-download-troubleshooting .contact-note {
  color: #cccccc;
  font-size: 1em;
  margin-top: 30px;
}

.page-download-center-download-troubleshooting .contact-note a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-download-center-download-troubleshooting .contact-note a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-download-center-download-troubleshooting .hero-title {
    font-size: 2.8em;
  }

  .page-download-center-download-troubleshooting .section-title {
    font-size: 2em;
  }

  .page-download-center-download-troubleshooting .hero-image-wrapper {
    width: 300px;
    height: 300px;
    bottom: -30px;
    right: -30px;
  }
}

@media (max-width: 768px) {
  .page-download-center-download-troubleshooting .hero-section {
    padding: 80px 0 60px;
  }

  .page-download-center-download-troubleshooting .hero-title {
    font-size: 2.2em;
  }

  .page-download-center-download-troubleshooting .hero-description {
    font-size: 1em;
  }

  .page-download-center-download-troubleshooting .section-title {
    font-size: 1.8em;
  }

  .page-download-center-download-troubleshooting .section-description {
    font-size: 0.95em;
  }

  .page-download-center-download-troubleshooting .step-card, 
  .page-download-center-download-troubleshooting .why-card {
    padding: 25px;
  }

  .page-download-center-download-troubleshooting .card-title {
    font-size: 1.5em;
  }

  .page-download-center-download-troubleshooting .hero-image-wrapper {
    display: none; /* Hide on smaller screens */
  }

  .page-download-center-download-troubleshooting .why-fun88-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-download-center-download-troubleshooting .hero-title {
    font-size: 1.8em;
  }

  .page-download-center-download-troubleshooting .btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-download-center-download-troubleshooting .section-title {
    font-size: 1.5em;
  }

  .page-download-center-download-troubleshooting .card-title {
    font-size: 1.3em;
  }

  .page-download-center-download-troubleshooting .faq-question {
    font-size: 1.2em;
  }
}