.page-index-game-features {
  --primary-color: #113B7A;
  --secondary-color: #1D5FD1;
  --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  --card-bg: #10233F;
  --text-main: #F3F8FF;
  --text-secondary: #AFC4E8;
  --border-color: #244D84;
  --glow-color: #4FA8FF;
  --gold-color: #F2C14E;
  --divider-color: #1B3357;
  --deep-navy: #08162B;

  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* Default text color for page content on deep navy body */
  background-color: transparent; /* Body background from shared.css */
}

.page-index-game-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-index-game-features__section-title {
  font-size: 38px;
  font-weight: bold;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-index-game-features__text-block {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-index-game-features__highlight {
  color: var(--gold-color);
}

.page-index-game-features__keyword {
  font-weight: bold;
  color: var(--gold-color);
}

/* HERO Section */
.page-index-game-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-index-game-features__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure it takes full width of its parent */
}

.page-index-game-features__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index-game-features__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-index-game-features__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-index-game-features__hero-description {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-main);
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-index-game-features__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-index-game-features__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

/* Introduction Section */
.page-index-game-features__introduction-section {
  background-color: var(--deep-navy);
  color: var(--text-main);
  padding: 80px 0;
}

.page-index-game-features__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-game-features__feature-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-game-features__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-index-game-features__feature-card img {
  
  
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-game-features__feature-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-index-game-features__feature-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Quick Access Section */
.page-index-game-features__quick-access-section {
  background-color: var(--primary-color);
  padding: 80px 0;
}

.page-index-game-features__quick-access-section .page-index-game-features__section-title {
  color: #ffffff;
}

.page-index-game-features__quick-access-section .page-index-game-features__text-block {
  color: var(--text-secondary);
}

.page-index-game-features__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-index-game-features__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-index-game-features__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* Game Features Section */
.page-index-game-features__game-features-section {
  background-color: var(--deep-navy);
  padding: 80px 0;
}

.page-index-game-features__game-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-game-features__game-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-game-features__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-index-game-features__game-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-index-game-features__game-card-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-color);
  padding: 20px 25px 10px 25px;
  line-height: 1.4;
}

.page-index-game-features__game-card-title a {
  color: var(--gold-color);
  text-decoration: none;
}

.page-index-game-features__game-card-title a:hover {
  text-decoration: underline;
}

.page-index-game-features__game-card-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 0 25px 20px 25px;
  flex-grow: 1;
}

.page-index-game-features__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 0 25px 25px 25px;
  border: none;
  cursor: pointer;
  max-width: calc(100% - 50px);
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-index-game-features__btn-secondary:hover {
  background: #1A52B7;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Promotions Section */
.page-index-game-features__promotions-section {
  background-color: var(--primary-color);
  padding: 80px 0;
}

.page-index-game-features__promotions-section .page-index-game-features__section-title {
  color: #ffffff;
}

.page-index-game-features__promotions-section .page-index-game-features__text-block {
  color: var(--text-secondary);
}

.page-index-game-features__promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-game-features__promo-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-game-features__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-index-game-features__promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index-game-features__promo-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-color);
  padding: 20px 25px 10px 25px;
  line-height: 1.4;
}

.page-index-game-features__promo-title a {
  color: var(--gold-color);
  text-decoration: none;
}

.page-index-game-features__promo-title a:hover {
  text-decoration: underline;
}

.page-index-game-features__promo-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 0 25px 20px 25px;
  flex-grow: 1;
}

/* Security & Support Section */
.page-index-game-features__security-support-section {
  background-color: var(--deep-navy);
  padding: 80px 0;
}

.page-index-game-features__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-game-features__info-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-game-features__info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-index-game-features__info-card img {
  
  
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-game-features__info-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-index-game-features__info-title a {
  color: var(--gold-color);
  text-decoration: none;
}

.page-index-game-features__info-title a:hover {
  text-decoration: underline;
}

.page-index-game-features__info-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* FAQ Section */
.page-index-game-features__faq-section {
  background-color: var(--primary-color);
  padding: 80px 0;
}

.page-index-game-features__faq-section .page-index-game-features__section-title {
  color: #ffffff;
}

.page-index-game-features__faq-section .page-index-game-features__text-block {
  color: var(--text-secondary);
}

.page-index-game-features__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

details.page-index-game-features__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

details.page-index-game-features__faq-item summary.page-index-game-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-main);
}

details.page-index-game-features__faq-item summary.page-index-game-features__faq-question::-webkit-details-marker {
  display: none;
}

details.page-index-game-features__faq-item summary.page-index-game-features__faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.page-index-game-features__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--gold-color);
}

.page-index-game-features__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-main);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  line-height: 1;
}

details.page-index-game-features__faq-item .page-index-game-features__faq-answer {
  padding: 0 25px 25px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 8px 8px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.page-index-game-features__faq-answer p {
  margin: 0;
  padding-top: 15px;
  color: var(--text-secondary);
}

/* Blog Section */
.page-index-game-features__blog-section {
  background-color: var(--deep-navy);
  padding: 80px 0;
}

.page-index-game-features__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-game-features__blog-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-game-features__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-index-game-features__blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-index-game-features__blog-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-color);
  padding: 20px 25px 10px 25px;
  line-height: 1.4;
}

.page-index-game-features__blog-title a {
  color: var(--gold-color);
  text-decoration: none;
}

.page-index-game-features__blog-title a:hover {
  text-decoration: underline;
}

.page-index-game-features__blog-date {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 0 25px;
  margin-bottom: 10px;
}

.page-index-game-features__blog-summary {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 0 25px 20px 25px;
  flex-grow: 1;
}

.page-index-game-features__view-all {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-game-features__section-title {
    font-size: 32px;
  }
  .page-index-game-features__hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-index-game-features__hero-description {
    font-size: 17px;
  }
  .page-index-game-features__cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }
  .page-index-game-features__game-card-title, .page-index-game-features__promo-title, .page-index-game-features__blog-title {
    font-size: 20px;
  }
  .page-index-game-features__game-card-description, .page-index-game-features__promo-description, .page-index-game-features__blog-summary {
    font-size: 15px;
  }
  .page-index-game-features__feature-title, .page-index-game-features__info-title {
    font-size: 20px;
  }
  details.page-index-game-features__faq-item summary.page-index-game-features__faq-question {
    padding: 15px 20px;
  }
  .page-index-game-features__faq-qtext {
    font-size: 17px;
  }
  .page-index-game-features__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
}

@media (max-width: 768px) {
  .page-index-game-features__container {
    padding: 30px 15px;
  }
  .page-index-game-features__hero-section {
    padding-top: 10px !important; /* body handles header offset */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-game-features__hero-image img {
    border-radius: 8px;
  }
  .page-index-game-features__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-index-game-features__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-index-game-features__cta-button {
    padding: 14px 30px;
    font-size: 17px;
  }

  .page-index-game-features__section-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .page-index-game-features__text-block {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-index-game-features__features-grid, .page-index-game-features__game-card-grid, .page-index-game-features__promos-grid, .page-index-game-features__info-grid, .page-index-game-features__blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }
  .page-index-game-features__feature-card, .page-index-game-features__game-card, .page-index-game-features__promo-card, .page-index-game-features__info-card, .page-index-game-features__blog-card {
    padding: 25px;
  }
  .page-index-game-features__game-card img, .page-index-game-features__promo-card img, .page-index-game-features__blog-card img {
    
  }
  .page-index-game-features__btn-primary, .page-index-game-features__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-game-features__button-group {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
  }
  .page-index-game-features__game-card-title, .page-index-game-features__promo-title, .page-index-game-features__blog-title {
    font-size: 20px;
    padding: 15px 15px 10px 15px;
  }
  .page-index-game-features__game-card-description, .page-index-game-features__promo-description, .page-index-game-features__blog-summary {
    font-size: 15px;
    padding: 0 15px 15px 15px;
  }
  .page-index-game-features__blog-date {
    padding: 0 15px;
  }
  .page-index-game-features__btn-secondary {
    margin: 0 15px 15px 15px;
  }
  details.page-index-game-features__faq-item summary.page-index-game-features__faq-question {
    padding: 15px;
  }
  .page-index-game-features__faq-qtext {
    font-size: 16px;
  }
  .page-index-game-features__faq-toggle {
    font-size: 22px;
    width: 22px;
  }
  details.page-index-game-features__faq-item .page-index-game-features__faq-answer {
    padding: 0 15px 15px;
  }
  .page-index-game-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-index-game-features__introduction-section, .page-index-game-features__quick-access-section, .page-index-game-features__game-features-section, .page-index-game-features__promotions-section, .page-index-game-features__security-support-section, .page-index-game-features__faq-section, .page-index-game-features__blog-section {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .page-index-game-features__section-title {
    font-size: 24px;
  }
  .page-index-game-features__hero-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
  .page-index-game-features__hero-description {
    font-size: 15px;
  }
  .page-index-game-features__cta-button {
    font-size: 16px;
    padding: 12px 25px;
  }
  .page-index-game-features__feature-title, .page-index-game-features__info-title {
    font-size: 18px;
  }
  .page-index-game-features__game-card-title, .page-index-game-features__promo-title, .page-index-game-features__blog-title {
    font-size: 18px;
  }
  .page-index-game-features__text-block, .page-index-game-features__feature-description, .page-index-game-features__game-card-description, .page-index-game-features__promo-description, .page-index-game-features__info-description, .page-index-game-features__blog-summary, .page-index-game-features__blog-date, .page-index-game-features__faq-answer p {
    font-size: 14px;
  }
  .page-index-game-features__faq-qtext {
    font-size: 15px;
  }
  .page-index-game-features__faq-toggle {
    font-size: 20px;
    width: 20px;
  }
}