/* style/blog-latest-game-strategies.css */

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

.page-blog-latest-game-strategies {
  color: var(--text-main); /* Default text color for dark body background */
  background-color: var(--bg-color);
  font-family: 'Arial', sans-serif;
}

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

.page-blog-latest-game-strategies__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.2;
}

.page-blog-latest-game-strategies__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: var(--text-main);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.page-blog-latest-game-strategies__main-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold-color);
}

.page-blog-latest-game-strategies__hero-description {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 30px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-blog-latest-game-strategies__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-latest-game-strategies__btn-primary,
.page-blog-latest-game-strategies__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-latest-game-strategies__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-game-strategies__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-latest-game-strategies__btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-game-strategies__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-game-strategies__section {
  padding: 60px 20px;
  background-color: var(--bg-color);
}

.page-blog-latest-game-strategies__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-latest-game-strategies__dark-section {
  background-color: var(--deep-green);
  color: var(--text-main);
}

.page-blog-latest-game-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-latest-game-strategies__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold-color);
}

.page-blog-latest-game-strategies__text-block {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  text-align: justify;
  color: var(--text-secondary);
}

.page-blog-latest-game-strategies__highlight {
  color: var(--text-main);
  font-weight: 600;
}

.page-blog-latest-game-strategies__grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-latest-game-strategies__grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-latest-game-strategies__card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.page-blog-latest-game-strategies__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-latest-game-strategies__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gold-color);
}

.page-blog-latest-game-strategies__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  display: block;
}

.page-blog-latest-game-strategies__card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-blog-latest-game-strategies__card-link {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-blog-latest-game-strategies__card-link:hover {
  color: var(--secondary-color);
}

.page-blog-latest-game-strategies__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
}

.page-blog-latest-game-strategies__list li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-secondary);
  padding-left: 25px;
  position: relative;
}

.page-blog-latest-game-strategies__list li::before {
  content: '✔';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
}

.page-blog-latest-game-strategies__list-item-title {
  color: var(--text-main);
  font-weight: 600;
}

.page-blog-latest-game-strategies__game-strategy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-latest-game-strategies__video-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 40px auto;
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.page-blog-latest-game-strategies__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.page-blog-latest-game-strategies__faq-section {
  background-color: var(--bg-color);
  padding: 60px 20px;
  color: var(--text-main);
}

.page-blog-latest-game-strategies__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-latest-game-strategies__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-latest-game-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-main);
  background-color: var(--card-bg);
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-blog-latest-game-strategies__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-blog-latest-game-strategies__faq-qtext {
  flex-grow: 1;
}

.page-blog-latest-game-strategies__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

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

.page-blog-latest-game-strategies__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-blog-latest-game-strategies__faq-answer p {
  margin-bottom: 10px;
}

.page-blog-latest-game-strategies__faq-answer a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-blog-latest-game-strategies__faq-answer a:hover {
  color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-latest-game-strategies__hero-section {
    padding: 40px 15px;
  }
  .page-blog-latest-game-strategies__section {
    padding: 40px 15px;
  }
  .page-blog-latest-game-strategies__grid-3-cols,
  .page-blog-latest-game-strategies__grid-2-cols,
  .page-blog-latest-game-strategies__game-strategy-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-blog-latest-game-strategies__card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-game-strategies__main-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .page-blog-latest-game-strategies__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
  .page-blog-latest-game-strategies__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .page-blog-latest-game-strategies__btn-primary,
  .page-blog-latest-game-strategies__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-latest-game-strategies__section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-blog-latest-game-strategies__text-block {
    font-size: 1rem;
  }
  .page-blog-latest-game-strategies__card-title {
    font-size: 1.3rem;
  }
  .page-blog-latest-game-strategies__card-description,
  .page-blog-latest-game-strategies__list li {
    font-size: 0.95rem;
  }

  /* Mobile image and video responsiveness */
  .page-blog-latest-game-strategies img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-latest-game-strategies__section,
  .page-blog-latest-game-strategies__card,
  .page-blog-latest-game-strategies__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden;
  }
  .page-blog-latest-game-strategies__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-latest-game-strategies__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    margin-left: -15px; /* Adjust for container padding */
    margin-right: -15px; /* Adjust for container padding */
    border-radius: 0;
  }
  .page-blog-latest-game-strategies__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-latest-game-strategies__faq-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-latest-game-strategies__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }
  .page-blog-latest-game-strategies__faq-answer {
    padding: 0 20px 15px;
  }
  .page-blog-latest-game-strategies__faq-toggle {
    font-size: 1.5rem;
  }
}