/* style/index-game-features.css */\n\n/* Base styles for the page content */\n.page-index-game-features {\n  font-family: 'Arial', sans-serif;\n  color: #333333; /* Default text color for light background */\n  line-height: 1.6;\n  background-color: var(--secondary-color, #FFFFFF); /* Ensure consistency with body background */\n}\n\n/* Section common styles */\n.page-index-game-features__container {\n  max-width: 1200px;\n  margin: 0 auto;\n  padding: 0 20px;\n  box-sizing: border-box;\n}\n\n.page-index-game-features__section-title {\n  font-size: 2.5em;\n  color: #017439; /* Brand primary color for titles */\n  text-align: center;\n  margin-bottom: 20px;\n  font-weight: bold;\n}\n\n.page-index-game-features__section-description {\n  font-size: 1.1em;\n  text-align: center;\n  max-width: 800px;\n  margin: 0 auto 40px auto;\n  color: #555555;\n}\n\n/* Hero Section */\n.page-index-game-features__hero-section {\n  position: relative;\n  width: 100%;\n  height: 600px; /* Adjust as needed */\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  text-align: center;\n  overflow: hidden;\n  padding-top: var(--header-offset, 120px); /* Fixed header offset */\n  box-sizing: border-box;\n}\n\n.page-index-game-features__hero-image {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  object-fit: cover;\n  z-index: 1;\n}\n\n.page-index-game-features__hero-overlay {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */\n  z-index: 2;\n}\n\n.page-index-game-features__hero-content {\n  position: relative;\n  z-index: 3;\n  color: #FFFFFF;\n  max-width: 900px;\n  padding: 20px;\n}\n\n.page-index-game-features__hero-title {\n  font-size: 3.5em;\n  margin-bottom: 20px;\n  font-weight: bold;\n  color: #FFFFFF;\n}\n\n.page-index-game-features__hero-description {\n  font-size: 1.3em;\n  margin-bottom: 40px;\n  color: #f0f0f0;\n}\n\n.page-index-game-features__hero-cta {\n  display: flex;\n  gap: 20px;\n  justify-content: center;\n}\n\n/* Buttons */\n.page-index-game-features__btn-primary,\n.page-index-game-features__btn-secondary {\n  display: inline-block;\n  padding: 15px 30px;\n  border-radius: 8px;\n  text-decoration: none;\n  font-weight: bold;\n  font-size: 1.1em;\n  transition: all 0.3s ease;\n  cursor: pointer;\n  max-width: 100%;\n  box-sizing: border-box;\n  white-space: normal;\n  word-wrap: break-word;\n}\n\n.page-index-game-features__btn-primary {\n  background: #C30808; /* Custom color for register/login */\n  color: #FFFF00; /* Custom font color for register/login */\n  border: 2px solid #C30808;\n}\n\n.page-index-game-features__btn-primary:hover {\n  background: #a30606;\n  border-color: #a30606;\n}\n\n.page-index-game-features__btn-secondary {\n  background: transparent;\n  color: #FFFFFF;\n  border: 2px solid #FFFFFF;\n}\n\n.page-index-game-features__btn-secondary:hover {\n  background: #FFFFFF;\n  color: #C30808; /* Custom color for register/login */\n}\n\n/* Intro Section */\n.page-index-game-features__intro-section {\n  padding: 80px 0;\n  background-color: var(--secondary-color, #FFFFFF);\n  color: #333333;\n}\n\n.page-index-game-features__image-full-width {\n  display: block;\n  max-width: 100%;\n  height: auto;\n  margin: 40px auto;\n  border-radius: 10px;\n  box-shadow: 0 4px 15px rgba(0,0,0,0.1);\n}\n\n/* Features Grid */\n.page-index-game-features__features-grid {\n  padding: 80px 0;\n  background-color: #017439; /* Dark background for this section */\n  color: #FFFFFF;\n}\n\n.page-index-game-features__features-grid .page-index-game-features__section-title,\n.page-index-game-features__features-grid .page-index-game-features__section-description {\n  color: #FFFFFF;\n}\n\n.page-index-game-features__grid {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n  gap: 30px;\n  margin-top: 50px;\n}\n\n.page-index-game-features__feature-card {\n  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */\n  padding: 30px;\n  border-radius: 10px;\n  text-align: center;\n  box-shadow: 0 4px 10px rgba(0,0,0,0.2);\n  display: flex;\n  flex-direction: column;\n  justify-content: space-between;\n}\n\n.page-index-game-features__card-title {\n  font-size: 1.8em;\n  margin-bottom: 15px;\n  color: #FFFF00; /* Highlighted title on dark background */\n}\n\n.page-index-game-features__card-text {\n  font-size: 1em;\n  color: #f0f0f0;\n  flex-grow: 1;\n  margin-bottom: 20px;\n}\n\n.page-index-game-features__card-link {\n  display: inline-block;\n  margin-top: 15px;\n  color: #FFFF00; /* Link color on dark background */\n  text-decoration: none;\n  font-weight: bold;\n  border-bottom: 2px solid #FFFF00;\n  padding-bottom: 5px;\n}\n\n.page-index-game-features__card-link:hover {\n  color: #FFFFFF;\n  border-color: #FFFFFF;\n}\n\n/* Why Choose Us Section */\n.page-index-game-features__why-choose-us {\n  padding: 80px 0;\n  background-color: var(--secondary-color, #FFFFFF);\n  color: #333333;\n}\n\n.page-index-game-features__why-grid {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n  gap: 30px;\n  margin-top: 50px;\n}\n\n.page-index-game-features__why-item {\n  background: #FFFFFF;\n  padding: 30px;\n  border-radius: 10px;\n  box-shadow: 0 4px 15px rgba(0,0,0,0.1);\n  text-align: center;\n}\n\n.page-index-game-features__item-title {\n  font-size: 1.8em;\n  margin-bottom: 15px;\n  color: #017439;\n}\n\n.page-index-game-features__item-text {\n  font-size: 1em;\n  color: #555555;\n  margin-bottom: 20px;\n}\n\n.page-index-game-features__item-image {\n  max-width: 100%;\n  height: auto;\n  border-radius: 8px;\n  margin-top: 20px;\n  box-shadow: 0 2px 10px rgba(0,0,0,0.1);\n}\n\n/* Video Section */\n.page-index-game-features__video-section {\n  padding: 80px 0;\n  background-color: #017439; /* Dark background */\n  color: #FFFFFF;\n  text-align: center;\n  box-sizing: border-box;\n}\n\n.page-index-game-features__video-section .page-index-game-features__section-title,\n.page-index-game-features__video-section .page-index-game-features__section-description {\n  color: #FFFFFF;\n}\n\n.page-index-game-features__video-wrapper {\n  position: relative;\n  width: 100%;\n  max-width: 1000px; /* Max width for video */\n  margin: 40px auto;\n  aspect-ratio: 16 / 9; /* Maintain 16:9 aspect ratio */\n  background-color: #000;\n  border-radius: 10px;\n  overflow: hidden;\n  box-shadow: 0 8px 20px rgba(0,0,0,0.3);\n}\n\n.page-index-game-features__video {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  object-fit: cover;\n  display: block;\n  cursor: pointer; /* Indicate clickable video */\n}\n\n.page-index-game-features__video-cta {\n  margin-top: 30px;\n}\n\n/* How to Start Section */\n.page-index-game-features__how-to-start {\n  padding: 80px 0;\n  background-color: var(--secondary-color, #FFFFFF);\n  color: #333333;\n}\n\n.page-index-game-features__steps-grid {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n  gap: 30px;\n  margin-top: 50px;\n}\n\n.page-index-game-features__step-item {\n  background: #FFFFFF;\n  padding: 30px;\n  border-radius: 10px;\n  box-shadow: 0 4px 15px rgba(0,0,0,0.1);\n  text-align: center;\n}\n\n.page-index-game-features__step-icon {\n  width: 60px;\n  height: 60px;\n  background: #017439;\n  color: #FFFFFF;\n  border-radius: 50%;\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  font-size: 2em;\n  font-weight: bold;\n  margin: 0 auto 20px auto;\n}\n\n.page-index-game-features__step-title {\n  font-size: 1.6em;\n  margin-bottom: 10px;\n  color: #017439;\n}\n\n.page-index-game-features__step-text {\n  font-size: 1em;\n  color: #555555;\n  margin-bottom: 20px;\n}\n\n.page-index-game-features__download-app {\n  background: #f8f8f8;\n  padding: 40px;\n  border-radius: 10px;\n  text-align: center;\n  margin-top: 60px;\n  box-shadow: 0 2px 10px rgba(0,0,0,0.05);\n}\n\n.page-index-game-features__download-title {\n  font-size: 2em;\n  color: #017439;\n  margin-bottom: 15px;\n}\n\n.page-index-game-features__download-text {\n  font-size: 1.1em;\n  color: #555555;\n  margin-bottom: 30px;\n  max-width: 700px;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n/* FAQ Section */\n.page-index-game-features__faq-section {\n  padding: 80px 0;\n  background-color: #017439; /* Dark background */\n  color: #FFFFFF;\n}\n\n.page-index-game-features__faq-section .page-index-game-features__section-title {\n  color: #FFFFFF;\n}\n\n.page-index-game-features__faq-list {\n  max-width: 900px;\n  margin: 50px auto 0 auto;\n}\n\n.page-index-game-features__faq-item {\n  background: rgba(255, 255, 255, 0.1);\n  border-radius: 8px;\n  margin-bottom: 15px;\n  overflow: hidden;\n  box-shadow: 0 2px 8px rgba(0,0,0,0.1);\n}\n\n.page-index-game-features__faq-question {\n  display: flex;\n  justify-content: space-between;\n  align-items: center;\n  padding: 20px 25px;\n  cursor: pointer;\n  color: #FFFFFF;\n  font-size: 1.2em;\n  font-weight: bold;\n  transition: background-color 0.3s ease;\n}\n\n.page-index-game-features__faq-question:hover {\n  background-color: rgba(255, 255, 255, 0.2);\n}\n\n.page-index-game-features__faq-title {\n  margin: 0;\n  color: #FFFFFF;\n  font-size: 1.2em; /* Ensure title is visible */\n}\n\n.page-index-game-features__faq-toggle {\n  font-size: 1.5em;\n  font-weight: bold;\n  line-height: 1;\n  transition: transform 0.3s ease;\n}\n\n.page-index-game-features__faq-item.active .page-index-game-features__faq-toggle {\n  transform: rotate(45deg);\n}\n\n.page-index-game-features__faq-answer {\n  max-height: 0;\n  overflow: hidden;\n  padding: 0 25px; /* Initial padding 0 */\n  transition: max-height 0.3s ease, padding 0.3s ease;\n  color: #f0f0f0;\n}\n\n.page-index-game-features__faq-item.active .page-index-game-features__faq-answer {\n  max-height: 1000px !important; /* Sufficiently large value */\n  padding: 15px 25px 25px 25px; /* Adjust padding for expanded state */\n}\n\n.page-index-game-features__faq-answer p {\n  margin: 0;\n  color: #f0f0f0;\n}\n\n/* CTA Bottom Section */\n.page-index-game-features__cta-bottom {\n  padding: 80px 0;\n  text-align: center;\n  background-color: var(--secondary-color, #FFFFFF);\n  color: #333333;\n}\n\n.page-index-game-features__cta-bottom .page-index-game-features__section-title {\n  color: #017439;\n}\n\n.page-index-game-features__cta-buttons {\n  display: flex;\n  justify-content: center;\n  gap: 20px;\n  margin-top: 40px;\n  width: 100%;\n  max-width: 100%;\n  box-sizing: border-box;\n  overflow: hidden;\n}\n\n/* Responsive Styles */\n@media (max-width: 1024px) {\n  .page-index-game-features__hero-title {\n    font-size: 3em;\n  }\n  .page-index-game-features__hero-description {\n    font-size: 1.1em;\n  }\n  .page-index-game-features__section-title {\n    font-size: 2em;\n  }\n  .page-index-game-features__card-title,\n  .page-index-game-features__item-title,\n  .page-index-game-features__step-title {\n    font-size: 1.6em;\n  }\n}\n\n@media (max-width: 768px) {\n  .page-index-game-features {\n    font-size: 16px;\n    line-height: 1.6;\n  }\n\n  .page-index-game-features__hero-section {\n    height: 500px;\n    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */\n  }\n\n  .page-index-game-features__hero-content {\n    padding: 15px;\n  }\n\n  .page-index-game-features__hero-title {\n    font-size: 2.2em;\n  }\n\n  .page-index-game-features__hero-description {\n    font-size: 1em;\n  }\n\n  .page-index-game-features__hero-cta {\n    flex-direction: column;\n    gap: 15px;\n  }\n\n  .page-index-game-features__btn-primary,\n  .page-index-game-features__btn-secondary {\n    padding: 12px 20px;\n    font-size: 1em;\n    max-width: 100% !important;\n    width: 100% !important;\n    box-sizing: border-box !important;\n    white-space: normal !important;\n    word-wrap: break-word !important;\n  }\n\n  .page-index-game-features__cta-buttons {\n    flex-direction: column;\n    gap: 15px;\n    max-width: 100% !important;\n    width: 100% !important;\n    box-sizing: border-box !important;\n    padding-left: 15px;\n    padding-right: 15px;\n    overflow: hidden !important;\n  }\n\n  .page-index-game-features__section-title {\n    font-size: 1.8em;\n  }\n\n  .page-index-game-features__section-description {\n    font-size: 0.95em;\n    margin-bottom: 30px;\n  }\n\n  .page-index-game-features__grid,\n  .page-index-game-features__why-grid,\n  .page-index-game-features__steps-grid {\n    grid-template-columns: 1fr;\n    gap: 20px;\n  }\n\n  .page-index-game-features__feature-card,\n  .page-index-game-features__why-item,\n  .page-index-game-features__step-item {\n    padding: 25px;\n  }\n\n  .page-index-game-features__card-title,\n  .page-index-game-features__item-title,\n  .page-index-game-features__step-title {\n    font-size: 1.4em;\n  }\n\n  .page-index-game-features__image-full-width,\n  .page-index-game-features__item-image {\n    max-width: 100% !important;\n    height: auto !important;\n    display: block !important;\n  }\n\n  .page-index-game-features__intro-section,\n  .page-index-game-features__features-grid,\n  .page-index-game-features__why-choose-us,\n  .page-index-game-features__video-section,\n  .page-index-game-features__how-to-start,\n  .page-index-game-features__faq-section,\n  .page-index-game-features__cta-bottom {\n    padding: 50px 0;\n  }\n\n  .page-index-game-features__container {\n    padding: 0 15px; /* Adjust container padding for mobile */\n  }\n\n  .page-index-game-features__video-section {\n    padding-top: var(--header-offset, 120px) !important; /* Ensure video section has header offset on mobile */\n  }\n\n  .page-index-game-features__video-wrapper {\n    max-width: 100% !important;\n    width: 100% !important;\n    box-sizing: border-box !important;\n    overflow: hidden !important;\n  }\n\n  .page-index-game-features__video {\n    max-width: 100% !important;\n    width: 100% !important;\n    height: auto !important;\n    display: block !important;\n  }\n\n  .page-index-game-features__download-app {\n    padding: 30px;\n  }\n  .page-index-game-features__download-title {\n    font-size: 1.6em;\n  }\n\n  .page-index-game-features__faq-question {\n    padding: 15px 20px;\n    font-size: 1.1em;\n  }\n  .page-index-game-features__faq-answer {\n    padding: 0 20px;\n  }\n  .page-index-game-features__faq-item.active .page-index-game-features__faq-answer {\n    padding: 15px 20px 20px 20px;\n  }\n}\n\n@media (max-width: 480px) {\n  .page-index-game-features__hero-section {\n    height: 400px;\n  }\n  .page-index-game-features__hero-title {\n    font-size: 1.8em;\n  }\n  .page-index-game-features__hero-description {\n    font-size: 0.9em;\n  }\n  .page-index-game-features__btn-primary,\n  .page-index-game-features__btn-secondary {\n    padding: 10px 15px;\n    font-size: 0.9em;\n  }\n}\n\n/* Ensure all content images are responsive and not too small */\n.page-index-game-features img {\n  max-width: 100%;\n  height: auto;\n  display: block; /* Important for preventing extra space below images */\n}\n\n/* Specific content area image rules to prevent small sizes */\n/* These rules apply to any img within the main page content, */\n/* excluding header/footer managed by shared.css */\n.page-index-game-features__intro-section img,\n.page-index-game-features__why-item img {\n  min-width: 200px; /* Enforce minimum size */\n  min-height: 200px;\n  object-fit: cover; /* Ensure images cover their area without distortion */\n}\n\n/* Image color filter restriction (MUST BE ABSENT) */\n/* No filter properties are used on images as per strict requirements */\n\n/* Contrast fixes for specific dark/light sections if needed, though designed to be compliant */\n.page-index-game-features__dark-bg {\n  color: #ffffff; /* Deep contrast for dark background */\n}\n.page-index-game-features__dark-bg .page-index-game-features__section-title,\n.page-index-game-features__dark-bg .page-index-game-features__section-description,\n.page-index-game-features__dark-bg .page-index-game-features__card-text,\n.page-index-game-features__dark-bg .page-index-game-features__faq-question,\n.page-index-game-features__dark-bg .page-index-game-features__faq-title,\n.page-index-game-features__dark-bg .page-index-game-features__faq-answer p {\n  color: #ffffff;\n}\n\n.page-index-game-features__light-bg {\n  color: #333333; /* Deep contrast for light background */\n}\n.page-index-game-features__light-bg .page-index-game-features__section-title,\n.page-index-game-features__light-bg .page-index-game-features__section-description,\n.page-index-game-features__light-bg .page-index-game-features__item-text,\n.page-index-game-features__light-bg .page-index-game-features__step-text,\n.page-index-game-features__light-bg .page-index-game-features__download-text {\n  color: #333333;\n}\n.page-index-game-features__light-bg .page-index-game-features__item-title,\n.page-index-game-features__light-bg .page-index-game-features__step-title,\n.page-index-game-features__light-bg .page-index-game-features__download-title {\n  color: #017439; /* Brand primary color on light background */\n}