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

/* Base styles for the page content, ensuring contrast with body background */
.page-blog-cs2-apk-latest-features-analysis {
  font-family: Arial, sans-serif;
  color: var(--text-main); /* Ensure text is visible on dark body background */
  background-color: var(--background); /* Match the specified background */
  line-height: 1.6;
}

.page-blog-cs2-apk-latest-features-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-blog-cs2-apk-latest-features-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: var(--background);
}

.page-blog-cs2-apk-latest-features-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 30px;
}

.page-blog-cs2-apk-latest-features-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-cs2-apk-latest-features-analysis__hero-content {
  max-width: 800px;
  margin-top: 20px;
}

.page-blog-cs2-apk-latest-features-analysis__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-cs2-apk-latest-features-analysis__lead-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-cs2-apk-latest-features-analysis__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-blog-cs2-apk-latest-features-analysis__btn-primary,
.page-blog-cs2-apk-latest-features-analysis__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 100%; /* Ensure button doesn't overflow */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-cs2-apk-latest-features-analysis__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main); /* White text on dark button */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-cs2-apk-latest-features-analysis__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-cs2-apk-latest-features-analysis__btn-secondary {
  background: var(--deep-green);
  color: var(--text-main); /* White text on dark green button */
  border: 2px solid var(--border-color);
}

.page-blog-cs2-apk-latest-features-analysis__btn-secondary:hover {
  background: var(--border-color);
  color: var(--text-main);
}

/* General Section Styling */
.page-blog-cs2-apk-latest-features-analysis__section {
  padding: 80px 0;
  background-color: var(--background);
}

.page-blog-cs2-apk-latest-features-analysis__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-cs2-apk-latest-features-analysis__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.page-blog-cs2-apk-latest-features-analysis__paragraph {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-cs2-apk-latest-features-analysis__paragraph a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-blog-cs2-apk-latest-features-analysis__paragraph a:hover {
  color: var(--secondary-color);
}

/* Features Section */
.page-blog-cs2-apk-latest-features-analysis__features-section {
  background-color: var(--deep-green);
}

.page-blog-cs2-apk-latest-features-analysis__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-cs2-apk-latest-features-analysis__feature-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-blog-cs2-apk-latest-features-analysis__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-cs2-apk-latest-features-analysis__feature-icon {
  width: 100%; /* Ensure image fills card width */
  max-width: 400px; /* Max width for feature icon */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-cs2-apk-latest-features-analysis__feature-title {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-cs2-apk-latest-features-analysis__feature-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Benefits Section */
.page-blog-cs2-apk-latest-features-analysis__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-cs2-apk-latest-features-analysis__benefit-item {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-blog-cs2-apk-latest-features-analysis__benefit-title {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-cs2-apk-latest-features-analysis__benefit-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Download Guide Section */
.page-blog-cs2-apk-latest-features-analysis__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-blog-cs2-apk-latest-features-analysis__step-item {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-cs2-apk-latest-features-analysis__step-title {
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 10px;
}

.page-blog-cs2-apk-latest-features-analysis__step-description {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* FAQ Section */
.page-blog-cs2-apk-latest-features-analysis__faq-list {
  margin-top: 40px;
}

.page-blog-cs2-apk-latest-features-analysis__faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-cs2-apk-latest-features-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  background: var(--deep-green);
  border-bottom: 1px solid var(--divider-color);
  list-style: none; /* For details/summary */
}

.page-blog-cs2-apk-latest-features-analysis__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-cs2-apk-latest-features-analysis__faq-qtext {
  flex-grow: 1;
}

.page-blog-cs2-apk-latest-features-analysis__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-cs2-apk-latest-features-analysis__faq-item[open] .page-blog-cs2-apk-latest-features-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-cs2-apk-latest-features-analysis__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary);
  background: var(--card-bg);
}

/* CTA Section */
.page-blog-cs2-apk-latest-features-analysis__cta-section {
  text-align: center;
  padding: 100px 0;
  background-color: var(--deep-green);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-cs2-apk-latest-features-analysis__section {
    padding: 60px 0;
  }

  .page-blog-cs2-apk-latest-features-analysis__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-blog-cs2-apk-latest-features-analysis__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-blog-cs2-apk-latest-features-analysis {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-blog-cs2-apk-latest-features-analysis__container,
  .page-blog-cs2-apk-latest-features-analysis__overview-section,
  .page-blog-cs2-apk-latest-features-analysis__features-section,
  .page-blog-cs2-apk-latest-features-analysis__benefits-section,
  .page-blog-cs2-apk-latest-features-analysis__download-guide-section,
  .page-blog-cs2-apk-latest-features-analysis__faq-section,
  .page-blog-cs2-apk-latest-features-analysis__cta-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-cs2-apk-latest-features-analysis__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important; /* body handles header offset, small decorative top padding */
  }

  .page-blog-cs2-apk-latest-features-analysis__hero-content {
    padding: 0 15px;
  }

  .page-blog-cs2-apk-latest-features-analysis__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-cs2-apk-latest-features-analysis__lead-text {
    font-size: 1rem;
  }

  .page-blog-cs2-apk-latest-features-analysis__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-cs2-apk-latest-features-analysis__btn-primary,
  .page-blog-cs2-apk-latest-features-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .page-blog-cs2-apk-latest-features-analysis__section {
    padding: 40px 0;
  }

  .page-blog-cs2-apk-latest-features-analysis__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-blog-cs2-apk-latest-features-analysis__feature-grid,
  .page-blog-cs2-apk-latest-features-analysis__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-cs2-apk-latest-features-analysis__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-cs2-apk-latest-features-analysis__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Ensure all images inside content area are responsive */
  .page-blog-cs2-apk-latest-features-analysis img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-cs2-apk-latest-features-analysis__card {
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
}

/* No CSS filter for images */
.page-blog-cs2-apk-latest-features-analysis img {
  filter: none; /* Ensure no filter is applied */
}