/* style/blog-hr99-mobile-access.css */

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

.page-blog-hr99-mobile-access {
  background-color: var(--hr99-background);
  color: var(--hr99-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-hr99-mobile-access__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* body handles --header-offset, this is small top padding */
  box-sizing: border-box;
  overflow: hidden;
  background-color: var(--hr99-deep-green);
}

.page-blog-hr99-mobile-access__hero-image-container {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-blog-hr99-mobile-access__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-blog-hr99-mobile-access__hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 1;
  color: var(--hr99-text-main);
}

.page-blog-hr99-mobile-access__main-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem); /* Using clamp for responsive H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--hr99-glow-color);
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-hr99-mobile-access__intro-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--hr99-text-secondary);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-hr99-mobile-access__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.page-blog-hr99-mobile-access__btn-primary,
.page-blog-hr99-mobile-access__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  text-align: center;
}

.page-blog-hr99-mobile-access__btn-primary {
  background: var(--hr99-button-gradient);
  color: var(--hr99-text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

.page-blog-hr99-mobile-access__btn-secondary {
  background-color: transparent;
  color: var(--hr99-glow-color);
  border: 2px solid var(--hr99-glow-color);
}

.page-blog-hr99-mobile-access__btn-secondary:hover {
  background-color: var(--hr99-glow-color);
  color: var(--hr99-deep-green);
  transform: translateY(-3px);
}

.page-blog-hr99-mobile-access__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  color: var(--hr99-text-main);
  background-color: var(--hr99-background);
}

.page-blog-hr99-mobile-access__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--hr99-gold-color);
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-blog-hr99-mobile-access p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--hr99-text-main);
}

.page-blog-hr99-mobile-access__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

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

.page-blog-hr99-mobile-access__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-hr99-mobile-access__feature-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-blog-hr99-mobile-access__feature-title {
  font-size: 1.5rem;
  color: var(--hr99-glow-color);
  margin-bottom: 15px;
}

.page-blog-hr99-mobile-access__steps-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-hr99-mobile-access__step-item {
  background-color: var(--hr99-card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--hr99-border-color);
  color: var(--hr99-text-main);
}

.page-blog-hr99-mobile-access__step-title {
  font-size: 1.8rem;
  color: var(--hr99-gold-color);
  margin-bottom: 20px;
  text-align: center;
}

.page-blog-hr99-mobile-access__step-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin: 20px auto;
  display: block;
  border-radius: 8px;
}

.page-blog-hr99-mobile-access__btn-block {
  display: block;
  width: fit-content;
  margin: 20px auto 0;
}

.page-blog-hr99-mobile-access__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-hr99-mobile-access__game-list li {
  background-color: var(--hr99-card-bg);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--hr99-border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-hr99-mobile-access__game-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-hr99-mobile-access__game-icon {
  width: 100%;
  height: auto;
  max-width: 300px;
  margin-bottom: 15px;
  border-radius: 8px;
}

.page-blog-hr99-mobile-access__game-title {
  font-size: 1.4rem;
  color: var(--hr99-glow-color);
  margin-bottom: 10px;
}

.page-blog-hr99-mobile-access__promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-hr99-mobile-access__card {
  background-color: var(--hr99-card-bg);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--hr99-border-color);
  color: var(--hr99-text-main);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog-hr99-mobile-access__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-hr99-mobile-access__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-hr99-mobile-access__card-title {
  font-size: 1.6rem;
  color: var(--hr99-gold-color);
  margin-bottom: 15px;
}

.page-blog-hr99-mobile-access__card p {
  flex-grow: 1;
}

.page-blog-hr99-mobile-access__card .page-blog-hr99-mobile-access__btn-primary,
.page-blog-hr99-mobile-access__card .page-blog-hr99-mobile-access__btn-secondary {
  margin-top: 20px;
  width: 100%;
}

.page-blog-hr99-mobile-access__faq-list {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-hr99-mobile-access__faq-item {
  background-color: var(--hr99-card-bg);
  border: 1px solid var(--hr99-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--hr99-text-main);
}

.page-blog-hr99-mobile-access__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--hr99-glow-color);
  cursor: pointer;
  background-color: var(--hr99-deep-green);
  border-bottom: 1px solid var(--hr99-divider-color);
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-blog-hr99-mobile-access__faq-item[open] > .page-blog-hr99-mobile-access__faq-question {
  background-color: var(--hr99-primary-color);
}

.page-blog-hr99-mobile-access__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hr99-mobile-access__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

.page-blog-hr99-mobile-access__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--hr99-text-secondary);
}

.page-blog-hr99-mobile-access__cta-footer {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.page-blog-hr99-mobile-access__related-posts {
  background-color: var(--hr99-deep-green);
  padding: 60px 20px;
  text-align: center;
}

.page-blog-hr99-mobile-access__post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
}

.page-blog-hr99-mobile-access__post-card {
  background-color: var(--hr99-card-bg);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--hr99-border-color);
  color: var(--hr99-text-main);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-hr99-mobile-access__post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-hr99-mobile-access__post-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-blog-hr99-mobile-access__post-title {
  font-size: 1.3rem;
  color: var(--hr99-gold-color);
  margin-bottom: 10px;
  line-height: 1.4;
  flex-grow: 1;
}

.page-blog-hr99-mobile-access__post-title a {
  color: var(--hr99-gold-color);
  text-decoration: none;
}

.page-blog-hr99-mobile-access__post-title a:hover {
  text-decoration: underline;
}

.page-blog-hr99-mobile-access__post-meta {
  font-size: 0.9rem;
  color: var(--hr99-text-secondary);
  margin-bottom: 10px;
}

.page-blog-hr99-mobile-access__post-excerpt {
  font-size: 1rem;
  color: var(--hr99-text-main);
  margin-bottom: 15px;
}

.page-blog-hr99-mobile-access__read-more {
  color: var(--hr99-glow-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-top: auto; /* Push to bottom */
}

.page-blog-hr99-mobile-access__read-more:hover {
  text-decoration: underline;
}

.page-blog-hr99-mobile-access__view-all {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-hr99-mobile-access__main-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
  }
}

@media (max-width: 768px) {
  .page-blog-hr99-mobile-access {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-hr99-mobile-access__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-hr99-mobile-access__hero-content {
    padding: 0 15px;
  }

  .page-blog-hr99-mobile-access__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem); /* Adjust H1 for smaller screens */
  }

  .page-blog-hr99-mobile-access__intro-description {
    font-size: 1rem;
  }

  .page-blog-hr99-mobile-access__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-hr99-mobile-access__btn-primary,
  .page-blog-hr99-mobile-access__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-hr99-mobile-access__content-area,
  .page-blog-hr99-mobile-access__related-posts {
    padding: 30px 15px;
  }

  .page-blog-hr99-mobile-access__section-title {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 25px;
  }

  .page-blog-hr99-mobile-access p {
    font-size: 1rem;
  }

  .page-blog-hr99-mobile-access__feature-grid,
  .page-blog-hr99-mobile-access__game-list,
  .page-blog-hr99-mobile-access__promotion-cards,
  .page-blog-hr99-mobile-access__post-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-hr99-mobile-access__feature-card,
  .page-blog-hr99-mobile-access__step-item,
  .page-blog-hr99-mobile-access__game-list li,
  .page-blog-hr99-mobile-access__card,
  .page-blog-hr99-mobile-access__post-card,
  .page-blog-hr99-mobile-access__faq-item {
    padding: 20px;
  }

  .page-blog-hr99-mobile-access__feature-title,
  .page-blog-hr99-mobile-access__step-title,
  .page-blog-hr99-mobile-access__game-title,
  .page-blog-hr99-mobile-access__card-title,
  .page-blog-hr99-mobile-access__post-title {
    font-size: 1.3rem;
  }

  .page-blog-hr99-mobile-access__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-hr99-mobile-access__faq-answer {
    font-size: 0.95rem;
    padding: 15px 20px;
  }

  /* Image and Video Responsive Fixes */
  .page-blog-hr99-mobile-access img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-hr99-mobile-access video,
  .page-blog-hr99-mobile-access__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-hr99-mobile-access__section,
  .page-blog-hr99-mobile-access__card,
  .page-blog-hr99-mobile-access__container,
  .page-blog-hr99-mobile-access__video-section,
  .page-blog-hr99-mobile-access__video-container,
  .page-blog-hr99-mobile-access__video-wrapper,
  .page-blog-hr99-mobile-access__cta-buttons,
  .page-blog-hr99-mobile-access__button-group,
  .page-blog-hr99-mobile-access__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-hr99-mobile-access__hero-section {
    padding-top: 10px !important;
  }
}

/* Ensure contrast for text on various backgrounds */
.page-blog-hr99-mobile-access__dark-bg {
  background-color: var(--hr99-deep-green);
  color: var(--hr99-text-main);
}

.page-blog-hr99-mobile-access__light-bg {
  background-color: var(--hr99-card-bg);
  color: var(--hr99-text-main);
}

.page-blog-hr99-mobile-access__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-blog-hr99-mobile-access__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}