/* style/resources-58vin-game-strategy-guide.css */
.page-resources-58vin-game-strategy-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Inherited from body, explicit for clarity */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-58vin-game-strategy-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-58vin-game-strategy-guide__dark-bg {
  background-color: #1A202C;
  color: #ffffff;
}

.page-resources-58vin-game-strategy-guide__light-bg {
  background-color: #ffffff;
  color: #1A202C;
}

/* Hero Section */
.page-resources-58vin-game-strategy-guide__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero section */
  padding: 60px 0;
}

.page-resources-58vin-game-strategy-guide__hero-content {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.page-resources-58vin-game-strategy-guide__hero-image {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-58vin-game-strategy-guide__hero-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  padding: 40px;
  background: rgba(26, 32, 44, 0.85); /* Slightly transparent dark background */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  color: #ffffff;
}

.page-resources-58vin-game-strategy-guide__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-resources-58vin-game-strategy-guide__description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-58vin-game-strategy-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-58vin-game-strategy-guide__btn-primary,
.page-resources-58vin-game-strategy-guide__btn-secondary,
.page-resources-58vin-game-strategy-guide__btn-tertiary,
.page-resources-58vin-game-strategy-guide__btn-text {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-58vin-game-strategy-guide__btn-primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-resources-58vin-game-strategy-guide__btn-primary:hover {
  background-color: #e6c200;
  color: #1A202C;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-58vin-game-strategy-guide__btn-secondary {
  background-color: #1A202C;
  color: #ffffff;
  border: 2px solid #FFD700;
}

.page-resources-58vin-game-strategy-guide__btn-secondary:hover {
  background-color: #2c3e50;
  color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(25, 30, 40, 0.4);
}

.page-resources-58vin-game-strategy-guide__btn-tertiary {
  background-color: #1A202C;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 10px 20px;
  font-size: 16px;
}

.page-resources-58vin-game-strategy-guide__btn-tertiary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-resources-58vin-game-strategy-guide__btn-text {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
  padding: 5px 0;
  background: none;
  border: none;
  font-size: 16px;
}

.page-resources-58vin-game-strategy-guide__btn-text:hover {
  color: #e6c200;
}

/* Section Titles */
.page-resources-58vin-game-strategy-guide__section-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.3;
}

.page-resources-58vin-game-strategy-guide__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Game Category Section */
.page-resources-58vin-game-strategy-guide__game-category-section {
  padding: 80px 0;
}

.page-resources-58vin-game-strategy-guide__game-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-58vin-game-strategy-guide__game-card {
  background-color: #ffffff; /* Light background for cards */
  color: #1A202C; /* Dark text for cards */
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-58vin-game-strategy-guide__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.page-resources-58vin-game-strategy-guide__game-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #e0e0e0;
}

.page-resources-58vin-game-strategy-guide__game-card-title {
  font-size: 24px;
  font-weight: bold;
  margin: 25px 25px 15px 25px;
  color: #1A202C;
}

.page-resources-58vin-game-strategy-guide__game-card-text {
  font-size: 16px;
  padding: 0 25px;
  margin-bottom: 25px;
  flex-grow: 1;
  color: #333333;
}

.page-resources-58vin-game-strategy-guide__game-card .page-resources-58vin-game-strategy-guide__btn-tertiary {
  margin: 0 25px 25px 25px;
  align-self: flex-start;
}

/* General Tips Section */
.page-resources-58vin-game-strategy-guide__general-tips-section {
  padding: 80px 0;
}

.page-resources-58vin-game-strategy-guide__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-58vin-game-strategy-guide__tip-item {
  background-color: #ffffff;
  color: #1A202C;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-58vin-game-strategy-guide__tip-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.page-resources-58vin-game-strategy-guide__tip-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #e0e0e0;
}

.page-resources-58vin-game-strategy-guide__tip-title {
  font-size: 22px;
  font-weight: bold;
  margin: 20px 20px 10px 20px;
  color: #1A202C;
}

.page-resources-58vin-game-strategy-guide__tip-text {
  font-size: 15px;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
  color: #333333;
}

.page-resources-58vin-game-strategy-guide__cta-buttons--center {
  margin-top: 50px;
  text-align: center;
}

/* FAQ Section */
.page-resources-58vin-game-strategy-guide__faq-section {
  padding: 80px 0;
}

.page-resources-58vin-game-strategy-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-58vin-game-strategy-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-58vin-game-strategy-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #28303e; /* Darker background for question */
  border: 1px solid #3a475e;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-58vin-game-strategy-guide__faq-question:hover {
  background: #3a475e;
  border-color: #4a5a70;
}

.page-resources-58vin-game-strategy-guide__faq-question:active {
  background: #1a202c;
}

.page-resources-58vin-game-strategy-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff; /* White text for questions */
  pointer-events: none;
}

.page-resources-58vin-game-strategy-guide__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-resources-58vin-game-strategy-guide__faq-item.active .page-resources-58vin-game-strategy-guide__faq-toggle {
  color: #e6c200;
  transform: rotate(45deg); /* Use rotation for minus sign effect */
}

.page-resources-58vin-game-strategy-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #22283a; /* Slightly lighter dark background for answer */
  color: #e0e0e0; /* Light text for answers */
  border-radius: 0 0 8px 8px;
}

.page-resources-58vin-game-strategy-guide__faq-item.active .page-resources-58vin-game-strategy-guide__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-resources-58vin-game-strategy-guide__faq-answer p {
  margin-bottom: 15px;
  font-size: 16px;
}

.page-resources-58vin-game-strategy-guide__faq-answer .page-resources-58vin-game-strategy-guide__btn-text {
  margin-top: 10px;
  display: inline-block;
}

/* Conclusion Section */
.page-resources-58vin-game-strategy-guide__conclusion-section {
  padding: 80px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-58vin-game-strategy-guide__main-title {
    font-size: 40px;
  }

  .page-resources-58vin-game-strategy-guide__description {
    font-size: 16px;
  }

  .page-resources-58vin-game-strategy-guide__section-title {
    font-size: 32px;
  }

  .page-resources-58vin-game-strategy-guide__section-description {
    font-size: 16px;
  }

  .page-resources-58vin-game-strategy-guide__game-card-title {
    font-size: 22px;
  }

  .page-resources-58vin-game-strategy-guide__tip-title {
    font-size: 20px;
  }

  .page-resources-58vin-game-strategy-guide__hero-text-overlay {
    padding: 30px;
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .page-resources-58vin-game-strategy-guide {
    padding-top: var(--header-offset, 80px) !important; /* Adjust for mobile header offset */
  }

  .page-resources-58vin-game-strategy-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-resources-58vin-game-strategy-guide__hero-section {
    min-height: 400px;
    padding: 40px 0;
  }

  .page-resources-58vin-game-strategy-guide__hero-image {
    height: 300px;
  }

  .page-resources-58vin-game-strategy-guide__hero-text-overlay {
    padding: 20px;
    max-width: 90%;
  }

  .page-resources-58vin-game-strategy-guide__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-resources-58vin-game-strategy-guide__description {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .page-resources-58vin-game-strategy-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-resources-58vin-game-strategy-guide__btn-primary,
  .page-resources-58vin-game-strategy-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-resources-58vin-game-strategy-guide__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-resources-58vin-game-strategy-guide__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-resources-58vin-game-strategy-guide__game-category-section,
  .page-resources-58vin-game-strategy-guide__general-tips-section,
  .page-resources-58vin-game-strategy-guide__faq-section,
  .page-resources-58vin-game-strategy-guide__conclusion-section {
    padding: 50px 0;
  }

  .page-resources-58vin-game-strategy-guide__game-categories-grid,
  .page-resources-58vin-game-strategy-guide__tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-58vin-game-strategy-guide__game-card img {
    height: 200px;
  }

  .page-resources-58vin-game-strategy-guide__game-card-title {
    font-size: 20px;
    margin: 20px;
  }

  .page-resources-58vin-game-strategy-guide__game-card-text {
    font-size: 14px;
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .page-resources-58vin-game-strategy-guide__game-card .page-resources-58vin-game-strategy-guide__btn-tertiary {
    margin: 0 20px 20px 20px;
  }

  .page-resources-58vin-game-strategy-guide__tip-item img {
    
  }

  .page-resources-58vin-game-strategy-guide__tip-title {
    font-size: 18px;
    margin: 15px;
  }

  .page-resources-58vin-game-strategy-guide__tip-text {
    font-size: 14px;
    padding: 0 15px;
    margin-bottom: 15px;
  }

  .page-resources-58vin-game-strategy-guide__faq-question {
    padding: 15px 20px;
  }

  .page-resources-58vin-game-strategy-guide__faq-question h3 {
    font-size: 16px;
  }

  .page-resources-58vin-game-strategy-guide__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
    margin-left: 15px;
  }

  .page-resources-58vin-game-strategy-guide__faq-answer {
    padding: 0 20px;
  }

  .page-resources-58vin-game-strategy-guide__faq-item.active .page-resources-58vin-game-strategy-guide__faq-answer {
    padding: 15px 20px !important;
  }

  .page-resources-58vin-game-strategy-guide__faq-answer p {
    font-size: 14px;
  }

  .page-resources-58vin-game-strategy-guide__container {
    padding: 0 15px;
  }
}

/* Ensure all content containers and images do not cause horizontal scroll on mobile */
.page-resources-58vin-game-strategy-guide__hero-section,
.page-resources-58vin-game-strategy-guide__introduction-section,
.page-resources-58vin-game-strategy-guide__game-category-section,
.page-resources-58vin-game-strategy-guide__general-tips-section,
.page-resources-58vin-game-strategy-guide__faq-section,
.page-resources-58vin-game-strategy-guide__conclusion-section {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-resources-58vin-game-strategy-guide__game-card,
.page-resources-58vin-game-strategy-guide__tip-item {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Global image responsive rules for content area */
.page-resources-58vin-game-strategy-guide img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .page-resources-58vin-game-strategy-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* All content sections/containers should have proper padding and max-width */
  .page-resources-58vin-game-strategy-guide__hero-section,
  .page-resources-58vin-game-strategy-guide__introduction-section,
  .page-resources-58vin-game-strategy-guide__game-category-section,
  .page-resources-58vin-game-strategy-guide__general-tips-section,
  .page-resources-58vin-game-strategy-guide__faq-section,
  .page-resources-58vin-game-strategy-guide__conclusion-section,
  .page-resources-58vin-game-strategy-guide__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Ensure buttons adapt to mobile width */
  .page-resources-58vin-game-strategy-guide__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  
  .page-resources-58vin-game-strategy-guide__cta-button,
  .page-resources-58vin-game-strategy-guide__btn-primary,
  .page-resources-58vin-game-strategy-guide__btn-secondary,
  .page-resources-58vin-game-strategy-guide a[class*="button"],
  .page-resources-58vin-game-strategy-guide a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
}