/* style/resources-arena-plus-apk-features-review.css */

/* Base styles for the page content */
.page-resources-arena-plus-apk-features-review {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #FFFFFF; /* Auxiliary color as background */
  color: #333333; /* Dark text for light background, ensuring WCAG AA contrast */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll on wider elements */
}

/* Hero Section */
.page-resources-arena-plus-apk-features-review__hero-section {
  position: relative;
  text-align: center;
  color: #FFFFFF; /* Light text for hero content over potentially dark image */
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
}

.page-resources-arena-plus-apk-features-review__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure image covers the hero section */
  z-index: 0;
}

.page-resources-arena-plus-apk-features-review__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  padding: 30px;
  border-radius: 8px;
}

.page-resources-arena-plus-apk-features-review__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-arena-plus-apk-features-review__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

/* CTA Button */
.page-resources-arena-plus-apk-features-review__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color for CTA */
  color: #000000; /* Main color for text on button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-arena-plus-apk-features-review__cta-button:hover {
  background-color: #e0a53b; /* Slightly darker yellow on hover */
  color: #FFFFFF;
}

.page-resources-arena-plus-apk-features-review__cta-button--inline {
  margin-top: 20px;
}

/* Content Area */
.page-resources-arena-plus-apk-features-review__content-area {
  max-width: 800px; /* Content width for readability */
  margin: 40px auto;
  padding: 0 20px;
}

.page-resources-arena-plus-apk-features-review__article-container {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-resources-arena-plus-apk-features-review__section-title {
  font-size: 2.2em;
  color: #000000; /* Main color for titles */
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 15px;
}

.page-resources-arena-plus-apk-features-review__intro-paragraph,
.page-resources-arena-plus-apk-features-review__outro-paragraph {
  font-size: 1.1em;
  margin-bottom: 25px;
  text-align: justify;
}

.page-resources-arena-plus-apk-features-review__sub-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FCBC45;
  padding-left: 15px;
}

.page-resources-arena-plus-apk-features-review__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-resources-arena-plus-apk-features-review__feature-list li {
  background-color: #F8F8F8;
  border-left: 3px solid #FCBC45;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  line-height: 1.5;
}

.page-resources-arena-plus-apk-features-review__feature-list li strong {
  color: #000000;
  font-size: 1.1em;
}

.page-resources-arena-plus-apk-features-review__article-image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

/* Related Resources */
.page-resources-arena-plus-apk-features-review__related-resources {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px dashed #E0E0E0;
}

.page-resources-arena-plus-apk-features-review__resource-list {
  list-style: none;
  padding: 0;
}

.page-resources-arena-plus-apk-features-review__resource-list li {
  margin-bottom: 10px;
}

.page-resources-arena-plus-apk-features-review__resource-list li a {
  color: #000000; /* Main color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-arena-plus-apk-features-review__resource-list li a:hover {
  color: #FCBC45; /* Yellow on hover */
  text-decoration: underline;
}

/* Back Link */
.page-resources-arena-plus-apk-features-review__back-link {
  margin-top: 40px;
  text-align: center;
}

.page-resources-arena-plus-apk-features-review__back-link a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  border: 1px solid #000000;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-arena-plus-apk-features-review__back-link a:hover {
  background-color: #000000;
  color: #FFFFFF;
}


/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-arena-plus-apk-features-review__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }

  .page-resources-arena-plus-apk-features-review__hero-title {
    font-size: 2em;
  }

  .page-resources-arena-plus-apk-features-review__hero-description {
    font-size: 1em;
  }

  .page-resources-arena-plus-apk-features-review__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-arena-plus-apk-features-review__content-area {
    margin: 20px auto;
    padding: 0 15px;
  }

  .page-resources-arena-plus-apk-features-review__article-container {
    padding: 20px;
  }

  .page-resources-arena-plus-apk-features-review__section-title {
    font-size: 1.8em;
  }

  .page-resources-arena-plus-apk-features-review__sub-title {
    font-size: 1.5em;
  }

  .page-resources-arena-plus-apk-features-review__intro-paragraph,
  .page-resources-arena-plus-apk-features-review__outro-paragraph {
    font-size: 1em;
  }

  /* CRITICAL: Mobile content image overflow prevention */
  .page-resources-arena-plus-apk-features-review img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size is maintained */
    min-height: 200px; /* Ensure minimum size is maintained */
  }
  .page-resources-arena-plus-apk-features-review__article-image {
    width: 100%; /* Ensure images don't exceed container width */
  }
}

@media (max-width: 480px) {
  .page-resources-arena-plus-apk-features-review__hero-title {
    font-size: 1.6em;
  }

  .page-resources-arena-plus-apk-features-review__hero-description {
    font-size: 0.9em;
  }

  .page-resources-arena-plus-apk-features-review__section-title {
    font-size: 1.5em;
  }

  .page-resources-arena-plus-apk-features-review__sub-title {
    font-size: 1.3em;
  }
}