/* style/blog-deep-dive-711d-game-strategies.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color-page: #08160F; /* Specific for this page's main content background */
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-blog-deep-dive-711d-game-strategies {
  background-color: var(--background-color-page);
  color: var(--text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-deep-dive-711d-game-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-deep-dive-711d-game-strategies__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: var(--deep-green-color);
}

.page-blog-deep-dive-711d-game-strategies__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Adjust as needed */
  filter: brightness(0.7); /* Slightly darken for text readability */
}

.page-blog-deep-dive-711d-game-strategies__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -150px; /* Adjust to overlap image slightly for visual effect */
  position: relative; /* Ensure it's above other elements if any */
  z-index: 1; /* Ensure text is above image for visual layering, but not overlapping the main image content visually */
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text readability */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-deep-dive-711d-game-strategies__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size */
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 1px;
}

.page-blog-deep-dive-711d-game-strategies__description {
  font-size: 1.1em;
  color: var(--text-main);
  margin-bottom: 30px;
}

.page-blog-deep-dive-711d-game-strategies__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-deep-dive-711d-game-strategies__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-deep-dive-711d-game-strategies__section-title {
  font-size: 2.5em;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-blog-deep-dive-711d-game-strategies__introduction-section,
.page-blog-deep-dive-711d-game-strategies__general-strategies-section,
.page-blog-deep-dive-711d-game-strategies__safety-support-section {
  padding: 80px 0;
  background-color: var(--background-color-page);
  color: var(--text-main);
}

.page-blog-deep-dive-711d-game-strategies__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-main);
  text-align: justify;
}

.page-blog-deep-dive-711d-game-strategies__game-analysis-section,
.page-blog-deep-dive-711d-game-strategies__registration-section,
.page-blog-deep-dive-711d-game-strategies__faq-section {
  padding: 80px 0;
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-blog-deep-dive-711d-game-strategies__dark-section {
  background-color: var(--background-color-page);
  color: var(--text-main);
}

.page-blog-deep-dive-711d-game-strategies__light-bg {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-blog-deep-dive-711d-game-strategies__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-blog-deep-dive-711d-game-strategies__game-category {
  margin-bottom: 60px;
  padding: 30px;
  background-color: var(--background-color-page);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-blog-deep-dive-711d-game-strategies__category-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 25px;
  border-bottom: 2px solid var(--divider-color);
  padding-bottom: 10px;
}

.page-blog-deep-dive-711d-game-strategies__game-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-blog-deep-dive-711d-game-strategies__strategy-list,
.page-blog-deep-dive-711d-game-strategies__step-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-blog-deep-dive-711d-game-strategies__list-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.05em;
  color: var(--text-main);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-blog-deep-dive-711d-game-strategies__list-item strong {
  color: var(--gold-color);
}

.page-blog-deep-dive-711d-game-strategies__btn-secondary {
  background: none;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.page-blog-deep-dive-711d-game-strategies__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
}

.page-blog-deep-dive-711d-game-strategies__faq-item {
  background-color: var(--background-color-page);
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-blog-deep-dive-711d-game-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--gold-color);
  background-color: var(--deep-green-color);
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-blog-deep-dive-711d-game-strategies__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-deep-dive-711d-game-strategies__faq-question::marker {
  display: none;
}

.page-blog-deep-dive-711d-game-strategies__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--gold-color);
}

.page-blog-deep-dive-711d-game-strategies__faq-item[open] .page-blog-deep-dive-711d-game-strategies__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-deep-dive-711d-game-strategies__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: var(--text-secondary);
  text-align: justify;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-deep-dive-711d-game-strategies__container {
    padding: 0 15px;
  }

  .page-blog-deep-dive-711d-game-strategies__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-deep-dive-711d-game-strategies__hero-content {
    margin-top: -80px; /* Adjust for mobile */
    padding: 20px;
  }

  .page-blog-deep-dive-711d-game-strategies__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-blog-deep-dive-711d-game-strategies__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-deep-dive-711d-game-strategies__btn-primary,
  .page-blog-deep-dive-711d-game-strategies__btn-secondary {
    padding: 12px 25px;
    font-size: 0.95em;
  }

  .page-blog-deep-dive-711d-game-strategies__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-blog-deep-dive-711d-game-strategies__introduction-section,
  .page-blog-deep-dive-711d-game-strategies__game-analysis-section,
  .page-blog-deep-dive-711d-game-strategies__general-strategies-section,
  .page-blog-deep-dive-711d-game-strategies__registration-section,
  .page-blog-deep-dive-711d-game-strategies__safety-support-section,
  .page-blog-deep-dive-711d-game-strategies__faq-section {
    padding: 40px 0;
  }

  .page-blog-deep-dive-711d-game-strategies__text-block {
    font-size: 1em;
  }

  .page-blog-deep-dive-711d-game-strategies__category-title {
    font-size: 1.5em;
    margin-bottom: 20px;
  }

  /* Mobile specific image/video/button rules */
  .page-blog-deep-dive-711d-game-strategies img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-deep-dive-711d-game-strategies__section,
  .page-blog-deep-dive-711d-game-strategies__card,
  .page-blog-deep-dive-711d-game-strategies__container,
  .page-blog-deep-dive-711d-game-strategies__game-category,
  .page-blog-deep-dive-711d-game-strategies__hero-section,
  .page-blog-deep-dive-711d-game-strategies__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent content overflow */
  }

  .page-blog-deep-dive-711d-game-strategies__hero-section {
    padding-top: 10px !important;
  }

  /* Buttons mobile adaptation */
  .page-blog-deep-dive-711d-game-strategies__btn-primary,
  .page-blog-deep-dive-711d-game-strategies__btn-secondary,
  .page-blog-deep-dive-711d-game-strategies a[class*="button"],
  .page-blog-deep-dive-711d-game-strategies a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
    margin-bottom: 10px; /* Add some space between stacked buttons */
  }

  .page-blog-deep-dive-711d-game-strategies__hero-content .page-blog-deep-dive-711d-game-strategies__btn-primary {
    margin-left: auto;
    margin-right: auto;
  }

  .page-blog-deep-dive-711d-game-strategies__cta-buttons,
  .page-blog-deep-dive-711d-game-strategies__button-group,
  .page-blog-deep-dive-711d-game-strategies__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Stack buttons vertically */
  }
}