.page-resources-vicwin-game-strategy-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #121212 (dark), so text must be light */
  background-color: #121212; /* Ensure consistency with body background */
  padding-top: 120px; /* Fixed header spacing for desktop */
}

@media (max-width: 768px) {
  .page-resources-vicwin-game-strategy-guide {
    padding-top: 100px; /* Fixed header spacing for mobile */
  }
}

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

.page-resources-vicwin-game-strategy-guide__hero-banner {
  background: linear-gradient(135deg, #000080, #121212); /* Deep blue to dark grey */
  padding: 80px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-resources-vicwin-game-strategy-guide__main-title {
  font-size: 48px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-vicwin-game-strategy-guide__lead-text {
  font-size: 20px;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-resources-vicwin-game-strategy-guide__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000000; /* Dark text for contrast on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-resources-vicwin-game-strategy-guide__cta-button:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
}

.page-resources-vicwin-game-strategy-guide__cta-button--large {
  padding: 18px 35px;
  font-size: 20px;
}

.page-resources-vicwin-game-strategy-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-vicwin-game-strategy-guide__section:last-of-type {
  border-bottom: none;
}

.page-resources-vicwin-game-strategy-guide__section--about {
  background-color: #1a1a1a;
}

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

.page-resources-vicwin-game-strategy-guide__section-description {
  font-size: 18px;
  color: #cccccc;
  text-align: center;
  max-width: 900px;
  margin: -20px auto 50px auto;
}

.page-resources-vicwin-game-strategy-guide__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-resources-vicwin-game-strategy-guide__text-block p {
  margin-bottom: 15px;
  font-size: 17px;
  color: #e0e0e0;
}

.page-resources-vicwin-game-strategy-guide__read-more-btn {
  display: inline-block;
  background-color: #000080; /* Navy blue button */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-resources-vicwin-game-strategy-guide__read-more-btn:hover {
  background-color: #0000a0;
}

.page-resources-vicwin-game-strategy-guide__image-wrapper {
  text-align: center;
}

.page-resources-vicwin-game-strategy-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-resources-vicwin-game-strategy-guide__section--games {
  background-color: #121212;
}

.page-resources-vicwin-game-strategy-guide__game-category {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 50px;
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-vicwin-game-strategy-guide__game-category--reverse {
  grid-template-columns: 1fr 1.5fr;
}

.page-resources-vicwin-game-strategy-guide__game-category--reverse .page-resources-vicwin-game-strategy-guide__game-image-wrapper {
  order: 2;
}

.page-resources-vicwin-game-strategy-guide__game-category--reverse .page-resources-vicwin-game-strategy-guide__game-info {
  order: 1;
}

.page-resources-vicwin-game-strategy-guide__game-title {
  font-size: 28px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-vicwin-game-strategy-guide__game-info p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 10px;
}

.page-resources-vicwin-game-strategy-guide__game-info ul {
  list-style-type: disc;
  margin-left: 20px;
  color: #e0e0e0;
  font-size: 16px;
}

.page-resources-vicwin-game-strategy-guide__game-info li {
  margin-bottom: 5px;
}

.page-resources-vicwin-game-strategy-guide__section--tips {
  background-color: #1a1a1a;
}

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

.page-resources-vicwin-game-strategy-guide__tip-card {
  background-color: #222222;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-vicwin-game-strategy-guide__tip-card:hover {
  transform: translateY(-5px);
  background-color: #2a2a2a;
}

.page-resources-vicwin-game-strategy-guide__tip-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-resources-vicwin-game-strategy-guide__tip-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-vicwin-game-strategy-guide__tip-card p {
  font-size: 16px;
  color: #cccccc;
}

.page-resources-vicwin-game-strategy-guide__section--register {
  background-color: #121212;
}

.page-resources-vicwin-game-strategy-guide__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-resources-vicwin-game-strategy-guide__step-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-vicwin-game-strategy-guide__step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #FFD700;
  color: #000000;
  border-radius: 50%;
  font-size: 30px;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-resources-vicwin-game-strategy-guide__step-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-vicwin-game-strategy-guide__step-card p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-resources-vicwin-game-strategy-guide__step-link {
  display: inline-block;
  color: #000080;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.page-resources-vicwin-game-strategy-guide__step-link:hover {
  color: #FFD700;
}

.page-resources-vicwin-game-strategy-guide__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-resources-vicwin-game-strategy-guide__section--security {
  background-color: #1a1a1a;
}

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

.page-resources-vicwin-game-strategy-guide__security-item {
  background-color: #222222;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-vicwin-game-strategy-guide__security-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-resources-vicwin-game-strategy-guide__security-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-vicwin-game-strategy-guide__security-item p {
  font-size: 16px;
  color: #cccccc;
}

.page-resources-vicwin-game-strategy-guide__section--faq {
  background-color: #121212;
}

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

.page-resources-vicwin-game-strategy-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-vicwin-game-strategy-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #222222;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-resources-vicwin-game-strategy-guide__faq-question:hover {
  background-color: #2a2a2a;
}

.page-resources-vicwin-game-strategy-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #f0f0f0;
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-resources-vicwin-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: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-resources-vicwin-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-color: #1a1a1a;
}

.page-resources-vicwin-game-strategy-guide__faq-item.active .page-resources-vicwin-game-strategy-guide__faq-answer {
  max-height: 2000px !important; /* Ensure enough height for content */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-resources-vicwin-game-strategy-guide__faq-item.active .page-resources-vicwin-game-strategy-guide__faq-toggle {
  transform: rotate(180deg);
  color: #ffffff;
}

.page-resources-vicwin-game-strategy-guide__faq-answer p {
  font-size: 16px;
  color: #cccccc;
  margin: 0;
}

.page-resources-vicwin-game-strategy-guide__section--conclusion {
  background-color: #000080; /* Navy blue for conclusion */
  text-align: center;
  padding: 80px 0;
}

.page-resources-vicwin-game-strategy-guide__section--conclusion .page-resources-vicwin-game-strategy-guide__section-title {
  color: #FFD700; /* Gold title on navy blue background */
  margin-bottom: 30px;
}

.page-resources-vicwin-game-strategy-guide__section--conclusion .page-resources-vicwin-game-strategy-guide__lead-text {
  color: #ffffff;
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-vicwin-game-strategy-guide__content-grid,
  .page-resources-vicwin-game-strategy-guide__game-category,
  .page-resources-vicwin-game-strategy-guide__game-category--reverse {
    grid-template-columns: 1fr;
  }
  
  .page-resources-vicwin-game-strategy-guide__game-category--reverse .page-resources-vicwin-game-strategy-guide__game-image-wrapper {
    order: unset;
  }

  .page-resources-vicwin-game-strategy-guide__game-category--reverse .page-resources-vicwin-game-strategy-guide__game-info {
    order: unset;
  }

  .page-resources-vicwin-game-strategy-guide__game-image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-resources-vicwin-game-strategy-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-vicwin-game-strategy-guide__main-title {
    font-size: 36px;
  }

  .page-resources-vicwin-game-strategy-guide__lead-text {
    font-size: 18px;
  }

  .page-resources-vicwin-game-strategy-guide__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }

  .page-resources-vicwin-game-strategy-guide__cta-button--large {
    padding: 15px 30px;
    font-size: 18px;
  }

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

  .page-resources-vicwin-game-strategy-guide__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-resources-vicwin-game-strategy-guide__section-description {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .page-resources-vicwin-game-strategy-guide__content-grid {
    gap: 30px;
  }

  .page-resources-vicwin-game-strategy-guide__text-block p {
    font-size: 16px;
  }

  .page-resources-vicwin-game-strategy-guide__game-category {
    padding: 20px;
  }

  .page-resources-vicwin-game-strategy-guide__game-title {
    font-size: 24px;
  }

  .page-resources-vicwin-game-strategy-guide__game-info p,
  .page-resources-vicwin-game-strategy-guide__game-info li {
    font-size: 15px;
  }

  .page-resources-vicwin-game-strategy-guide__tips-grid,
  .page-resources-vicwin-game-strategy-guide__steps-grid,
  .page-resources-vicwin-game-strategy-guide__security-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-vicwin-game-strategy-guide__tip-card,
  .page-resources-vicwin-game-strategy-guide__step-card,
  .page-resources-vicwin-game-strategy-guide__security-item {
    padding: 20px;
  }

  .page-resources-vicwin-game-strategy-guide__tip-icon,
  .page-resources-vicwin-game-strategy-guide__security-icon {
    width: 80px;
    height: 80px;
  }

  .page-resources-vicwin-game-strategy-guide__tip-title,
  .page-resources-vicwin-game-strategy-guide__security-title {
    font-size: 20px;
  }

  .page-resources-vicwin-game-strategy-guide__step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
  }

  .page-resources-vicwin-game-strategy-guide__step-title {
    font-size: 20px;
  }

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

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

  .page-resources-vicwin-game-strategy-guide__faq-toggle {
    font-size: 24px;
    width: 25px;
    height: 25px;
  }

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

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

  .page-resources-vicwin-game-strategy-guide__section--conclusion {
    padding: 60px 0;
  }

  /* Ensure all images are responsive and prevent horizontal scroll */
  .page-resources-vicwin-game-strategy-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-resources-vicwin-game-strategy-guide__section,
  .page-resources-vicwin-game-strategy-guide__card,
  .page-resources-vicwin-game-strategy-guide__container,
  .page-resources-vicwin-game-strategy-guide__game-category,
  .page-resources-vicwin-game-strategy-guide__tip-card,
  .page-resources-vicwin-game-strategy-guide__step-card,
  .page-resources-vicwin-game-strategy-guide__security-item,
  .page-resources-vicwin-game-strategy-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}