/* style/jun88-latest-platform-upgrade.css */
.page-jun88-latest-platform-upgrade {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-jun88-latest-platform-upgrade__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-jun88-latest-platform-upgrade__hero {
  position: relative;
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Darker blue gradient */
  color: #fff;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-jun88-latest-platform-upgrade__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-jun88-latest-platform-upgrade__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-jun88-latest-platform-upgrade__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-jun88-latest-platform-upgrade__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-jun88-latest-platform-upgrade__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-jun88-latest-platform-upgrade__section:nth-of-type(even) {
  background-color: #f0f4f8;
}

.page-jun88-latest-platform-upgrade__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-jun88-latest-platform-upgrade__section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-jun88-latest-platform-upgrade__intro p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #555;
}

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

.page-jun88-latest-platform-upgrade__feature-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-jun88-latest-platform-upgrade__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-jun88-latest-platform-upgrade__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-jun88-latest-platform-upgrade__feature-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

.page-jun88-latest-platform-upgrade__feature-item p {
  color: #666;
  font-size: 1em;
}

.page-jun88-latest-platform-upgrade__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-jun88-latest-platform-upgrade__game-item {
  background-color: #e6f0ff; /* Lighter blue */
  padding: 25px;
  border-radius: 8px;
  border-left: 5px solid #003366;
  transition: background-color 0.3s ease;
}

.page-jun88-latest-platform-upgrade__game-item:hover {
  background-color: #d0e0f0;
}

.page-jun88-latest-platform-upgrade__game-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-jun88-latest-platform-upgrade__game-item p {
  color: #444;
}

.page-jun88-latest-platform-upgrade__more-games {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: #003366;
  font-weight: bold;
}

.page-jun88-latest-platform-upgrade__benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-jun88-latest-platform-upgrade__benefit-list li {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #FFD700;
  font-size: 1.1em;
  color: #444;
}

.page-jun88-latest-platform-upgrade__benefit-list li strong {
  color: #003366;
}

.page-jun88-latest-platform-upgrade__faq-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-jun88-latest-platform-upgrade__faq-question {
  font-size: 1.3em;
  color: #003366;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  background-color: #e6f0ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-jun88-latest-platform-upgrade__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-jun88-latest-platform-upgrade__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-jun88-latest-platform-upgrade__faq-answer {
  font-size: 1em;
  color: #555;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-jun88-latest-platform-upgrade__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding: 20px;
}

.page-jun88-latest-platform-upgrade__cta-section {
  background: linear-gradient(90deg, #003366, #001a33);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-jun88-latest-platform-upgrade__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-jun88-latest-platform-upgrade__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-jun88-latest-platform-upgrade__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-jun88-latest-platform-upgrade__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-jun88-latest-platform-upgrade__btn--primary {
  background-color: #FFD700;
  color: #003366;
  border: 2px solid #FFD700;
}

.page-jun88-latest-platform-upgrade__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-jun88-latest-platform-upgrade__btn--secondary {
  background-color: #DC143C;
  color: #fff;
  border: 2px solid #DC143C;
}

.page-jun88-latest-platform-upgrade__btn--secondary:hover {
  background-color: #b00f2f;
  border-color: #b00f2f;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-jun88-latest-platform-upgrade__hero-title {
    font-size: 2.8em;
  }
  .page-jun88-latest-platform-upgrade__hero-subtitle {
    font-size: 1.3em;
  }
  .page-jun88-latest-platform-upgrade__section-title {
    font-size: 2em;
  }
  .page-jun88-latest-platform-upgrade__feature-grid, .page-jun88-latest-platform-upgrade__game-grid, .page-jun88-latest-platform-upgrade__benefit-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-jun88-latest-platform-upgrade__hero {
    padding: 80px 0;
  }
  .page-jun88-latest-platform-upgrade__hero-title {
    font-size: 2.2em;
  }
  .page-jun88-latest-platform-upgrade__hero-subtitle {
    font-size: 1.1em;
  }
  .page-jun88-latest-platform-upgrade__section {
    padding: 40px 0;
  }
  .page-jun88-latest-platform-upgrade__section-title {
    font-size: 1.8em;
  }
  .page-jun88-latest-platform-upgrade__feature-grid, .page-jun88-latest-platform-upgrade__game-grid, .page-jun88-latest-platform-upgrade__benefit-list {
    grid-template-columns: 1fr;
  }
  .page-jun88-latest-platform-upgrade__cta-title {
    font-size: 2.2em;
  }
  .page-jun88-latest-platform-upgrade__cta-description {
    font-size: 1em;
  }
  .page-jun88-latest-platform-upgrade__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-jun88-latest-platform-upgrade__hero-title {
    font-size: 1.8em;
  }
  .page-jun88-latest-platform-upgrade__hero-subtitle {
    font-size: 0.9em;
  }
  .page-jun88-latest-platform-upgrade__section-title {
    font-size: 1.5em;
  }
  .page-jun88-latest-platform-upgrade__cta-title {
    font-size: 1.8em;
  }
  .page-jun88-latest-platform-upgrade__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-jun88-latest-platform-upgrade__btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-jun88-latest-platform-upgrade__faq-question {
    font-size: 1.1em;
  }
  .page-jun88-latest-platform-upgrade__intro p, .page-jun88-latest-platform-upgrade__feature-item p, .page-jun88-latest-platform-upgrade__game-item p, .page-jun88-latest-platform-upgrade__benefit-list li, .page-jun88-latest-platform-upgrade__faq-answer {
    font-size: 0.95em;
  }
}