/* style/blog-mayclub-popular-game-strategy.css */

/* Base styles for the page */
.page-blog-mayclub-popular-game-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

.page-blog-mayclub-popular-game-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Section styles */
.page-blog-mayclub-popular-game-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
}

.page-blog-mayclub-popular-game-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-blog-mayclub-popular-game-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-mayclub-popular-game-strategy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: #ffffff;
}

.page-blog-mayclub-popular-game-strategy__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-mayclub-popular-game-strategy__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-mayclub-popular-game-strategy__content-section {
  padding: 40px 0;
}

.page-blog-mayclub-popular-game-strategy__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #26A9E0; /* Brand color for titles */
}

.page-blog-mayclub-popular-game-strategy__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for subtitles */
}

.page-blog-mayclub-popular-game-strategy__game-strategy-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.08); /* Slightly visible background on dark body */
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-mayclub-popular-game-strategy__card-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.page-blog-mayclub-popular-game-strategy__card-content {
  padding: 25px;
  color: #f0f0f0;
}

.page-blog-mayclub-popular-game-strategy__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
}

.page-blog-mayclub-popular-game-strategy__cta-block {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background: rgba(38, 169, 224, 0.15); /* Semi-transparent brand color background */
  border-radius: 8px;
}

.page-blog-mayclub-popular-game-strategy__cta-block p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #ffffff;
}

/* Button styles */
.page-blog-mayclub-popular-game-strategy__btn-primary {
  display: inline-block;
  background: #26A9E0; /* Brand primary color */
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-blog-mayclub-popular-game-strategy__btn-primary:hover {
  background: #1e87c2;
  transform: translateY(-2px);
}

/* Dark/Light Background Specifics */
.page-blog-mayclub-popular-game-strategy__dark-bg {
  background-color: #0a0a0a; /* Ensure sections have explicit background for contrast */
  color: #ffffff;
}

.page-blog-mayclub-popular-game-strategy__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast sections */
  color: #ffffff;
}

.page-blog-mayclub-popular-game-strategy__light-bg .page-blog-mayclub-popular-game-strategy__section-title,
.page-blog-mayclub-popular-game-strategy__light-bg .page-blog-mayclub-popular-game-strategy__sub-title {
  color: #26A9E0;
}

/* FAQ Section */
.page-blog-mayclub-popular-game-strategy__faq-section {
  padding: 60px 0;
  background-color: #0a0a0a;
}

.page-blog-mayclub-popular-game-strategy__faq-list {
  margin-top: 30px;
}

.page-blog-mayclub-popular-game-strategy__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-mayclub-popular-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background: rgba(38, 169, 224, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  list-style: none; /* For details/summary */
}

.page-blog-mayclub-popular-game-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-mayclub-popular-game-strategy__faq-qtext {
  flex-grow: 1;
}

.page-blog-mayclub-popular-game-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-mayclub-popular-game-strategy__faq-item[open] .page-blog-mayclub-popular-game-strategy__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-mayclub-popular-game-strategy__faq-answer {
  padding: 20px 25px;
  font-size: 1.1em;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-mayclub-popular-game-strategy__hero-content {
    max-width: 600px;
  }

  .page-blog-mayclub-popular-game-strategy__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }

  .page-blog-mayclub-popular-game-strategy__section-title {
    font-size: 2em;
  }

  .page-blog-mayclub-popular-game-strategy__sub-title {
    font-size: 1.5em;
  }

  .page-blog-mayclub-popular-game-strategy__card-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .page-blog-mayclub-popular-game-strategy__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-mayclub-popular-game-strategy__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-blog-mayclub-popular-game-strategy__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-mayclub-popular-game-strategy__btn-primary {
    padding: 12px 25px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-mayclub-popular-game-strategy__content-section {
    padding: 30px 0;
  }

  .page-blog-mayclub-popular-game-strategy__container {
    padding: 0 15px;
  }

  .page-blog-mayclub-popular-game-strategy__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-blog-mayclub-popular-game-strategy__sub-title {
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-mayclub-popular-game-strategy__game-strategy-card {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .page-blog-mayclub-popular-game-strategy__card-image {
    height: 200px;
  }

  .page-blog-mayclub-popular-game-strategy__card-content {
    padding: 15px;
  }

  .page-blog-mayclub-popular-game-strategy__image-full-width {
    margin: 20px 0;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-mayclub-popular-game-strategy__cta-block {
    margin-top: 30px;
    padding: 20px;
  }

  .page-blog-mayclub-popular-game-strategy__cta-block p {
    font-size: 1em;
    margin-bottom: 15px;
  }

  /* Image responsiveness */
  .page-blog-mayclub-popular-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-mayclub-popular-game-strategy__section,
  .page-blog-mayclub-popular-game-strategy__card,
  .page-blog-mayclub-popular-game-strategy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-mayclub-popular-game-strategy__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-mayclub-popular-game-strategy__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-blog-mayclub-popular-game-strategy__hero-section {
    padding: 30px 10px;
    padding-top: 10px !important;
  }

  .page-blog-mayclub-popular-game-strategy__main-title {
    font-size: clamp(1.3em, 7vw, 2em);
  }

  .page-blog-mayclub-popular-game-strategy__section-title {
    font-size: 1.5em;
  }

  .page-blog-mayclub-popular-game-strategy__sub-title {
    font-size: 1.2em;
  }

  .page-blog-mayclub-popular-game-strategy__faq-question {
    font-size: 0.9em;
  }

  .page-blog-mayclub-popular-game-strategy__faq-answer {
    font-size: 0.9em;
  }
}