/* style/resources-reliable-reward-game-tips.css */
:root {
  --primary-color: #1A73E8;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #0a0a0a;
  --background-light: #f1f3f5;
  --card-background: #ffffff;
  --border-color: #e0e0e0;
}

.page-resources-reliable-reward-game-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so default text color is light */
  background-color: var(--background-dark);
  padding-top: 120px; /* Adjust for fixed header */
}

@media (max-width: 768px) {
  .page-resources-reliable-reward-game-tips {
    padding-top: 100px !important; /* Mobile adjustment for fixed header */
  }
}

.page-resources-reliable-reward-game-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-reliable-reward-game-tips__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-light);
}

.page-resources-reliable-reward-game-tips__text-block {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-resources-reliable-reward-game-tips__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-resources-reliable-reward-game-tips__cta-button--primary {
  background: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-reliable-reward-game-tips__cta-button--primary:hover {
  background: #155bb5;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-reliable-reward-game-tips__cta-button--secondary {
  background: var(--secondary-color);
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-reliable-reward-game-tips__cta-button--secondary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Hero Banner */
.page-resources-reliable-reward-game-tips__hero-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color), #0a0a0a 70%); /* Darker gradient for contrast */
  color: var(--text-light);
  padding-top: 180px; /* Desktop padding for fixed header */
}

.page-resources-reliable-reward-game-tips__hero-content-wrapper {
  max-width: 800px;
  margin-bottom: 40px;
}

.page-resources-reliable-reward-game-tips__main-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
}

.page-resources-reliable-reward-game-tips__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-resources-reliable-reward-game-tips__hero-image-wrapper {
  width: 100%;
  max-width: 900px;
}

.page-resources-reliable-reward-game-tips__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Introduction Section */
.page-resources-reliable-reward-game-tips__introduction-section {
  padding: 60px 0;
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-resources-reliable-reward-game-tips__introduction-section .page-resources-reliable-reward-game-tips__section-title,
.page-resources-reliable-reward-game-tips__introduction-section .page-resources-reliable-reward-game-tips__text-block {
  color: var(--text-dark);
}

/* Core Games Section */
.page-resources-reliable-reward-game-tips__core-games-section {
  padding: 60px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-resources-reliable-reward-game-tips__game-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-reliable-reward-game-tips__game-card {
  background: var(--card-background);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-reliable-reward-game-tips__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-reliable-reward-game-tips__game-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Minimum size requirement */
}

.page-resources-reliable-reward-game-tips__game-card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-resources-reliable-reward-game-tips__game-card-description {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Promotion Section */
.page-resources-reliable-reward-game-tips__promotion-section {
  padding: 60px 0;
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-resources-reliable-reward-game-tips__promotion-section .page-resources-reliable-reward-game-tips__section-title,
.page-resources-reliable-reward-game-tips__promotion-section .page-resources-reliable-reward-game-tips__text-block {
  color: var(--text-dark);
}

.page-resources-reliable-reward-game-tips__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-reliable-reward-game-tips__promo-card {
  background: var(--primary-color);
  color: var(--text-light);
  border-radius: 12px;
  box-shadow: 0 4px 15px 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;
  justify-content: space-between;
}

.page-resources-reliable-reward-game-tips__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-reliable-reward-game-tips__promo-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-resources-reliable-reward-game-tips__promo-description {
  font-size: 15px;
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* FAQ Section */
.page-resources-reliable-reward-game-tips__faq-section {
  padding: 60px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-resources-reliable-reward-game-tips__faq-section .page-resources-reliable-reward-game-tips__section-title {
  color: var(--text-light);
}

.page-resources-reliable-reward-game-tips__faq-list {
  margin-top: 40px;
}

.page-resources-reliable-reward-game-tips__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-reliable-reward-game-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 20px;
  opacity: 0;
}

.page-resources-reliable-reward-game-tips__faq-item.active .page-resources-reliable-reward-game-tips__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: #1e1e1e; /* Slightly lighter dark background for answer */
  border-radius: 0 0 8px 8px;
  color: #f0f0f0;
}

.page-resources-reliable-reward-game-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #1a1a1a; /* Dark background for question */
  border: 1px solid #333333;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-light);
}

.page-resources-reliable-reward-game-tips__faq-question:hover {
  background: #2a2a2a;
  border-color: #444444;
}

.page-resources-reliable-reward-game-tips__faq-question:active {
  background: #3a3a3a;
}

.page-resources-reliable-reward-game-tips__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-light);
}

.page-resources-reliable-reward-game-tips__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #888;
  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-reliable-reward-game-tips__faq-item.active .page-resources-reliable-reward-game-tips__faq-toggle {
  color: var(--secondary-color);
  transform: rotate(45deg);
}

/* Blog Section */
.page-resources-reliable-reward-game-tips__blog-section {
  padding: 60px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-resources-reliable-reward-game-tips__blog-section .page-resources-reliable-reward-game-tips__section-title {
  color: var(--text-light);
}

.page-resources-reliable-reward-game-tips__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-reliable-reward-game-tips__blog-card {
  background: var(--card-background);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
}

.page-resources-reliable-reward-game-tips__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-reliable-reward-game-tips__blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  min-height: 200px; /* Minimum size requirement */
}

.page-resources-reliable-reward-game-tips__blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-resources-reliable-reward-game-tips__blog-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-resources-reliable-reward-game-tips__blog-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-reliable-reward-game-tips__blog-title a:hover {
  color: #155bb5;
  text-decoration: underline;
}

.page-resources-reliable-reward-game-tips__blog-excerpt {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-resources-reliable-reward-game-tips__blog-date {
  font-size: 13px;
  color: #777;
  margin-top: auto; /* Push to bottom */
}

.page-resources-reliable-reward-game-tips__view-all-button {
  text-align: center;
  margin-top: 50px;
}

/* General image responsiveness */
.page-resources-reliable-reward-game-tips img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-reliable-reward-game-tips__main-title {
    font-size: 42px;
  }
  .page-resources-reliable-reward-game-tips__hero-description {
    font-size: 18px;
  }
  .page-resources-reliable-reward-game-tips__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-resources-reliable-reward-game-tips {
    padding-top: 160px !important;
  }
  .page-resources-reliable-reward-game-tips__hero-banner {
    flex-direction: column;
    padding: 40px 15px;
    padding-top: 160px !important; /* Mobile padding for fixed header */
  }
  .page-resources-reliable-reward-game-tips__hero-content-wrapper {
    margin-bottom: 30px;
  }
  .page-resources-reliable-reward-game-tips__main-title {
    font-size: 32px;
  }
  .page-resources-reliable-reward-game-tips__hero-description {
    font-size: 16px;
  }
  .page-resources-reliable-reward-game-tips__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-resources-reliable-reward-game-tips__container {
    padding: 0 15px;
  }
  .page-resources-reliable-reward-game-tips__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-resources-reliable-reward-game-tips__introduction-section,
  .page-resources-reliable-reward-game-tips__core-games-section,
  .page-resources-reliable-reward-game-tips__promotion-section,
  .page-resources-reliable-reward-game-tips__faq-section,
  .page-resources-reliable-reward-game-tips__blog-section {
    padding: 40px 0;
  }
  .page-resources-reliable-reward-game-tips__game-carousel,
  .page-resources-reliable-reward-game-tips__promotion-grid,
  .page-resources-reliable-reward-game-tips__blog-grid {
    gap: 20px;
  }
  .page-resources-reliable-reward-game-tips__faq-question h3 {
    font-size: 16px;
  }
  .page-resources-reliable-reward-game-tips__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-resources-reliable-reward-game-tips__faq-item.active .page-resources-reliable-reward-game-tips__faq-answer {
    padding: 15px !important;
  }
  .page-resources-reliable-reward-game-tips__blog-image {
    height: 180px;
  }
  .page-resources-reliable-reward-game-tips__blog-title {
    font-size: 18px;
  }
  /* Mobile specific image and container overrides */
  .page-resources-reliable-reward-game-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-reliable-reward-game-tips__hero-banner,
  .page-resources-reliable-reward-game-tips__introduction-section .page-resources-reliable-reward-game-tips__container,
  .page-resources-reliable-reward-game-tips__core-games-section .page-resources-reliable-reward-game-tips__container,
  .page-resources-reliable-reward-game-tips__promotion-section .page-resources-reliable-reward-game-tips__container,
  .page-resources-reliable-reward-game-tips__faq-section .page-resources-reliable-reward-game-tips__container,
  .page-resources-reliable-reward-game-tips__blog-section .page-resources-reliable-reward-game-tips__container,
  .page-resources-reliable-reward-game-tips__game-card,
  .page-resources-reliable-reward-game-tips__promo-card,
  .page-resources-reliable-reward-game-tips__blog-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-reliable-reward-game-tips__introduction-section .page-resources-reliable-reward-game-tips__container,
  .page-resources-reliable-reward-game-tips__core-games-section .page-resources-reliable-reward-game-tips__container,
  .page-resources-reliable-reward-game-tips__promotion-section .page-resources-reliable-reward-game-tips__container,
  .page-resources-reliable-reward-game-tips__faq-section .page-resources-reliable-reward-game-tips__container,
  .page-resources-reliable-reward-game-tips__blog-section .page-resources-reliable-reward-game-tips__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}