/* style/game-guides-hubet-game-features.css */

:root {
  --page-game-guides-hubet-game-features-primary-color: #0A192F;
  --page-game-guides-hubet-game-features-secondary-color: #FFD700;
  --page-game-guides-hubet-game-features-text-light: #F8F8F8;
  --page-game-guides-hubet-game-features-text-dark: #333333;
  --page-game-guides-hubet-game-features-background-dark: #0A192F;
  --page-game-guides-hubet-game-features-background-light: #FFFFFF;
  --page-game-guides-hubet-game-features-accent-color: #0028ff; /* Complementary to auxiliary for highlights */
  --page-game-guides-hubet-game-features-border-color: #334455;
  --page-game-guides-hubet-game-features-shadow-color: rgba(0, 0, 0, 0.2);
}

.page-game-guides-hubet-game-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-game-guides-hubet-game-features-text-dark);
  background-color: var(--page-game-guides-hubet-game-features-background-light);
}

.page-game-guides-hubet-game-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-hubet-game-features__section {
  padding: 60px 0;
}

.page-game-guides-hubet-game-features__section:nth-child(even) {
  background-color: #f9f9f9; /* Slightly lighter background for contrast */
}

.page-game-guides-hubet-game-features__hero {
  background: linear-gradient(135deg, var(--page-game-guides-hubet-game-features-primary-color) 0%, #1A2B47 100%);
  color: var(--page-game-guides-hubet-game-features-text-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides-hubet-game-features__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-game-guides-hubet-game-features__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--page-game-guides-hubet-game-features-secondary-color);
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px var(--page-game-guides-hubet-game-features-shadow-color);
}

.page-game-guides-hubet-game-features__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  position: relative;
  z-index: 1;
}

.page-game-guides-hubet-game-features__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.page-game-guides-hubet-game-features__btn--primary {
  background-color: var(--page-game-guides-hubet-game-features-secondary-color);
  color: var(--page-game-guides-hubet-game-features-primary-color);
  border: 2px solid var(--page-game-guides-hubet-game-features-secondary-color);
}

.page-game-guides-hubet-game-features__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--page-game-guides-hubet-game-features-shadow-color);
}

.page-game-guides-hubet-game-features__btn--secondary {
  background-color: transparent;
  color: var(--page-game-guides-hubet-game-features-secondary-color);
  border: 2px solid var(--page-game-guides-hubet-game-features-secondary-color);
  margin-left: 20px;
}

.page-game-guides-hubet-game-features__btn--secondary:hover {
  background-color: var(--page-game-guides-hubet-game-features-secondary-color);
  color: var(--page-game-guides-hubet-game-features-primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--page-game-guides-hubet-game-features-shadow-color);
}

.page-game-guides-hubet-game-features__section-title {
  font-size: 2.5em;
  color: var(--page-game-guides-hubet-game-features-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-guides-hubet-game-features__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--page-game-guides-hubet-game-features-secondary-color);
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-game-guides-hubet-game-features__text-content {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 30px;
  color: var(--page-game-guides-hubet-game-features-text-dark);
}

.page-game-guides-hubet-game-features__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-game-guides-hubet-game-features__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px var(--page-game-guides-hubet-game-features-shadow-color);
}

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

.page-game-guides-hubet-game-features__feature-card {
  background-color: var(--page-game-guides-hubet-game-features-background-light);
  border-radius: 10px;
  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;
  border: 1px solid var(--page-game-guides-hubet-game-features-border-color);
}

.page-game-guides-hubet-game-features__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px var(--page-game-guides-hubet-game-features-shadow-color);
}

.page-game-guides-hubet-game-features__card-title {
  font-size: 1.6em;
  color: var(--page-game-guides-hubet-game-features-primary-color);
  margin-bottom: 15px;
}

.page-game-guides-hubet-game-features__card-description {
  font-size: 1em;
  color: var(--page-game-guides-hubet-game-features-text-dark);
  margin-bottom: 20px;
}

.page-game-guides-hubet-game-features__card-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-top: 15px;
}

.page-game-guides-hubet-game-features__advantages-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-guides-hubet-game-features__advantages-list li {
  background-color: #f0f4f8;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  color: var(--page-game-guides-hubet-game-features-text-dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--page-game-guides-hubet-game-features-secondary-color);
  transition: background-color 0.3s ease;
}

.page-game-guides-hubet-game-features__advantages-list li:hover {
  background-color: #e6ecf2;
}

.page-game-guides-hubet-game-features__advantage-point {
  color: var(--page-game-guides-hubet-game-features-primary-color);
}

.page-game-guides-hubet-game-features__cta-content {
  background: var(--page-game-guides-hubet-game-features-primary-color);
  color: var(--page-game-guides-hubet-game-features-text-light);
  padding: 60px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-game-guides-hubet-game-features__cta-title {
  font-size: 2.8em;
  color: var(--page-game-guides-hubet-game-features-secondary-color);
  margin-bottom: 20px;
}

.page-game-guides-hubet-game-features__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides-hubet-game-features__cta-buttons .page-game-guides-hubet-game-features__btn {
  margin: 0 10px;
}

.page-game-guides-hubet-game-features__faq-accordion {
  margin-top: 40px;
}

.page-game-guides-hubet-game-features__faq-item {
  border: 1px solid var(--page-game-guides-hubet-game-features-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-game-guides-hubet-game-features__faq-question {
  background-color: var(--page-game-guides-hubet-game-features-primary-color);
  color: var(--page-game-guides-hubet-game-features-text-light);
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  font-size: 1.3em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-game-guides-hubet-game-features__faq-question:hover {
  background-color: #1A2B47;
}

.page-game-guides-hubet-game-features__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-game-guides-hubet-game-features__faq-item.active .page-game-guides-hubet-game-features__faq-question::after {
  transform: rotate(45deg);
}

.page-game-guides-hubet-game-features__faq-answer {
  background-color: #f0f4f8;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-game-guides-hubet-game-features__faq-item.active .page-game-guides-hubet-game-features__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-game-guides-hubet-game-features__faq-answer p {
  margin-bottom: 15px;
  color: var(--page-game-guides-hubet-game-features-text-dark);
}

.page-game-guides-hubet-game-features__link {
  color: var(--page-game-guides-hubet-game-features-primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-game-guides-hubet-game-features__link:hover {
  color: var(--page-game-guides-hubet-game-features-secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides-hubet-game-features__hero-title {
    font-size: 2.8em;
  }

  .page-game-guides-hubet-game-features__section-title {
    font-size: 2em;
  }

  .page-game-guides-hubet-game-features__cta-title {
    font-size: 2.2em;
  }

  .page-game-guides-hubet-game-features__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-guides-hubet-game-features__hero {
    padding: 80px 0;
  }

  .page-game-guides-hubet-game-features__hero-title {
    font-size: 2.2em;
  }

  .page-game-guides-hubet-game-features__hero-description {
    font-size: 1.1em;
  }

  .page-game-guides-hubet-game-features__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-guides-hubet-game-features__btn--secondary {
    margin-left: 10px;
    margin-top: 15px;
  }

  .page-game-guides-hubet-game-features__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-game-guides-hubet-game-features__cta-buttons .page-game-guides-hubet-game-features__btn {
    margin: 0;
  }

  .page-game-guides-hubet-game-features__section {
    padding: 40px 0;
  }

  .page-game-guides-hubet-game-features__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-game-guides-hubet-game-features__cta-title {
    font-size: 1.8em;
  }

  .page-game-guides-hubet-game-features__cta-description {
    font-size: 1em;
  }

  .page-game-guides-hubet-game-features__feature-card {
    padding: 20px;
  }

  .page-game-guides-hubet-game-features__card-title {
    font-size: 1.4em;
  }

  .page-game-guides-hubet-game-features__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-game-guides-hubet-game-features__hero {
    padding: 60px 0;
  }

  .page-game-guides-hubet-game-features__hero-title {
    font-size: 1.8em;
  }

  .page-game-guides-hubet-game-features__hero-description {
    font-size: 0.95em;
  }

  .page-game-guides-hubet-game-features__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-game-guides-hubet-game-features__section-title {
    font-size: 1.5em;
  }

  .page-game-guides-hubet-game-features__cta-title {
    font-size: 1.5em;
  }

  .page-game-guides-hubet-game-features__cta-content {
    padding: 40px 20px;
  }

  .page-game-guides-hubet-game-features__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-game-guides-hubet-game-features__faq-question {
    font-size: 1em;
  }
  .page-game-guides-hubet-game-features__faq-answer {
    padding: 15px 20px;
  }
}