/* style/resources-go99-game-app-download-guide.css */
.page-resources-go99-game-app-download-guide {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-resources-go99-game-app-download-guide .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-go99-game-app-download-guide .section-title {
  font-size: 2.5em;
  color: #0A6847;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-resources-go99-game-app-download-guide .hero-section {
  background: linear-gradient(135deg, #0A6847 0%, #0A6847 60%, #FFD700 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-resources-go99-game-app-download-guide .hero-section h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
}

.page-resources-go99-game-app-download-guide .hero-section p {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-resources-go99-game-app-download-guide .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-go99-game-app-download-guide .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;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-go99-game-app-download-guide .btn-primary {
  background-color: #FFD700;
  color: #0A6847;
  border: 2px solid #FFD700;
}

.page-resources-go99-game-app-download-guide .btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-resources-go99-game-app-download-guide .btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-go99-game-app-download-guide .btn-secondary:hover {
  background-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-3px);
}

.page-resources-go99-game-app-download-guide .btn-download {
  background-color: #0A6847;
  color: #FFD700;
  border: 2px solid #0A6847;
}

.page-resources-go99-game-app-download-guide .btn-download:hover {
  background-color: #074a32;
  transform: translateY(-3px);
}

.page-resources-go99-game-app-download-guide .introduction-section,
.page-resources-go99-game-app-download-guide .download-section,
.page-resources-go99-game-app-download-guide .features-section,
.page-resources-go99-game-app-download-guide .safety-section,
.page-resources-go99-game-app-download-guide .faq-section,
.page-resources-go99-game-app-download-guide .call-to-action-section {
  padding: 60px 0;
}

.page-resources-go99-game-app-download-guide .introduction-section {
  background-color: #f9f9f9;
}

.page-resources-go99-game-app-download-guide .introduction-section p {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
}

.page-resources-go99-game-app-download-guide .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-resources-go99-game-app-download-guide .benefit-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-resources-go99-game-app-download-guide .benefit-item:hover {
  transform: translateY(-5px);
}

.page-resources-go99-game-app-download-guide .benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.page-resources-go99-game-app-download-guide .benefit-item h3 {
  color: #0A6847;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-resources-go99-game-app-download-guide .download-section {
  background-color: #fff;
}

.page-resources-go99-game-app-download-guide .platform-android {
  background-color: #e8f5e9; /* Lighter green tint */
}

.page-resources-go99-game-app-download-guide .platform-ios {
  background-color: #f0f4f8; /* Light blue-gray tint */
}

.page-resources-go99-game-app-download-guide .download-steps {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.page-resources-go99-game-app-download-guide .step-item {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-resources-go99-game-app-download-guide .step-item.reverse {
  flex-direction: row-reverse;
}

.page-resources-go99-game-app-download-guide .step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FFD700;
  background-color: #0A6847;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-go99-game-app-download-guide .step-content h3 {
  color: #0A6847;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-resources-go99-game-app-download-guide .step-content p {
  font-size: 1.05em;
  margin-bottom: 15px;
}

.page-resources-go99-game-app-download-guide .step-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #555;
}

.page-resources-go99-game-app-download-guide .step-image {
  max-width: 40%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.page-resources-go99-game-app-download-guide .features-section {
  background-color: #f9f9f9;
}

.page-resources-go99-game-app-download-guide .feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-go99-game-app-download-guide .feature-list li {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.1em;
  color: #555;
}

.page-resources-go99-game-app-download-guide .feature-list li strong {
  color: #0A6847;
}

.page-resources-go99-game-app-download-guide .feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.1));
}

.page-resources-go99-game-app-download-guide .safety-section {
  background-color: #e8f5e9;
}

.page-resources-go99-game-app-download-guide .safety-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-resources-go99-game-app-download-guide .safety-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-go99-game-app-download-guide .safety-item h3 {
  color: #0A6847;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-resources-go99-game-app-download-guide .safety-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.page-resources-go99-game-app-download-guide .faq-section {
  background-color: #fff;
}

.page-resources-go99-game-app-download-guide .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-go99-game-app-download-guide .faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-go99-game-app-download-guide .faq-item h3 {
  color: #0A6847;
  font-size: 1.3em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-resources-go99-game-app-download-guide .faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-resources-go99-game-app-download-guide .faq-item.active h3::after {
  transform: rotate(45deg);
}

.page-resources-go99-game-app-download-guide .faq-item p {
  font-size: 1em;
  color: #555;
  display: none; /* Hidden by default, shown by JS */
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-resources-go99-game-app-download-guide .faq-item.active p {
  display: block;
}

.page-resources-go99-game-app-download-guide .call-to-action-section {
  background: linear-gradient(135deg, #0A6847, #074a32);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-resources-go99-game-app-download-guide .call-to-action-section h2 {
  color: #FFD700;
  font-size: 2.8em;
  margin-bottom: 20px;
}

.page-resources-go99-game-app-download-guide .call-to-action-section p {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px;
}

.page-resources-go99-game-app-download-guide .cta-image {
  max-width: 400px;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-go99-game-app-download-guide .hero-section h1 {
    font-size: 2.8em;
  }
  .page-resources-go99-game-app-download-guide .section-title {
    font-size: 2em;
  }
  .page-resources-go99-game-app-download-guide .step-item {
    flex-direction: column;
    text-align: center;
  }
  .page-resources-go99-game-app-download-guide .step-item.reverse {
    flex-direction: column;
  }
  .page-resources-go99-game-app-download-guide .step-image {
    max-width: 70%;
    margin-top: 20px;
  }
  .page-resources-go99-game-app-download-guide .step-content {
    text-align: center;
  }
  .page-resources-go99-game-app-download-guide .step-content ul {
    text-align: left;
    margin: 0 auto 15px;
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .page-resources-go99-game-app-download-guide .hero-section {
    padding: 80px 0;
  }
  .page-resources-go99-game-app-download-guide .hero-section h1 {
    font-size: 2.2em;
  }
  .page-resources-go99-game-app-download-guide .hero-section p {
    font-size: 1.1em;
  }
  .page-resources-go99-game-app-download-guide .btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-go99-game-app-download-guide .section-title {
    font-size: 1.8em;
  }
  .page-resources-go99-game-app-download-guide .benefits-grid,
  .page-resources-go99-game-app-download-guide .feature-list,
  .page-resources-go99-game-app-download-guide .safety-points {
    grid-template-columns: 1fr;
  }
  .page-resources-go99-game-app-download-guide .step-image {
    max-width: 90%;
  }
  .page-resources-go99-game-app-download-guide .call-to-action-section h2 {
    font-size: 2.2em;
  }
  .page-resources-go99-game-app-download-guide .call-to-action-section p {
    font-size: 1em;
  }
}