/* style/resources-safe-vip-game-download-tips.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-color: #C30808;
  --login-button-color: #C30808;
  --background-color: #FFFFFF;
  --register-login-font-color: #FFFF00;
  --text-color-dark-bg: #FFFFFF;
  --text-color-light-bg: #333333;
}

.page-resources-safe-vip-game-download-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-light-bg); /* Default text color for light body background */
  background-color: var(--background-color);
}

.page-resources-safe-vip-game-download-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-safe-vip-game-download-tips__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure header offset */
  color: var(--text-color-dark-bg);
  background-color: var(--primary-color);
  overflow: hidden;
}

.page-resources-safe-vip-game-download-tips__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
  filter: none; /* Ensure no filter changes image color */
}

.page-resources-safe-vip-game-download-tips__hero-section .page-resources-safe-vip-game-download-tips__container {
  position: relative;
  z-index: 2;
}

.page-resources-safe-vip-game-download-tips__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--text-color-dark-bg);
  line-height: 1.2;
}

.page-resources-safe-vip-game-download-tips__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-safe-vip-game-download-tips__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-safe-vip-game-download-tips__btn-primary,
.page-resources-safe-vip-game-download-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-resources-safe-vip-game-download-tips__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-color-dark-bg);
  border: 2px solid var(--primary-color);
}

.page-resources-safe-vip-game-download-tips__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-resources-safe-vip-game-download-tips__btn-secondary {
  background-color: transparent;
  color: var(--text-color-dark-bg);
  border: 2px solid var(--text-color-dark-bg);
}

.page-resources-safe-vip-game-download-tips__btn-secondary:hover {
  background-color: var(--text-color-dark-bg);
  color: var(--primary-color);
}

/* Override for light background sections */
.page-resources-safe-vip-game-download-tips__light-bg .page-resources-safe-vip-game-download-tips__btn-secondary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-resources-safe-vip-game-download-tips__light-bg .page-resources-safe-vip-game-download-tips__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-color-dark-bg);
}

.page-resources-safe-vip-game-download-tips__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-resources-safe-vip-game-download-tips__dark-bg .page-resources-safe-vip-game-download-tips__section-title,
.page-resources-safe-vip-game-download-tips__dark-bg h2,
.page-resources-safe-vip-game-download-tips__dark-bg h3,
.page-resources-safe-vip-game-download-tips__dark-bg p,
.page-resources-safe-vip-game-download-tips__dark-bg li {
  color: var(--text-color-dark-bg);
}

.page-resources-safe-vip-game-download-tips__dark-bg .page-resources-safe-vip-game-download-tips__inline-link {
  color: var(--register-login-font-color);
}

.page-resources-safe-vip-game-download-tips__dark-bg .page-resources-safe-vip-game-download-tips__inline-link:hover {
  color: var(--secondary-color);
}

.page-resources-safe-vip-game-download-tips__light-bg .page-resources-safe-vip-game-download-tips__inline-link {
  color: var(--primary-color);
}

.page-resources-safe-vip-game-download-tips__light-bg .page-resources-safe-vip-game-download-tips__inline-link:hover {
  color: darken(var(--primary-color), 10%);
}

.page-resources-safe-vip-game-download-tips__content-section,
.page-resources-safe-vip-game-download-tips__download-guide,
.page-resources-safe-vip-game-download-tips__safety-tips,
.page-resources-safe-vip-game-download-tips__game-features,
.page-resources-safe-vip-game-download-tips__promotions,
.page-resources-safe-vip-game-download-tips__faq-section,
.page-resources-safe-vip-game-download-tips__cta-section {
  padding: 80px 0;
}

.page-resources-safe-vip-game-download-tips__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-safe-vip-game-download-tips__features-grid,
.page-resources-safe-vip-game-download-tips__game-grid,
.page-resources-safe-vip-game-download-tips__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-safe-vip-game-download-tips__card {
  background-color: var(--secondary-color);
  color: var(--text-color-light-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #e0e0e0; /* Added for contrast */
}

.page-resources-safe-vip-game-download-tips__feature-icon,
.page-resources-safe-vip-game-download-tips__guide-image,
.page-resources-safe-vip-game-download-tips__content-image,
.page-resources-safe-vip-game-download-tips__game-image,
.page-resources-safe-vip-game-download-tips__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: none; /* Ensure no filter changes image color */
}

.page-resources-safe-vip-game-download-tips__feature-title,
.page-resources-safe-vip-game-download-tips__guide-title,
.page-resources-safe-vip-game-download-tips__game-title,
.page-resources-safe-vip-game-download-tips__promo-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-resources-safe-vip-game-download-tips__platform-guide {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-resources-safe-vip-game-download-tips__guide-card {
  flex: 1 1 45%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-safe-vip-game-download-tips__guide-list {
  text-align: left;
  margin-top: 20px;
  padding-left: 20px;
  margin-bottom: 30px;
}

.page-resources-safe-vip-game-download-tips__guide-list li {
  margin-bottom: 10px;
  color: var(--text-color-light-bg);
}

.page-resources-safe-vip-game-download-tips__dark-bg .page-resources-safe-vip-game-download-tips__card {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-color-dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-resources-safe-vip-game-download-tips__dark-bg .page-resources-safe-vip-game-download-tips__feature-title,
.page-resources-safe-vip-game-download-tips__dark-bg .page-resources-safe-vip-game-download-tips__guide-title,
.page-resources-safe-vip-game-download-tips__dark-bg .page-resources-safe-vip-game-download-tips__game-title,
.page-resources-safe-vip-game-download-tips__dark-bg .page-resources-safe-vip-game-download-tips__promo-title {
  color: var(--secondary-color);
}

.page-resources-safe-vip-game-download-tips__tips-list {
  text-align: left;
  max-width: 800px;
  margin: 30px auto;
  padding-left: 25px;
}

.page-resources-safe-vip-game-download-tips__tips-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-color-light-bg);
}

.page-resources-safe-vip-game-download-tips__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-resources-safe-vip-game-download-tips__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-color-dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-resources-safe-vip-game-download-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-touch-callout: none; /* Disable callout on iOS */
  -webkit-user-select: none; /* Disable text selection on iOS */
  -khtml-user-select: none; /* Disable text selection on Konqueror */
  -moz-user-select: none; /* Disable text selection on Firefox */
  -ms-user-select: none; /* Disable text selection on Internet Explorer/Edge */
  user-select: none; /* Disable text selection */
  list-style: none; /* For details/summary */
}

.page-resources-safe-vip-game-download-tips__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-resources-safe-vip-game-download-tips__faq-qtext {
  flex-grow: 1;
  color: var(--text-color-dark-bg);
}

.page-resources-safe-vip-game-download-tips__faq-toggle {
  font-size: 1.5em;
  margin-left: 10px;
  transition: transform 0.3s ease;
  color: var(--text-color-dark-bg);
}

.page-resources-safe-vip-game-download-tips__faq-item[open] .page-resources-safe-vip-game-download-tips__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-safe-vip-game-download-tips__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1.1em;
  color: var(--text-color-dark-bg);
}

.page-resources-safe-vip-game-download-tips__faq-answer p {
  margin: 0;
  text-align: left;
}

.page-resources-safe-vip-game-download-tips__copyright {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9em;
  color: var(--text-color-light-bg);
  background-color: #f0f0f0;
}

.page-resources-safe-vip-game-download-tips__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-color-dark-bg);
}

.page-resources-safe-vip-game-download-tips__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-color-light-bg);
}

@media (max-width: 992px) {
  .page-resources-safe-vip-game-download-tips__hero-title {
    font-size: 3em;
  }
  .page-resources-safe-vip-game-download-tips__section-title {
    font-size: 2em;
  }
  .page-resources-safe-vip-game-download-tips__guide-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .page-resources-safe-vip-game-download-tips__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
  }
  .page-resources-safe-vip-game-download-tips__hero-title {
    font-size: 2.2em;
  }
  .page-resources-safe-vip-game-download-tips__hero-description {
    font-size: 1.1em;
  }
  .page-resources-safe-vip-game-download-tips__section-title {
    font-size: 1.8em;
  }
  .page-resources-safe-vip-game-download-tips__content-section,
  .page-resources-safe-vip-game-download-tips__download-guide,
  .page-resources-safe-vip-game-download-tips__safety-tips,
  .page-resources-safe-vip-game-download-tips__game-features,
  .page-resources-safe-vip-game-download-tips__promotions,
  .page-resources-safe-vip-game-download-tips__faq-section,
  .page-resources-safe-vip-game-download-tips__cta-section {
    padding: 50px 0;
  }
  .page-resources-safe-vip-game-download-tips__features-grid,
  .page-resources-safe-vip-game-download-tips__game-grid,
  .page-resources-safe-vip-game-download-tips__promo-grid {
    grid-template-columns: 1fr;
  }
  
  /* Mobile responsive for images */
  .page-resources-safe-vip-game-download-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-safe-vip-game-download-tips__section,
  .page-resources-safe-vip-game-download-tips__card,
  .page-resources-safe-vip-game-download-tips__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile responsive for buttons */
  .page-resources-safe-vip-game-download-tips__cta-button,
  .page-resources-safe-vip-game-download-tips__btn-primary,
  .page-resources-safe-vip-game-download-tips__btn-secondary,
  .page-resources-safe-vip-game-download-tips a[class*="button"],
  .page-resources-safe-vip-game-download-tips a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-safe-vip-game-download-tips__cta-buttons,
  .page-resources-safe-vip-game-download-tips__button-group,
  .page-resources-safe-vip-game-download-tips__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Ensure vertical stacking for buttons */
  }
}