/* style/hi88-download-system-requirements.css */
.page-hi88-download-system-requirements {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text for dark background */
  background-color: #0A192F; /* Main dark background */
  line-height: 1.6;
}

.page-hi88-download-system-requirements__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-hi88-download-system-requirements__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1a2a44 100%); /* Darker gradient */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hi88-download-system-requirements__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hi88-download-system-requirements__hero-subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-hi88-download-system-requirements__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-hi88-download-system-requirements__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 15px rgba(0, 0, 0, 0.3);
}

.page-hi88-download-system-requirements__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark text for gold background */
}

.page-hi88-download-system-requirements__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-hi88-download-system-requirements__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-hi88-download-system-requirements__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-hi88-download-system-requirements__hero-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-hi88-download-system-requirements__section {
  padding: 60px 0;
  background-color: #0A192F;
}

.page-hi88-download-system-requirements__section:nth-of-type(even) {
  background-color: #1A2A44; /* Slightly lighter dark blue for alternating sections */
}

.page-hi88-download-system-requirements__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-hi88-download-system-requirements__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-hi88-download-system-requirements__section p {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-hi88-download-system-requirements__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-hi88-download-system-requirements__list li {
  background-color: rgba(255, 215, 0, 0.1);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  font-size: 1.1em;
  color: #F8F8F8;
  border-left: 5px solid #FFD700;
}

.page-hi88-download-system-requirements__list li strong {
  color: #FFD700;
  margin-right: 8px;
  flex-shrink: 0;
}

.page-hi88-download-system-requirements__requirement-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-hi88-download-system-requirements__card {
  background-color: #1A2A44;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hi88-download-system-requirements__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-hi88-download-system-requirements__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-hi88-download-system-requirements__card-description {
  font-size: 1em;
  color: #D0D0D0;
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.page-hi88-download-system-requirements__card .page-hi88-download-system-requirements__list {
  text-align: left;
  width: 100%;
}

.page-hi88-download-system-requirements__card .page-hi88-download-system-requirements__list li {
  background-color: transparent;
  border-left: none;
  padding: 5px 0;
  margin-bottom: 5px;
}

.page-hi88-download-system-requirements__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-hi88-download-system-requirements__grid--two-col {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.page-hi88-download-system-requirements__grid-item, .page-hi88-download-system-requirements__tip-item {
  background-color: #1A2A44;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-hi88-download-system-requirements__grid-title, .page-hi88-download-system-requirements__tip-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-hi88-download-system-requirements__grid-item p, .page-hi88-download-system-requirements__tip-item p {
  font-size: 1em;
  color: #D0D0D0;
  text-align: left;
}

.page-hi88-download-system-requirements__compatibility-note {
  text-align: center;
  font-style: italic;
  margin-top: 40px;
  color: #B0B0B0;
}

.page-hi88-download-system-requirements__tip-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 50px auto 0;
  display: block;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-hi88-download-system-requirements__accordion {
  margin-top: 40px;
}

.page-hi88-download-system-requirements__accordion-item {
  background-color: #1A2A44;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-hi88-download-system-requirements__accordion-header {
  background-color: #0F203C; /* Slightly darker than card background */
  color: #FFD700;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-hi88-download-system-requirements__accordion-header:hover {
  background-color: #1a2a44;
}

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

.page-hi88-download-system-requirements__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-hi88-download-system-requirements__accordion-content {
  padding: 0 25px;
  background-color: #1A2A44;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-hi88-download-system-requirements__accordion-content p {
  color: #D0D0D0;
  padding-bottom: 20px;
  font-size: 1em;
}

.page-hi88-download-system-requirements__support-text {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: #F8F8F8;
}

.page-hi88-download-system-requirements__cta {
  background: linear-gradient(135deg, #0A192F 0%, #000000 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hi88-download-system-requirements__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hi88-download-system-requirements__cta-subtitle {
  font-size: 1.2em;
  color: #E0E0E0;
  max-width: 700px;
  margin: 0 auto 40px;
}

.page-hi88-download-system-requirements__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-hi88-download-system-requirements__cta-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-hi88-download-system-requirements .highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-hi88-download-system-requirements__hero-title {
    font-size: 2.5em;
  }
  .page-hi88-download-system-requirements__section-title {
    font-size: 2em;
  }
  .page-hi88-download-system-requirements__cta-title {
    font-size: 2.2em;
  }
  .page-hi88-download-system-requirements__requirement-cards,
  .page-hi88-download-system-requirements__grid,
  .page-hi88-download-system-requirements__grid--two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hi88-download-system-requirements__hero,
  .page-hi88-download-system-requirements__section,
  .page-hi88-download-system-requirements__cta {
    padding: 50px 0;
  }
  .page-hi88-download-system-requirements__hero-title {
    font-size: 2em;
  }
  .page-hi88-download-system-requirements__hero-subtitle {
    font-size: 1.1em;
  }
  .page-hi88-download-system-requirements__hero-actions,
  .page-hi88-download-system-requirements__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-hi88-download-system-requirements__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-hi88-download-system-requirements__section-title {
    font-size: 1.8em;
  }
  .page-hi88-download-system-requirements__cta-title {
    font-size: 1.8em;
  }
  .page-hi88-download-system-requirements__accordion-header {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-hi88-download-system-requirements__hero-title {
    font-size: 1.6em;
  }
  .page-hi88-download-system-requirements__section-title {
    font-size: 1.5em;
  }
  .page-hi88-download-system-requirements__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-hi88-download-system-requirements__list li {
    font-size: 0.95em;
    padding: 12px 15px;
  }
  .page-hi88-download-system-requirements__card-title {
    font-size: 1.5em;
  }
  .page-hi88-download-system-requirements__grid-title,
  .page-hi88-download-system-requirements__tip-title {
    font-size: 1.3em;
  }
}