.page-resources-32vin-game-strategy-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background from shared.css */
}

.page-resources-32vin-game-strategy-tips__hero-section {
  position: relative;
  padding-top: 0; /* Assuming shared.css handles body padding-top */
  padding-bottom: 0;
  margin-top: 0;
  width: 100%;
  overflow: hidden;
}

.page-resources-32vin-game-strategy-tips__hero-image-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.page-resources-32vin-game-strategy-tips__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-width: 100%;
}

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

.page-resources-32vin-game-strategy-tips__introduction-section,
.page-resources-32vin-game-strategy-tips__specific-strategies-section,
.page-resources-32vin-game-strategy-tips__mistakes-section,
.page-resources-32vin-game-strategy-tips__cta-section {
  padding: 60px 0;
  background-color: #2a2a2a; /* Slightly lighter dark background for contrast with body */
}

.page-resources-32vin-game-strategy-tips__general-strategies-section,
.page-resources-32vin-game-strategy-tips__skill-improvement-section,
.page-resources-32vin-game-strategy-tips__faq-section {
  padding: 60px 0;
  background-color: #0A2239; /* Brand primary dark blue */
}

.page-resources-32vin-game-strategy-tips__main-title {
  font-size: 38px;
  color: #FFD700; /* Gold for main title */
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-resources-32vin-game-strategy-tips__section-title {
  font-size: 32px;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-32vin-game-strategy-tips__description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-resources-32vin-game-strategy-tips__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-resources-32vin-game-strategy-tips__btn-primary,
.page-resources-32vin-game-strategy-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* For responsive buttons */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-resources-32vin-game-strategy-tips__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #0A2239; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-resources-32vin-game-strategy-tips__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-32vin-game-strategy-tips__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-resources-32vin-game-strategy-tips__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

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

.page-resources-32vin-game-strategy-tips__strategy-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark background */
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-32vin-game-strategy-tips__strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-32vin-game-strategy-tips__strategy-card img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-resources-32vin-game-strategy-tips__card-title {
  font-size: 22px;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-32vin-game-strategy-tips__strategy-card p {
  font-size: 16px;
  color: #f0f0f0;
}

.page-resources-32vin-game-strategy-tips__game-category {
  margin-bottom: 50px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.05); /* Lighter background for categories */
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-resources-32vin-game-strategy-tips__category-title {
  font-size: 28px;
  color: #FFD700;
  margin-bottom: 25px;
  text-align: left;
  font-weight: bold;
}

.page-resources-32vin-game-strategy-tips__category-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.page-resources-32vin-game-strategy-tips__category-content img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.page-resources-32vin-game-strategy-tips__category-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.page-resources-32vin-game-strategy-tips__category-content li {
  font-size: 17px;
  margin-bottom: 15px;
  color: #f0f0f0;
  position: relative;
  padding-left: 25px;
}

.page-resources-32vin-game-strategy-tips__category-content li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

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

.page-resources-32vin-game-strategy-tips__tip-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-32vin-game-strategy-tips__tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-32vin-game-strategy-tips__tip-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-32vin-game-strategy-tips__tip-item p {
  font-size: 16px;
  color: #f0f0f0;
}

.page-resources-32vin-game-strategy-tips__mistakes-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.page-resources-32vin-game-strategy-tips__mistakes-list li {
  font-size: 17px;
  margin-bottom: 15px;
  color: #f0f0f0;
  position: relative;
  padding-left: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 20px 15px 50px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-32vin-game-strategy-tips__mistakes-list li::before {
  content: '✖';
  color: #ff4d4d; /* Red cross for mistakes */
  font-weight: bold;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

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

.page-resources-32vin-game-strategy-tips__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-resources-32vin-game-strategy-tips__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 15px;
  opacity: 0;
}

.page-resources-32vin-game-strategy-tips__faq-item.active .page-resources-32vin-game-strategy-tips__faq-answer {
  max-height: 2000px !important; /* Ensure enough height */
  padding: 20px 15px !important;
  opacity: 1;
  background: #1a3a5a; /* Slightly lighter dark blue for answers */
  border-radius: 0 0 5px 5px;
  color: #f0f0f0;
}

.page-resources-32vin-game-strategy-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #0A2239; /* Brand primary dark blue */
  border: 1px solid #1a3a5a;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-32vin-game-strategy-tips__faq-question:hover {
  background: #1a3a5a;
  border-color: #2a4a6a;
}

.page-resources-32vin-game-strategy-tips__faq-question:active {
  background: #0A2239;
}

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

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

.page-resources-32vin-game-strategy-tips__faq-item.active .page-resources-32vin-game-strategy-tips__faq-toggle {
  color: #ffffff; /* White when active */
  transform: rotate(45deg);
}

@media (max-width: 1024px) {
  .page-resources-32vin-game-strategy-tips__main-title {
    font-size: 32px;
  }
  .page-resources-32vin-game-strategy-tips__section-title {
    font-size: 28px;
  }
  .page-resources-32vin-game-strategy-tips__description {
    font-size: 16px;
  }
  .page-resources-32vin-game-strategy-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-32vin-game-strategy-tips__btn-primary,
  .page-resources-32vin-game-strategy-tips__btn-secondary {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-resources-32vin-game-strategy-tips__category-content {
    flex-direction: column;
  }
  .page-resources-32vin-game-strategy-tips__category-content img {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-resources-32vin-game-strategy-tips {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-32vin-game-strategy-tips__introduction-section,
  .page-resources-32vin-game-strategy-tips__general-strategies-section,
  .page-resources-32vin-game-strategy-tips__specific-strategies-section,
  .page-resources-32vin-game-strategy-tips__skill-improvement-section,
  .page-resources-32vin-game-strategy-tips__mistakes-section,
  .page-resources-32vin-game-strategy-tips__faq-section,
  .page-resources-32vin-game-strategy-tips__cta-section {
    padding: 40px 0;
  }
  .page-resources-32vin-game-strategy-tips__container {
    padding: 0 15px;
  }
  .page-resources-32vin-game-strategy-tips__main-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .page-resources-32vin-game-strategy-tips__section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .page-resources-32vin-game-strategy-tips__description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-resources-32vin-game-strategy-tips__cta-buttons {
    gap: 10px;
    flex-direction: column;
    padding: 0 15px; /* Add padding to container */
  }
  .page-resources-32vin-game-strategy-tips__btn-primary,
  .page-resources-32vin-game-strategy-tips__btn-secondary {
    padding: 12px 20px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-resources-32vin-game-strategy-tips__strategy-grid,
  .page-resources-32vin-game-strategy-tips__tips-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-32vin-game-strategy-tips__strategy-card,
  .page-resources-32vin-game-strategy-tips__tip-item {
    padding: 20px;
  }
  .page-resources-32vin-game-strategy-tips__card-title,
  .page-resources-32vin-game-strategy-tips__tip-title {
    font-size: 20px;
  }
  .page-resources-32vin-game-strategy-tips__strategy-card p,
  .page-resources-32vin-game-strategy-tips__tip-item p {
    font-size: 15px;
  }
  .page-resources-32vin-game-strategy-tips__game-category {
    padding: 20px;
    margin-bottom: 30px;
  }
  .page-resources-32vin-game-strategy-tips__category-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .page-resources-32vin-game-strategy-tips__category-content {
    gap: 20px;
  }
  .page-resources-32vin-game-strategy-tips__category-content li,
  .page-resources-32vin-game-strategy-tips__mistakes-list li {
    font-size: 15px;
    padding: 12px 15px 12px 40px;
  }
  .page-resources-32vin-game-strategy-tips__mistakes-list li::before {
    left: 15px;
    font-size: 18px;
  }
  .page-resources-32vin-game-strategy-tips__faq-question {
    padding: 15px;
  }
  .page-resources-32vin-game-strategy-tips__faq-question h3 {
    font-size: 16px;
  }
  .page-resources-32vin-game-strategy-tips__faq-toggle {
    font-size: 22px;
    width: 24px;
    height: 24px;
  }
  .page-resources-32vin-game-strategy-tips__faq-item.active .page-resources-32vin-game-strategy-tips__faq-answer {
    padding: 15px !important;
  }

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

  .page-resources-32vin-game-strategy-tips__hero-image-wrapper,
  .page-resources-32vin-game-strategy-tips__strategy-card,
  .page-resources-32vin-game-strategy-tips__game-category {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}