/* style/resources-okking-download-install-guide.css */
.page-resources-okking-download-install-guide {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-resources-okking-download-install-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-okking-download-install-guide__hero {
  background: linear-gradient(135deg, #003366, #004d99);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-okking-download-install-guide__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,blue,gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-resources-okking-download-install-guide__hero .page-resources-okking-download-install-guide__container {
  position: relative;
  z-index: 1;
}

.page-resources-okking-download-install-guide__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

.page-resources-okking-download-install-guide__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-resources-okking-download-install-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-okking-download-install-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-resources-okking-download-install-guide__btn.primary {
  background-color: #FFCC00;
  color: #003366;
  border-color: #FFCC00;
}

.page-resources-okking-download-install-guide__btn.primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-2px);
}

.page-resources-okking-download-install-guide__btn.secondary {
  background-color: transparent;
  color: #FFCC00;
  border-color: #FFCC00;
}

.page-resources-okking-download-install-guide__btn.secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

.page-resources-okking-download-install-guide__btn.large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-resources-okking-download-install-guide__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-resources-okking-download-install-guide__section:nth-of-type(even) {
  background-color: #f0f4f8;
}

.page-resources-okking-download-install-guide__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-okking-download-install-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-resources-okking-download-install-guide__intro p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555;
}

.page-resources-okking-download-install-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-resources-okking-download-install-guide__feature-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-resources-okking-download-install-guide__feature-item:hover {
  transform: translateY(-5px);
}

.page-resources-okking-download-install-guide__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 51, 102, 0.2)); /* Add shadow for icons */
}

.page-resources-okking-download-install-guide__feature-item h3 {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-resources-okking-download-install-guide__feature-item p {
  color: #666;
  font-size: 0.95em;
}

.page-resources-okking-download-install-guide__download-guide p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555;
}

.page-resources-okking-download-install-guide__step-by-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-resources-okking-download-install-guide__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-resources-okking-download-install-guide__step-item h3 {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.page-resources-okking-download-install-guide__step-item h3::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #FFCC00;
  border-radius: 1.5px;
}

.page-resources-okking-download-install-guide__step-item p {
  color: #555;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-okking-download-install-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.page-resources-okking-download-install-guide__cta-box {
  text-align: center;
  background-color: #003366;
  color: #ffffff;
  padding: 30px 20px;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-resources-okking-download-install-guide__cta-box p {
  font-size: 1.4em;
  margin-bottom: 25px;
  font-weight: bold;
  color: #FFCC00;
}

.page-resources-okking-download-install-guide__troubleshooting {
  background-color: #f0f4f8;
}

.page-resources-okking-download-install-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-okking-download-install-guide__faq-item {
  background-color: #ffffff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-resources-okking-download-install-guide__faq-question {
  font-size: 1.25em;
  color: #003366;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fdfdfd;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

.page-resources-okking-download-install-guide__faq-question:hover {
  background-color: #f5f5f5;
}

.page-resources-okking-download-install-guide__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

.page-resources-okking-download-install-guide__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-okking-download-install-guide__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-resources-okking-download-install-guide__faq-answer.active {
  max-height: 500px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-resources-okking-download-install-guide__faq-answer p {
  color: #555;
  font-size: 1em;
  margin: 0;
}

.page-resources-okking-download-install-guide__games {
  background-color: #ffffff;
}

.page-resources-okking-download-install-guide__games p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555;
}

.page-resources-okking-download-install-guide__game-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-resources-okking-download-install-guide__game-list li {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-okking-download-install-guide__game-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-okking-download-install-guide__game-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 51, 102, 0.2));
}

.page-resources-okking-download-install-guide__game-list h3 {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
}

.page-resources-okking-download-install-guide__game-list p {
  font-size: 0.95em;
  color: #666;
}

.page-resources-okking-download-install-guide__promotion {
  background-color: #f0f4f8;
}

.page-resources-okking-download-install-guide__promotion p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #555;
}

.page-resources-okking-download-install-guide__promotion strong {
  color: #FFCC00;
}

.page-resources-okking-download-install-guide__promo-steps {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 30px auto 40px auto;
  text-align: left;
}

.page-resources-okking-download-install-guide__promo-steps li {
  background-color: #ffffff;
  padding: 15px 25px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  font-size: 1em;
  color: #333;
  display: flex;
  align-items: center;
}

.page-resources-okking-download-install-guide__promo-steps li::before {
  content: '✓';
  color: #FFCC00;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-resources-okking-download-install-guide__promo-steps li a {
  color: #003366;
  text-decoration: underline;
}

.page-resources-okking-download-install-guide__promo-steps li a:hover {
  color: #FFCC00;
}

.page-resources-okking-download-install-guide__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  display: block;
}

.page-resources-okking-download-install-guide__why-okking {
  background-color: #ffffff;
}

.page-resources-okking-download-install-guide__why-okking p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555;
}

.page-resources-okking-download-install-guide__advantages-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-resources-okking-download-install-guide__advantages-list li {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-okking-download-install-guide__advantages-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-okking-download-install-guide__advantage-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 51, 102, 0.2));
}

.page-resources-okking-download-install-guide__advantages-list h3 {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
}

.page-resources-okking-download-install-guide__advantages-list p {
  font-size: 0.95em;
  color: #666;
}

.page-resources-okking-download-install-guide__conclusion {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
  border-radius: 8px;
  margin-bottom: 0;
}

.page-resources-okking-download-install-guide__conclusion .page-resources-okking-download-install-guide__section-title {
  color: #FFCC00;
}

.page-resources-okking-download-install-guide__conclusion .page-resources-okking-download-install-guide__section-title::after {
  background-color: #ffffff;
}

.page-resources-okking-download-install-guide__conclusion p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #e0e0e0;
}

.page-resources-okking-download-install-guide__conclusion .highlight {
  color: #FFCC00;
}

.page-resources-okking-download-install-guide__final-cta .page-resources-okking-download-install-guide__btn {
  background-color: #FFCC00;
  color: #003366;
  border-color: #FFCC00;
}

.page-resources-okking-download-install-guide__final-cta .page-resources-okking-download-install-guide__btn:hover {
  background-color: #e6b800;
  border-color: #e6b800;
}

.highlight {
  color: #003366; /* Default highlight for dark text on light background */
  font-weight: bold;
}

.page-resources-okking-download-install-guide__hero .highlight,
.page-resources-okking-download-install-guide__cta-box .highlight,
.page-resources-okking-download-install-guide__conclusion .highlight {
  color: #FFCC00; /* Highlight for light text on dark background */
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-okking-download-install-guide__title {
    font-size: 2.5em;
  }

  .page-resources-okking-download-install-guide__subtitle {
    font-size: 1.1em;
  }

  .page-resources-okking-download-install-guide__section-title {
    font-size: 2em;
  }

  .page-resources-okking-download-install-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-okking-download-install-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-okking-download-install-guide__features-grid,
  .page-resources-okking-download-install-guide__game-list,
  .page-resources-okking-download-install-guide__advantages-list {
    grid-template-columns: 1fr;
  }

  .page-resources-okking-download-install-guide__step-item h3 {
    font-size: 1.4em;
  }

  .page-resources-okking-download-install-guide__cta-box p {
    font-size: 1.2em;
  }

  .page-resources-okking-download-install-guide__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-resources-okking-download-install-guide__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-okking-download-install-guide__title {
    font-size: 2em;
  }

  .page-resources-okking-download-install-guide__subtitle {
    font-size: 0.95em;
  }

  .page-resources-okking-download-install-guide__section-title {
    font-size: 1.8em;
  }

  .page-resources-okking-download-install-guide__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-resources-okking-download-install-guide__hero {
    padding: 60px 0;
  }

  .page-resources-okking-download-install-guide__section {
    padding: 40px 0;
  }
}