.page-resources-rikvip-game-strategy {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* 默认深色文字，因为body背景是浅色 */
  background-color: #FFFFFF;
}

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

/* Hero Section */
.page-resources-rikvip-game-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #26A9E0 0%, #46c3f0 100%); /* 淡蓝色渐变背景 */
  color: #FFFFFF;
  overflow: hidden;
}

.page-resources-rikvip-game-strategy__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.page-resources-rikvip-game-strategy__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-rikvip-game-strategy__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-resources-rikvip-game-strategy__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-rikvip-game-strategy__hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-resources-rikvip-game-strategy__hero-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.page-resources-rikvip-game-strategy__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-rikvip-game-strategy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-resources-rikvip-game-strategy__btn-primary {
  background: #EA7C07; /* 登录色 */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-rikvip-game-strategy__btn-primary:hover {
  background: #d46b00;
  border-color: #d46b00;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-rikvip-game-strategy__btn-secondary {
  background: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-rikvip-game-strategy__btn-secondary:hover {
  background: #e0f2f7;
  border-color: #26A9E0;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Sections */
.page-resources-rikvip-game-strategy__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  color: #26A9E0;
}

.page-resources-rikvip-game-strategy__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.8;
  color: #555555;
}

.page-resources-rikvip-game-strategy__dark-bg {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-resources-rikvip-game-strategy__dark-bg .page-resources-rikvip-game-strategy__section-title,
.page-resources-rikvip-game-strategy__dark-bg .page-resources-rikvip-game-strategy__section-description,
.page-resources-rikvip-game-strategy__dark-bg h3 {
  color: #FFFFFF;
}

.page-resources-rikvip-game-strategy__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-resources-rikvip-game-strategy__intro-section,
.page-resources-rikvip-game-strategy__strategy-section,
.page-resources-rikvip-game-strategy__security-contact-section,
.page-resources-rikvip-game-strategy__faq-section {
  padding: 80px 0;
}

.page-resources-rikvip-game-strategy__games-overview-section,
.page-resources-rikvip-game-strategy__promotions-section,
.page-resources-rikvip-game-strategy__related-resources-section {
  padding: 80px 0;
}

/* Feature Grid */
.page-resources-rikvip-game-strategy__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.page-resources-rikvip-game-strategy__feature-item {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-rikvip-game-strategy__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-rikvip-game-strategy__feature-item img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-resources-rikvip-game-strategy__feature-item h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-rikvip-game-strategy__feature-item p {
  font-size: 1em;
  color: #666666;
  flex-grow: 1;
}

/* Game Cards */
.page-resources-rikvip-game-strategy__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-rikvip-game-strategy__game-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-resources-rikvip-game-strategy__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-rikvip-game-strategy__game-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-resources-rikvip-game-strategy__game-card h3 {
  font-size: 1.4em;
  margin: 20px 25px 10px 25px;
  color: #26A9E0;
}

.page-resources-rikvip-game-strategy__game-card h3 a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-rikvip-game-strategy__game-card h3 a:hover {
  color: #1a7fa0;
}

.page-resources-rikvip-game-strategy__game-card p {
  font-size: 0.95em;
  color: #666666;
  padding: 0 25px 20px 25px;
  flex-grow: 1;
}

.page-resources-rikvip-game-strategy__btn-text {
  display: inline-flex;
  align-items: center;
  color: #EA7C07;
  text-decoration: none;
  font-weight: bold;
  padding: 0 25px 25px 25px;
  transition: color 0.3s ease;
}

.page-resources-rikvip-game-strategy__btn-text:hover {
  color: #d46b00;
}

.page-resources-rikvip-game-strategy__arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.page-resources-rikvip-game-strategy__btn-text:hover .page-resources-rikvip-game-strategy__arrow {
  transform: translateX(5px);
}

/* Strategy Steps */
.page-resources-rikvip-game-strategy__strategy-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-resources-rikvip-game-strategy__strategy-item {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-resources-rikvip-game-strategy__strategy-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-resources-rikvip-game-strategy__strategy-item h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-rikvip-game-strategy__strategy-item p {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-rikvip-game-strategy__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-rikvip-game-strategy__list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #555555;
}

.page-resources-rikvip-game-strategy__list li::before {
  content: '✓';
  color: #EA7C07;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-resources-rikvip-game-strategy__list li a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-rikvip-game-strategy__list li a:hover {
  text-decoration: underline;
}

/* Promotions */
.page-resources-rikvip-game-strategy__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-rikvip-game-strategy__promo-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-resources-rikvip-game-strategy__promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-resources-rikvip-game-strategy__promo-card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #26A9E0;
  padding: 0 20px;
}

.page-resources-rikvip-game-strategy__promo-card h3 a {
  color: #26A9E0;
  text-decoration: none;
}

.page-resources-rikvip-game-strategy__promo-card h3 a:hover {
  text-decoration: underline;
}

.page-resources-rikvip-game-strategy__promo-card p {
  font-size: 0.95em;
  color: #666666;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-resources-rikvip-game-strategy__promo-card .page-resources-rikvip-game-strategy__btn-primary {
  margin-top: auto; /* Push button to bottom */
  display: inline-block;
  align-self: center;
  padding: 12px 30px;
  font-size: 1em;
}

.page-resources-rikvip-game-strategy__view-all-promos {
  text-align: center;
  margin-top: 50px;
}

/* Security & Contact */
.page-resources-rikvip-game-strategy__two-col-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-resources-rikvip-game-strategy__col-item {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-resources-rikvip-game-strategy__col-item h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #26A9E0;
}

.page-resources-rikvip-game-strategy__col-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-resources-rikvip-game-strategy__col-item p {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-resources-rikvip-game-strategy__col-item .page-resources-rikvip-game-strategy__btn-primary,
.page-resources-rikvip-game-strategy__col-item .page-resources-rikvip-game-strategy__btn-text {
  margin-top: auto;
  display: inline-block;
  align-self: center;
}

/* FAQ */
.page-resources-rikvip-game-strategy__faq-list {
  margin-top: 50px;
}

.page-resources-rikvip-game-strategy__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-rikvip-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-rikvip-game-strategy__faq-item.active .page-resources-rikvip-game-strategy__faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: #f5f5f5;
}

.page-resources-rikvip-game-strategy__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-rikvip-game-strategy__faq-question:active {
  background: #eeeeee;
}

.page-resources-rikvip-game-strategy__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  color: #333333;
  pointer-events: none;
}

.page-resources-rikvip-game-strategy__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #26A9E0;
  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: 32px;
  height: 32px;
}

.page-resources-rikvip-game-strategy__faq-item.active .page-resources-rikvip-game-strategy__faq-toggle {
  transform: rotate(180deg);
  color: #EA7C07;
}

.page-resources-rikvip-game-strategy__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: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.page-resources-rikvip-game-strategy__faq-item.active .page-resources-rikvip-game-strategy__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-color: #d0d0d0;
}

.page-resources-rikvip-game-strategy__faq-answer p {
  margin: 0;
  color: #555555;
}

.page-resources-rikvip-game-strategy__faq-answer a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-rikvip-game-strategy__faq-answer a:hover {
  text-decoration: underline;
}

/* Related Resources */
.page-resources-rikvip-game-strategy__resource-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.page-resources-rikvip-game-strategy__resource-link {
  display: block;
  background: #FFFFFF;
  color: #26A9E0;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-resources-rikvip-game-strategy__resource-link:hover {
  background: #e0f2f7;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  color: #1a7fa0;
}

.page-resources-rikvip-game-strategy__view-all-resources {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-rikvip-game-strategy__hero-content h1 {
    font-size: 2.8em;
  }
  .page-resources-rikvip-game-strategy__section-title {
    font-size: 2em;
  }
  .page-resources-rikvip-game-strategy__game-card img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-resources-rikvip-game-strategy__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }
  .page-resources-rikvip-game-strategy__hero-content h1 {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-resources-rikvip-game-strategy__hero-content p {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-resources-rikvip-game-strategy__hero-cta-group {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
  .page-resources-rikvip-game-strategy__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-rikvip-game-strategy__intro-section,
  .page-resources-rikvip-game-strategy__games-overview-section,
  .page-resources-rikvip-game-strategy__strategy-section,
  .page-resources-rikvip-game-strategy__promotions-section,
  .page-resources-rikvip-game-strategy__security-contact-section,
  .page-resources-rikvip-game-strategy__faq-section,
  .page-resources-rikvip-game-strategy__related-resources-section {
    padding: 40px 0;
  }
  .page-resources-rikvip-game-strategy__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-rikvip-game-strategy__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-resources-rikvip-game-strategy__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-resources-rikvip-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-rikvip-game-strategy__feature-item img,
  .page-resources-rikvip-game-strategy__col-item img {
    height: auto;
    width: 100%;
    max-width: 200px; /* Constrain feature icons */
  }

  .page-resources-rikvip-game-strategy__faq-question {
    padding: 15px 20px;
  }
  .page-resources-rikvip-game-strategy__faq-question h3 {
    font-size: 1em;
  }
  .page-resources-rikvip-game-strategy__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-resources-rikvip-game-strategy__faq-item.active .page-resources-rikvip-game-strategy__faq-answer {
    padding: 15px 20px !important;
  }
  .page-resources-rikvip-game-strategy__resource-link {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-resources-rikvip-game-strategy__view-all-promos .page-resources-rikvip-game-strategy__btn-secondary,
  .page-resources-rikvip-game-strategy__view-all-resources .page-resources-rikvip-game-strategy__btn-primary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
}