/* style/resources-88go-app-download-guide.css */
.page-resources-88go-app-download-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background from shared.css */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-88go-app-download-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-88go-app-download-guide__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-88go-app-download-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-88go-app-download-guide__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-resources-88go-app-download-guide__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for light background */
}

.page-resources-88go-app-download-guide__btn-primary,
.page-resources-88go-app-download-guide__btn-secondary {
  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, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

.page-resources-88go-app-download-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-88go-app-download-guide__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-resources-88go-app-download-guide__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-88go-app-download-guide__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1e87c0;
  border-color: #1e87c0;
}

.page-resources-88go-app-download-guide__text-link {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
    display: block;
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
}

.page-resources-88go-app-download-guide__text-link:hover {
    text-decoration: underline;
}

/* Hero Section */
.page-resources-88go-app-download-guide__hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 20px;
  min-height: 600px;
  gap: 40px;
  position: relative;
  overflow: hidden;
  padding-top: calc(80px + var(--header-offset, 120px)); /* Adjust for header offset */
}

.page-resources-88go-app-download-guide__hero-content {
  flex: 1;
  max-width: 600px;
  text-align: left;
  z-index: 1;
}

.page-resources-88go-app-download-guide__hero-title {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-88go-app-download-guide__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-resources-88go-app-download-guide__hero-cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-88go-app-download-guide__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  max-width: 600px;
}

.page-resources-88go-app-download-guide__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

/* Intro Section */
.page-resources-88go-app-download-guide__intro-section {
  padding: 80px 0;
}

.page-resources-88go-app-download-guide__intro-section .page-resources-88go-app-download-guide__section-title,
.page-resources-88go-app-download-guide__intro-section .page-resources-88go-app-download-guide__text-block {
  color: #333333;
}

.page-resources-88go-app-download-guide__image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.page-resources-88go-app-download-guide__grid-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

/* Features Section */
.page-resources-88go-app-download-guide__features-section {
  padding: 80px 0;
  background-color: #0a0a0a; /* Dark background as per body */
}

.page-resources-88go-app-download-guide__features-section .page-resources-88go-app-download-guide__section-title {
  color: #26A9E0;
}

.page-resources-88go-app-download-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-88go-app-download-guide__feature-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark background */
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-resources-88go-app-download-guide__feature-icon {
  width: 100%;
  height: auto;
  max-width: 100%; /* Ensure large images are responsive */
  margin-bottom: 20px;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-88go-app-download-guide__feature-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-88go-app-download-guide__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-resources-88go-app-download-guide__cta-buttons--center {
    text-align: center;
    margin-top: 50px;
}

/* Download Guide Section */
.page-resources-88go-app-download-guide__download-guide-section {
  padding: 80px 0;
}

.page-resources-88go-app-download-guide__download-guide-section .page-resources-88go-app-download-guide__section-title,
.page-resources-88go-app-download-guide__download-guide-section .page-resources-88go-app-download-guide__text-block,
.page-resources-88go-app-download-guide__download-guide-section .page-resources-88go-app-download-guide__platform-title,
.page-resources-88go-app-download-guide__download-guide-section .page-resources-88go-app-download-guide__download-steps li,
.page-resources-88go-app-download-guide__download-guide-section .page-resources-88go-app-download-guide__download-steps li a {
  color: #333333;
}

.page-resources-88go-app-download-guide__download-platform {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}