/* style/resources-game-strategy-tips.css */

/* Base styles for the page content */
.page-resources-game-strategy-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: transparent;
}

.page-resources-game-strategy-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-game-strategy-tips__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-game-strategy-tips__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  margin-bottom: 20px;
}

.page-resources-game-strategy-tips__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-resources-game-strategy-tips__subsection-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Hero Section */
.page-resources-game-strategy-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
  padding-top: var(--header-offset, 120px);
  min-height: 600px;
  overflow: hidden;
  background-color: #0a0a0a;
}

.page-resources-game-strategy-tips__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-resources-game-strategy-tips__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-resources-game-strategy-tips__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #ffffff;
}

.page-resources-game-strategy-tips__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-game-strategy-tips__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

/* CTA Button */
.page-resources-game-strategy-tips__cta-button {
  display: inline-block;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  border: 2px solid #26A9E0;
}

.page-resources-game-strategy-tips__cta-button:hover {
  background-color: #1a8cc7;
  border-color: #1a8cc7;
}

/* Introduction Section */
.page-resources-game-strategy-tips__introduction {
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-resources-game-strategy-tips__introduction .page-resources-game-strategy-tips__section-title {
  color: #26A9E0;
}

.page-resources-game-strategy-tips__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-resources-game-strategy-tips__text-block {
  flex: 1;
}

.page-resources-game-strategy-tips__text-block p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-resources-game-strategy-tips__text-block a {
  color: #26A9E0;
  text-decoration: none;
}

.page-resources-game-strategy-tips__text-block a:hover {
  text-decoration: underline;
}

.page-resources-game-strategy-tips__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-resources-game-strategy-tips__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Game Types Section */
.page-resources-game-strategy-tips__game-types {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-resources-game-strategy-tips__game-types .page-resources-game-strategy-tips__section-title {
  color: #26A9E0;
}

.page-resources-game-strategy-tips__game-types .page-resources-game-strategy-tips__section-description {
  color: #f0f0f0;
}

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

.page-resources-game-strategy-tips__card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}

.page-resources-game-strategy-tips__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-game-strategy-tips__card-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-game-strategy-tips__card-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-game-strategy-tips__card-text {
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-resources-game-strategy-tips__card-text a {
  color: #26A9E0;
  text-decoration: none;
}

.page-resources-game-strategy-tips__card-text a:hover {
  text-decoration: underline;
}

/* Advanced Strategies Section */
.page-resources-game-strategy-tips__advanced-strategies {
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-resources-game-strategy-tips__advanced-strategies .page-resources-game-strategy-tips__section-title {
  color: #26A9E0;
}

.page-resources-game-strategy-tips__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-resources-game-strategy-tips__strategy-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-game-strategy-tips__strategy-title {
  font-size: 1.5em;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.page-resources-game-strategy-tips__strategy-text {
  color: #e0e0e0;
}

.page-resources-game-strategy-tips__strategy-text a {
  color: #26A9E0;
  text-decoration: none;
}

.page-resources-game-strategy-tips__strategy-text a:hover {
  text-decoration: underline;
}

.page-resources-game-strategy-tips__advanced-strategies .page-resources-game-strategy-tips__image-container {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

/* Download Guide Section */
.page-resources-game-strategy-tips__download-guide {
  background-color: #26A9E0;
  color: #FFFFFF;
  padding-bottom: 80px;
}

.page-resources-game-strategy-tips__download-guide .page-resources-game-strategy-tips__section-title {
  color: #FFFFFF;
}

.page-resources-game-strategy-tips__download-guide .page-resources-game-strategy-tips__section-description {
  color: #f0f0f0;
}

.page-resources-game-strategy-tips__download-guide .page-resources-game-strategy-tips__text-block {
  text-align: center;
  margin-bottom: 30px;
}

.page-resources-game-strategy-tips__download-guide .page-resources-game-strategy-tips__text-block p {
  color: #f0f0f0;
}

.page-resources-game-strategy-tips__download-guide .page-resources-game-strategy-tips__text-block a {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-resources-game-strategy-tips__video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  aspect-ratio: 16 / 9;
}

.page-resources-game-strategy-tips__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.page-resources-game-strategy-tips__video-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

/* FAQ Section */
.page-resources-game-strategy-tips__faq-section {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-resources-game-strategy-tips__faq-section .page-resources-game-strategy-tips__section-title {
  color: #26A9E0;
}

.page-resources-game-strategy-tips__faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}

.page-resources-game-strategy-tips__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-game-strategy-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  color: #FFFFFF;
  transition: background-color 0.3s ease;
}

.page-resources-game-strategy-tips__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-game-strategy-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-game-strategy-tips__faq-item.active .page-resources-game-strategy-tips__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-game-strategy-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0;
}

.page-resources-game-strategy-tips__faq-item.active .page-resources-game-strategy-tips__faq-answer {
  max-height: 1000px !important;
  padding: 15px 25px 25px;
}

.page-resources-game-strategy-tips__faq-answer p {
  margin: 0;
  color: #e0e0e0;
}

.page-resources-game-strategy-tips__faq-answer a {
  color: #26A9E0;
  text-decoration: none;
}

.page-resources-game-strategy-tips__faq-answer a:hover {
  text-decoration: underline;
}

/* Conclusion Section */
.page-resources-game-strategy-tips__conclusion {
  background-color: #0a0a0a;
  color: #ffffff;
  padding-bottom: 80px;
}

.page-resources-game-strategy-tips__conclusion .page-resources-game-strategy-tips__section-title {
  color: #26A9E0;
}

.page-resources-game-strategy-tips__conclusion .page-resources-game-strategy-tips__section-description {
  color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-game-strategy-tips__hero-title {
    font-size: 3em;
  }

  .page-resources-game-strategy-tips__section-title {
    font-size: 2em;
  }

  .page-resources-game-strategy-tips__strategy-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-game-strategy-tips__hero-section {
    padding: 80px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-game-strategy-tips__hero-title {
    font-size: 2.5em;
  }

  .page-resources-game-strategy-tips__hero-description {
    font-size: 1.1em;
  }

  .page-resources-game-strategy-tips__section {
    padding: 40px 0;
  }

  .page-resources-game-strategy-tips__section-title {
    font-size: 1.8em;
  }

  .page-resources-game-strategy-tips__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-resources-game-strategy-tips__image-block {
    order: -1;
  }

  .page-resources-game-strategy-tips__game-cards {
    grid-template-columns: 1fr;
  }
  
  .page-resources-game-strategy-tips__card {
    min-height: auto;
  }

  .page-resources-game-strategy-tips__strategy-grid {
    grid-template-columns: 1fr;
  }

  /* Images responsive */
  .page-resources-game-strategy-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-game-strategy-tips__section,
  .page-resources-game-strategy-tips__card,
  .page-resources-game-strategy-tips__container,
  .page-resources-game-strategy-tips__content-wrapper,
  .page-resources-game-strategy-tips__video-container,
  .page-resources-game-strategy-tips__video-wrapper,
  .page-resources-game-strategy-tips__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }
  
  /* Video responsive */
  .page-resources-game-strategy-tips video,
  .page-resources-game-strategy-tips__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Buttons responsive */
  .page-resources-game-strategy-tips__cta-button,
  .page-resources-game-strategy-tips__btn-primary,
  .page-resources-game-strategy-tips__btn-secondary,
  .page-resources-game-strategy-tips a[class*="button"],
  .page-resources-game-strategy-tips 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;
  }
  
  .page-resources-game-strategy-tips__cta-buttons,
  .page-resources-game-strategy-tips__button-group,
  .page-resources-game-strategy-tips__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;
    overflow-x: hidden !important;
  }
  
  .page-resources-game-strategy-tips__cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-resources-game-strategy-tips__hero-title {
    font-size: 2em;
  }

  .page-resources-game-strategy-tips__section-title {
    font-size: 1.5em;
  }

  .page-resources-game-strategy-tips__faq-question {
    font-size: 1em;
  }
}

/* Contrast Fixes (as per instructions) */
.page-resources-game-strategy-tips__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-resources-game-strategy-tips__light-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-resources-game-strategy-tips__content-area,
.page-resources-game-strategy-tips__text-block {
  color: #f0f0f0;
}

.page-resources-game-strategy-tips p,
.page-resources-game-strategy-tips li {
  color: #e0e0e0;
}

.page-resources-game-strategy-tips__card {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-game-strategy-tips__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-game-strategy-tips__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-game-strategy-tips__dark-section {
  background: #26A9E0;
  color: #ffffff;
}