/* style/blog-latest-gameplay-analysis-and-tips.css */

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

.page-blog-latest-gameplay-analysis-and-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--xocdia88-text-main); /* Default text color for light background */
  background-color: var(--xocdia88-background); /* Default background from custom scheme */
}

.page-blog-latest-gameplay-analysis-and-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-latest-gameplay-analysis-and-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small decorative padding, body handles header offset */
  background-color: var(--xocdia88-deep-green);
}

.page-blog-latest-gameplay-analysis-and-tips__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.page-blog-latest-gameplay-analysis-and-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-latest-gameplay-analysis-and-tips__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
  color: var(--xocdia88-text-main);
}

.page-blog-latest-gameplay-analysis-and-tips__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size */
  color: var(--xocdia88-gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-latest-gameplay-analysis-and-tips__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--xocdia88-text-secondary);
}

.page-blog-latest-gameplay-analysis-and-tips__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-latest-gameplay-analysis-and-tips__btn-primary,
.page-blog-latest-gameplay-analysis-and-tips__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word;
}

.page-blog-latest-gameplay-analysis-and-tips__btn-primary {
  background: var(--xocdia88-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-latest-gameplay-analysis-and-tips__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px var(--xocdia88-glow-color);
}

.page-blog-latest-gameplay-analysis-and-tips__btn-secondary {
  background: transparent;
  color: var(--xocdia88-gold-color);
  border: 2px solid var(--xocdia88-gold-color);
}

.page-blog-latest-gameplay-analysis-and-tips__btn-secondary:hover {
  background: var(--xocdia88-gold-color);
  color: var(--xocdia88-deep-green);
}

/* Sections General */
.page-blog-latest-gameplay-analysis-and-tips__introduction-section,
.page-blog-latest-gameplay-analysis-and-tips__tips-section,
.page-blog-latest-gameplay-analysis-and-tips__faq-section {
  padding: 60px 0;
  background-color: var(--xocdia88-background);
  color: var(--xocdia88-text-main);
}

.page-blog-latest-gameplay-analysis-and-tips__latest-gameplay-section,
.page-blog-latest-gameplay-analysis-and-tips__platform-security,
.page-blog-latest-gameplay-analysis-and-tips__cta-section {
  padding: 60px 0;
  background-color: var(--xocdia88-card-bg);
  color: var(--xocdia88-text-main);
}

.page-blog-latest-gameplay-analysis-and-tips__dark-section {
  background-color: var(--xocdia88-card-bg);
  color: var(--xocdia88-text-main);
}

.page-blog-latest-gameplay-analysis-and-tips__text-contrast-fix {
  color: var(--xocdia88-text-main) !important;
}

.page-blog-latest-gameplay-analysis-and-tips__section-title {
  font-size: 2.5em;
  color: var(--xocdia88-gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-latest-gameplay-analysis-and-tips__introduction-section p,
.page-blog-latest-gameplay-analysis-and-tips__latest-gameplay-section p,
.page-blog-latest-gameplay-analysis-and-tips__tips-section p,
.page-blog-latest-gameplay-analysis-and-tips__platform-security p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: var(--xocdia88-text-secondary);
}

.page-blog-latest-gameplay-analysis-and-tips__introduction-section a,
.page-blog-latest-gameplay-analysis-and-tips__latest-gameplay-section a,
.page-blog-latest-gameplay-analysis-and-tips__tips-section a,
.page-blog-latest-gameplay-analysis-and-tips__platform-security a,
.page-blog-latest-gameplay-analysis-and-tips__faq-section a {
  color: var(--xocdia88-gold-color);
  text-decoration: underline;
}

.page-blog-latest-gameplay-analysis-and-tips__introduction-section a:hover,
.page-blog-latest-gameplay-analysis-and-tips__latest-gameplay-section a:hover,
.page-blog-latest-gameplay-analysis-and-tips__tips-section a:hover,
.page-blog-latest-gameplay-analysis-and-tips__platform-security a:hover,
.page-blog-latest-gameplay-analysis-and-tips__faq-section a:hover {
  color: var(--xocdia88-glow-color);
}

/* Images */
.page-blog-latest-gameplay-analysis-and-tips__image-fullwidth {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-latest-gameplay-analysis-and-tips__image-content {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Feature Cards (Gameplay) */
.page-blog-latest-gameplay-analysis-and-tips__feature-card {
  background-color: var(--xocdia88-deep-green);
  border: 1px solid var(--xocdia88-border-color);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-gameplay-analysis-and-tips__feature-title {
  font-size: 1.8em;
  color: var(--xocdia88-gold-color);
  margin-bottom: 15px;
}

/* Tip Items */
.page-blog-latest-gameplay-analysis-and-tips__tip-item {
  background-color: var(--xocdia88-deep-green);
  border: 1px solid var(--xocdia88-border-color);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-latest-gameplay-analysis-and-tips__tip-title {
  font-size: 1.6em;
  color: var(--xocdia88-gold-color);
  margin-bottom: 10px;
}

/* FAQ Section */
.page-blog-latest-gameplay-analysis-and-tips__faq-list {
  margin-top: 30px;
}

.page-blog-latest-gameplay-analysis-and-tips__faq-item {
  background-color: var(--xocdia88-deep-green);
  border: 1px solid var(--xocdia88-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-latest-gameplay-analysis-and-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  color: var(--xocdia88-gold-color);
  font-weight: bold;
  background-color: var(--xocdia88-deep-green);
  position: relative;
  list-style: none; /* For details/summary */
}

.page-blog-latest-gameplay-analysis-and-tips__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome/Safari */
}

.page-blog-latest-gameplay-analysis-and-tips__faq-question:hover {
  background-color: var(--xocdia88-deep-green);
}

.page-blog-latest-gameplay-analysis-and-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-latest-gameplay-analysis-and-tips__faq-item[open] .page-blog-latest-gameplay-analysis-and-tips__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

.page-blog-latest-gameplay-analysis-and-tips__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: var(--xocdia88-text-secondary);
  border-top: 1px solid var(--xocdia88-divider-color);
}

.page-blog-latest-gameplay-analysis-and-tips__faq-answer p {
  margin-top: 15px;
  margin-bottom: 0;
}

/* CTA Section */
.page-blog-latest-gameplay-analysis-and-tips__cta-section {
  text-align: center;
  padding: 80px 20px;
}

.page-blog-latest-gameplay-analysis-and-tips__cta-section .page-blog-latest-gameplay-analysis-and-tips__section-title {
  color: var(--xocdia88-gold-color);
}

.page-blog-latest-gameplay-analysis-and-tips__cta-section p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: var(--xocdia88-text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-latest-gameplay-analysis-and-tips__container {
    padding: 0 15px;
  }

  .page-blog-latest-gameplay-analysis-and-tips__hero-content {
    padding: 30px 15px;
  }

  .page-blog-latest-gameplay-analysis-and-tips__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

  .page-blog-latest-gameplay-analysis-and-tips__description {
    font-size: 1em;
  }

  .page-blog-latest-gameplay-analysis-and-tips__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-latest-gameplay-analysis-and-tips__btn-primary,
  .page-blog-latest-gameplay-analysis-and-tips__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-latest-gameplay-analysis-and-tips__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-blog-latest-gameplay-analysis-and-tips__feature-title,
  .page-blog-latest-gameplay-analysis-and-tips__tip-title {
    font-size: 1.4em;
  }

  .page-blog-latest-gameplay-analysis-and-tips__introduction-section,
  .page-blog-latest-gameplay-analysis-and-tips__latest-gameplay-section,
  .page-blog-latest-gameplay-analysis-and-tips__tips-section,
  .page-blog-latest-gameplay-analysis-and-tips__platform-security,
  .page-blog-latest-gameplay-analysis-and-tips__faq-section,
  .page-blog-latest-gameplay-analysis-and-tips__cta-section {
    padding: 40px 0;
  }

  /* Mobile image responsiveness */
  .page-blog-latest-gameplay-analysis-and-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-latest-gameplay-analysis-and-tips__hero-image-wrapper,
  .page-blog-latest-gameplay-analysis-and-tips__container,
  .page-blog-latest-gameplay-analysis-and-tips__feature-card,
  .page-blog-latest-gameplay-analysis-and-tips__tip-item,
  .page-blog-latest-gameplay-analysis-and-tips__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent content overflow */
  }

  .page-blog-latest-gameplay-analysis-and-tips__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, this is for visual spacing */
  }
}

/* Ensure images maintain original color and no filters */
.page-blog-latest-gameplay-analysis-and-tips img {
  filter: none !important;
}