/* style/blog-atm99new-mobile-app-download-guide.css */

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

.page-blog-atm99new-mobile-app-download-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* Default text color for the page */
  background-color: var(--bg-main); /* Main background color */
}

.page-blog-atm99new-mobile-app-download-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-atm99new-mobile-app-download-guide__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit hero image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-atm99new-mobile-app-download-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

.page-blog-atm99new-mobile-app-download-guide__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 20px;
  margin-top: -80px; /* Overlap slightly with image for design effect, but text is below image in DOM */
  position: relative; /* Ensure z-index works if needed */
  z-index: 2; /* Ensure content is above image if any overlap occurs (not visually overlapping text) */
  background-color: transparent; /* No background to avoid covering image */
}

.page-blog-atm99new-mobile-app-download-guide__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.page-blog-atm99new-mobile-app-download-guide__hero-description {
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-atm99new-mobile-app-download-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  box-sizing: border-box;
}

.page-blog-atm99new-mobile-app-download-guide__btn-primary,
.page-blog-atm99new-mobile-app-download-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 300px; /* Limit button width */
  width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-atm99new-mobile-app-download-guide__btn-primary {
  background: var(--gradient-button);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-atm99new-mobile-app-download-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-atm99new-mobile-app-download-guide__btn-secondary {
  background-color: transparent;
  color: var(--color-glow);
  border: 2px solid var(--color-glow);
  box-shadow: 0 4px 15px rgba(87, 227, 141, 0.2);
}

.page-blog-atm99new-mobile-app-download-guide__btn-secondary:hover {
  background-color: var(--color-glow);
  color: var(--bg-main);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(87, 227, 141, 0.4);
}

.page-blog-atm99new-mobile-app-download-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-blog-atm99new-mobile-app-download-guide__dark-bg {
  background-color: var(--bg-main);
  color: var(--text-main);
}

.page-blog-atm99new-mobile-app-download-guide__light-bg {
  background-color: var(--bg-card);
  color: var(--text-main);
}

.page-blog-atm99new-mobile-app-download-guide__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-blog-atm99new-mobile-app-download-guide__paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-secondary);
}

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

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

.page-blog-atm99new-mobile-app-download-guide__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.page-blog-atm99new-mobile-app-download-guide__feature-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-atm99new-mobile-app-download-guide__feature-title {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-atm99new-mobile-app-download-guide__feature-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.page-blog-atm99new-mobile-app-download-guide__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-blog-atm99new-mobile-app-download-guide__step-item {
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

.page-blog-atm99new-mobile-app-download-guide__step-title {
  font-size: 1.6rem;
  color: var(--color-glow);
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.page-blog-atm99new-mobile-app-download-guide__step-title::before {
  content: '✓';
  display: inline-block;
  margin-right: 15px;
  color: var(--color-gold);
  font-size: 1.8rem;
  font-weight: bold;
}

.page-blog-atm99new-mobile-app-download-guide__step-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.page-blog-atm99new-mobile-app-download-guide__step-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-top: 25px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-atm99new-mobile-app-download-guide__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-blog-atm99new-mobile-app-download-guide__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-blog-atm99new-mobile-app-download-guide__benefits-list li {
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.page-blog-atm99new-mobile-app-download-guide__benefit-title {
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-atm99new-mobile-app-download-guide__benefit-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.page-blog-atm99new-mobile-app-download-guide__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-atm99new-mobile-app-download-guide__troubleshoot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-atm99new-mobile-app-download-guide__troubleshoot-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.page-blog-atm99new-mobile-app-download-guide__troubleshoot-title {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-atm99new-mobile-app-download-guide__troubleshoot-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.page-blog-atm99new-mobile-app-download-guide__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-atm99new-mobile-app-download-guide__faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.page-blog-atm99new-mobile-app-download-guide__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-size: 1.25rem;
  font-weight: 600;
  border-bottom: 1px solid var(--color-divider);
}

.page-blog-atm99new-mobile-app-download-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-atm99new-mobile-app-download-guide__faq-question {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.page-blog-atm99new-mobile-app-download-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-atm99new-mobile-app-download-guide__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-glow);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-atm99new-mobile-app-download-guide__faq-item[open] .page-blog-atm99new-mobile-app-download-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-atm99new-mobile-app-download-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  background-color: var(--bg-card);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-atm99new-mobile-app-download-guide__hero-content {
    margin-top: -60px;
  }
  .page-blog-atm99new-mobile-app-download-guide__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-blog-atm99new-mobile-app-download-guide__section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
  }
}

@media (max-width: 768px) {
  .page-blog-atm99new-mobile-app-download-guide {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-blog-atm99new-mobile-app-download-guide__hero-section {
    padding: 10px 0 40px 0;
  }
  
  .page-blog-atm99new-mobile-app-download-guide__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-atm99new-mobile-app-download-guide__hero-content {
    margin-top: -40px;
    padding: 15px;
  }
  
  .page-blog-atm99new-mobile-app-download-guide__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  
  .page-blog-atm99new-mobile-app-download-guide__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .page-blog-atm99new-mobile-app-download-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-atm99new-mobile-app-download-guide__btn-primary,
  .page-blog-atm99new-mobile-app-download-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-atm99new-mobile-app-download-guide__content-area {
    padding: 40px 15px;
  }
  
  .page-blog-atm99new-mobile-app-download-guide__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }
  
  .page-blog-atm99new-mobile-app-download-guide__paragraph {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .page-blog-atm99new-mobile-app-download-guide__feature-grid,
  .page-blog-atm99new-mobile-app-download-guide__troubleshoot-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .page-blog-atm99new-mobile-app-download-guide__feature-card,
  .page-blog-atm99new-mobile-app-download-guide__troubleshoot-item,
  .page-blog-atm99new-mobile-app-download-guide__step-item,
  .page-blog-atm99new-mobile-app-download-guide__faq-item {
    padding: 20px;
  }

  .page-blog-atm99new-mobile-app-download-guide__feature-icon,
  .page-blog-atm99new-mobile-app-download-guide__step-image,
  .page-blog-atm99new-mobile-app-download-guide__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  
  .page-blog-atm99new-mobile-app-download-guide__step-title {
    font-size: 1.3rem;
  }
  
  .page-blog-atm99new-mobile-app-download-guide__step-title::before {
    font-size: 1.5rem;
  }
  
  .page-blog-atm99new-mobile-app-download-guide__benefits-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .page-blog-atm99new-mobile-app-download-guide__faq-item summary {
    font-size: 1.1rem;
    padding: 15px 20px;
  }
  
  .page-blog-atm99new-mobile-app-download-guide__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
}