/* style/resources-98win01-game-guide.css */
.page-resources-98win01-game-guide {
  --primary-color: #1A2E4E;
  --secondary-color: #FFD700;
  --text-color-light: #f8f8f8;
  --text-color-dark: #333;
  --background-light: #ffffff;
  --background-dark: #122036;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
}

.page-resources-98win01-game-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-98win01-game-guide__section {
  padding: 60px 0;
}

.page-resources-98win01-game-guide__section:nth-of-type(odd) {
  background-color: var(--background-light);
}

.page-resources-98win01-game-guide__section:nth-of-type(even) {
  background-color: #f2f5f8; /* Slightly lighter than primary for contrast */
}

.page-resources-98win01-game-guide__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-98win01-game-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

/* Hero Section */
.page-resources-98win01-game-guide__hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0c182c 100%);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color-light);
  text-align: left;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.page-resources-98win01-game-guide__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.1"/></pattern><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
  opacity: 0.1;
  z-index: 1;
}

.page-resources-98win01-game-guide__hero-content {
  max-width: 600px;
  padding: 20px;
  z-index: 2;
}

.page-resources-98win01-game-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.2;
}

.page-resources-98win01-game-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-color-light);
}

.page-resources-98win01-game-guide__hero-image-wrapper {
  z-index: 2;
  margin-left: 40px;
}

.page-resources-98win01-game-guide__hero-image {
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-resources-98win01-game-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}

.page-resources-98win01-game-guide__btn--primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-98win01-game-guide__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-resources-98win01-game-guide__btn--secondary {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  border: 2px solid var(--secondary-color);
  margin-left: 15px;
}

.page-resources-98win01-game-guide__btn--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Game Categories */
.page-resources-98win01-game-guide__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-98win01-game-guide__game-card {
  background-color: var(--background-light);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-98win01-game-guide__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-resources-98win01-game-guide__game-card-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-98win01-game-card-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-98win01-game-card-description {
  font-size: 1em;
  color: var(--text-color-dark);
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Tips Section */
.page-resources-98win01-game-guide__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-resources-98win01-game-guide__tip-item {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-resources-98win01-game-guide__tip-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(100%) contrast(100%); /* Make icons white */
}

.page-resources-98win01-game-guide__tip-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-resources-98win01-game-guide__tip-item p {
  font-size: 0.95em;
  line-height: 1.7;
}

/* Why 98win01 Section */
.page-resources-98win01-game-guide__why-98win01 {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-resources-98win01-game-guide__why-98win01 .page-resources-98win01-game-guide__section-title {
  color: var(--secondary-color);
}

.page-resources-98win01-game-guide__why-98win01 p {
  font-size: 1.1em;
  margin-bottom: 25px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-98win01-game-guide__feature-list {
  list-style: none;
  padding: 0;
  margin: 30px auto 40px auto;
  max-width: 700px;
  text-align: left;
}

.page-resources-98win01-game-guide__feature-list li {
  background-color: rgba(255, 215, 0, 0.1);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-left: 5px solid var(--secondary-color);
  border-radius: 5px;
  font-size: 1.05em;
}

.page-resources-98win01-game-guide__feature-list li strong {
  color: var(--secondary-color);
}

/* CTA Section */
.page-resources-98win01-game-guide__cta {
  text-align: center;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 80px 0;
}

.page-resources-98win01-game-guide__cta .page-resources-98win01-game-guide__section-title {
  color: var(--primary-color);
}

.page-resources-98win01-game-guide__cta .page-resources-98win01-game-guide__section-title::after {
  background-color: var(--primary-color);
}

.page-resources-98win01-game-guide__cta p {
  font-size: 1.2em;
  margin-bottom: 40px;
}

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

.page-resources-98win01-game-guide__cta-buttons .page-resources-98win01-game-guide__btn--primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  box-shadow: 0 4px 15px rgba(26, 46, 78, 0.4);
}

.page-resources-98win01-game-guide__cta-buttons .page-resources-98win01-game-guide__btn--primary:hover {
  background-color: #0c182c;
  box-shadow: 0 6px 20px rgba(26, 46, 78, 0.6);
}

.page-resources-98win01-game-guide__cta-buttons .page-resources-98win01-game-guide__btn--secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-left: 0;
}

.page-resources-98win01-game-guide__cta-buttons .page-resources-98win01-game-guide__btn--secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

/* FAQ Section */
.page-resources-98win01-game-guide__faq {
  background-color: var(--background-light);
}

.page-resources-98win01-game-guide__accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-98win01-game-guide__accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-98win01-game-guide__accordion-header {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-resources-98win01-game-guide__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-resources-98win01-game-guide__accordion-header.active {
  background-color: #2c4a79;
}

.page-resources-98win01-game-guide__accordion-header.active::after {
  transform: rotate(45deg);
}

.page-resources-98win01-game-guide__accordion-content {
  padding: 0 25px;
  background-color: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-resources-98win01-game-guide__accordion-content.active {
  max-height: 200px; /* Adjust based on content height */
  padding: 15px 25px;
}

.page-resources-98win01-game-guide__accordion-content p {
  margin-bottom: 15px;
  color: var(--text-color-dark);
}

.page-resources-98win01-game-guide__accordion-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-resources-98win01-game-guide__accordion-link:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

/* Conclusion */
.page-resources-98win01-game-guide__conclusion {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f2f5f8;
}

.page-resources-98win01-game-guide__conclusion p {
  font-size: 1.1em;
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-98win01-game-guide__hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 0;
  }

  .page-resources-98win01-game-guide__hero-content {
    margin-bottom: 40px;
    margin-left: 0;
  }

  .page-resources-98win01-game-guide__hero-title {
    font-size: 2.8em;
  }

  .page-resources-98win01-game-guide__hero-image {
    max-width: 80%;
  }

  .page-resources-98win01-game-guide__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-resources-98win01-game-guide__section-title {
    font-size: 2em;
  }

  .page-resources-98win01-game-guide__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .page-resources-98win01-game-guide__hero-title {
    font-size: 2.2em;
  }

  .page-resources-98win01-game-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-98win01-game-guide__section {
    padding: 40px 0;
  }

  .page-resources-98win01-game-guide__section-title {
    font-size: 1.8em;
  }

  .page-resources-98win01-game-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-98win01-game-guide__btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto !important;
  }

  .page-resources-98win01-game-guide__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-resources-98win01-game-guide__accordion-content {
    padding: 10px 20px;
  }
}