/* style/blog-sc88-app-download-and-installation-guide.css */

:root {
  --sc88-primary-color: #11A84E;
  --sc88-secondary-color: #22C768;
  --sc88-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --sc88-card-bg: #11271B;
  --sc88-background: #08160F;
  --sc88-text-main: #F2FFF6;
  --sc88-text-secondary: #A7D9B8;
  --sc88-border-color: #2E7A4E;
  --sc88-glow-color: #57E38D;
  --sc88-gold-color: #F2C14E;
  --sc88-divider-color: #1E3A2A;
  --sc88-deep-green: #0A4B2C;
}

.page-blog-sc88-app-download-and-installation-guide {
  font-family: 'Arial', sans-serif;
  color: var(--sc88-text-main);
  background-color: var(--sc88-background);
  line-height: 1.6;
}

.page-blog-sc88-app-download-and-installation-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Minimal top padding, rely on body for header offset */
  overflow: hidden;
}

.page-blog-sc88-app-download-and-installation-guide__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-sc88-app-download-and-installation-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-sc88-app-download-and-installation-guide__hero-content {
  max-width: 900px;
  margin-top: 40px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-sc88-app-download-and-installation-guide__main-title {
  font-size: clamp(2em, 3.5vw, 3em);
  color: var(--sc88-text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-blog-sc88-app-download-and-installation-guide__hero-description {
  font-size: 1.1em;
  color: var(--sc88-text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-sc88-app-download-and-installation-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-sc88-app-download-and-installation-guide__btn-primary,
.page-blog-sc88-app-download-and-installation-guide__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-sc88-app-download-and-installation-guide__btn-primary {
  background: var(--sc88-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-sc88-app-download-and-installation-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-blog-sc88-app-download-and-installation-guide__btn-secondary {
  background-color: transparent;
  color: var(--sc88-secondary-color);
  border: 2px solid var(--sc88-secondary-color);
}

.page-blog-sc88-app-download-and-installation-guide__btn-secondary:hover {
  background-color: var(--sc88-secondary-color);
  color: var(--sc88-background);
  transform: translateY(-3px);
}

.page-blog-sc88-app-download-and-installation-guide__content-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--sc88-divider-color);
}

.page-blog-sc88-app-download-and-installation-guide__content-section:last-of-type {
  border-bottom: none;
}

.page-blog-sc88-app-download-and-installation-guide__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-sc88-app-download-and-installation-guide__section-title {
  font-size: 2.5em;
  color: var(--sc88-primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-blog-sc88-app-download-and-installation-guide__sub-title {
  font-size: 1.8em;
  color: var(--sc88-text-main);
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid var(--sc88-gold-color);
  padding-left: 15px;
}

.page-blog-sc88-app-download-and-installation-guide p {
  margin-bottom: 15px;
  color: var(--sc88-text-main);
  font-size: 1.05em;
}

.page-blog-sc88-app-download-and-installation-guide__ordered-list,
.page-blog-sc88-app-download-and-installation-guide__unordered-list {
  list-style-position: inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--sc88-text-main);
}

.page-blog-sc88-app-download-and-installation-guide__ordered-list li,
.page-blog-sc88-app-download-and-installation-guide__unordered-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog-sc88-app-download-and-installation-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-sc88-app-download-and-installation-guide__feature-card {
  background-color: var(--sc88-card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid var(--sc88-border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-sc88-app-download-and-installation-guide__feature-card:hover {
  transform: translateY(-10px);
}

.page-blog-sc88-app-download-and-installation-guide__feature-icon {
  width: 250px; /* Min size 200px */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-sc88-app-download-and-installation-guide__feature-title {
  font-size: 1.5em;
  color: var(--sc88-gold-color);
  margin-bottom: 15px;
}

.page-blog-sc88-app-download-and-installation-guide__cta-center {
  text-align: center;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-sc88-app-download-and-installation-guide__image-inline {
  width: 100%;
  max-width: 600px; /* Example max-width, adjust as needed */
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-sc88-app-download-and-installation-guide__note {
  font-style: italic;
  color: var(--sc88-text-secondary);
  margin-top: 20px;
  text-align: center;
}

.page-blog-sc88-app-download-and-installation-guide__faq-list {
  margin-top: 30px;
}

.page-blog-sc88-app-download-and-installation-guide__faq-item {
  background-color: var(--sc88-card-bg);
  border: 1px solid var(--sc88-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--sc88-text-main);
}

.page-blog-sc88-app-download-and-installation-guide__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--sc88-text-main);
  background-color: var(--sc88-deep-green);
}

.page-blog-sc88-app-download-and-installation-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-sc88-app-download-and-installation-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-sc88-app-download-and-installation-guide__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--sc88-gold-color);
}

.page-blog-sc88-app-download-and-installation-guide__faq-item[open] .page-blog-sc88-app-download-and-installation-guide__faq-toggle {
  content: '−';
}

.page-blog-sc88-app-download-and-installation-guide__faq-answer {
  padding: 20px;
  padding-top: 0;
  color: var(--sc88-text-secondary);
  font-size: 1em;
}

.page-blog-sc88-app-download-and-installation-guide__faq-answer p {
  margin-bottom: 10px;
  color: var(--sc88-text-secondary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-sc88-app-download-and-installation-guide__hero-content {
    margin-top: 30px;
  }
  .page-blog-sc88-app-download-and-installation-guide__main-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
  }
  .page-blog-sc88-app-download-and-installation-guide__section-title {
    font-size: 2em;
  }
  .page-blog-sc88-app-download-and-installation-guide__sub-title {
    font-size: 1.5em;
  }
  .page-blog-sc88-app-download-and-installation-guide__feature-icon {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .page-blog-sc88-app-download-and-installation-guide {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-sc88-app-download-and-installation-guide__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-blog-sc88-app-download-and-installation-guide__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }
  .page-blog-sc88-app-download-and-installation-guide__main-title {
    font-size: clamp(1.5em, 6vw, 2.2em);
  }
  .page-blog-sc88-app-download-and-installation-guide__hero-description {
    font-size: 1em;
  }
  .page-blog-sc88-app-download-and-installation-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-blog-sc88-app-download-and-installation-guide__btn-primary,
  .page-blog-sc88-app-download-and-installation-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-blog-sc88-app-download-and-installation-guide__content-section {
    padding: 40px 0;
  }
  .page-blog-sc88-app-download-and-installation-guide__container {
    padding: 0 15px;
  }
  .page-blog-sc88-app-download-and-installation-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-sc88-app-download-and-installation-guide__sub-title {
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-blog-sc88-app-download-and-installation-guide p,
  .page-blog-sc88-app-download-and-installation-guide__ordered-list li,
  .page-blog-sc88-app-download-and-installation-guide__unordered-list li {
    font-size: 0.95em;
  }
  .page-blog-sc88-app-download-and-installation-guide__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-sc88-app-download-and-installation-guide__feature-card {
    padding: 20px;
  }
  .page-blog-sc88-app-download-and-installation-guide__feature-icon {
    width: 200px !important;
    height: auto !important;
  }
  .page-blog-sc88-app-download-and-installation-guide__image-inline {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }
  .page-blog-sc88-app-download-and-installation-guide__faq-item summary {
    padding: 15px;
    font-size: 1em;
  }
  .page-blog-sc88-app-download-and-installation-guide__faq-answer {
    padding: 15px;
    padding-top: 0;
  }
}