/* style/blog-aev99-official-website-features.css */
:root {
  --aev99-primary-color: #11A84E;
  --aev99-secondary-color: #22C768;
  --aev99-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --aev99-card-bg: #11271B;
  --aev99-background: #08160F;
  --aev99-text-main: #F2FFF6;
  --aev99-text-secondary: #A7D9B8;
  --aev99-border-color: #2E7A4E;
  --aev99-glow-color: #57E38D;
  --aev99-gold-color: #F2C14E;
  --aev99-divider-color: #1E3A2A;
  --aev99-deep-green: #0A4B2C;
}

.page-blog-aev99-official-website-features {
  font-family: Arial, sans-serif;
  color: var(--aev99-text-main);
  background-color: var(--aev99-background);
}

.page-blog-aev99-official-website-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-aev99-official-website-features__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles top padding for header offset */
  background-color: var(--aev99-background);
}

.page-blog-aev99-official-website-features__hero-image-wrapper {
  width: 100%;
  order: 1;
}

.page-blog-aev99-official-website-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-aev99-official-website-features__hero-content {
  order: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly for visual flow, but text is below image */
  background-color: var(--aev99-card-bg);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 10;
  border: 1px solid var(--aev99-border-color);
}

.page-blog-aev99-official-website-features__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--aev99-text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-blog-aev99-official-website-features__hero-description {
  font-size: 1.1rem;
  color: var(--aev99-text-secondary);
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-blog-aev99-official-website-features__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-aev99-official-website-features__btn-primary,
.page-blog-aev99-official-website-features__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-aev99-official-website-features__btn-primary {
  background: var(--aev99-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-aev99-official-website-features__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(var(--aev99-primary-color), 0.4);
}

.page-blog-aev99-official-website-features__btn-secondary {
  background: transparent;
  color: var(--aev99-text-main);
  border: 2px solid var(--aev99-border-color);
}

.page-blog-aev99-official-website-features__btn-secondary:hover {
  background-color: var(--aev99-deep-green);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* General Section Styles */
.page-blog-aev99-official-website-features__section {
  padding: 80px 0;
  background-color: var(--aev99-background);
  border-bottom: 1px solid var(--aev99-divider-color);
}

.page-blog-aev99-official-website-features__dark-section {
  background-color: var(--aev99-card-bg);
  color: var(--aev99-text-main);
}

.page-blog-aev99-official-website-features__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--aev99-text-main);
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-blog-aev99-official-website-features__section-description {
  font-size: 1.05rem;
  color: var(--aev99-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.page-blog-aev99-official-website-features__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 40px auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us Section */
.page-blog-aev99-official-website-features__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-aev99-official-website-features__feature-item {
  background-color: var(--aev99-card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--aev99-border-color);
  transition: transform 0.3s ease;
}

.page-blog-aev99-official-website-features__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-aev99-official-website-features__feature-title {
  font-size: 1.5rem;
  color: var(--aev99-text-main);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-aev99-official-website-features__feature-text {
  font-size: 1rem;
  color: var(--aev99-text-secondary);
  line-height: 1.6;
}

/* Game Portfolio Section */
.page-blog-aev99-official-website-features__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-aev99-official-website-features__game-card {
  background-color: var(--aev99-card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--aev99-border-color);
  transition: transform 0.3s ease;
}

.page-blog-aev99-official-website-features__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-aev99-official-website-features__game-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-aev99-official-website-features__game-title a {
  color: var(--aev99-text-main);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-aev99-official-website-features__game-title a:hover {
  color: var(--aev99-gold-color);
}

.page-blog-aev99-official-website-features__game-text {
  font-size: 0.95rem;
  color: var(--aev99-text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-blog-aev99-official-website-features__read-more {
  color: var(--aev99-secondary-color);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.page-blog-aev99-official-website-features__read-more:hover {
  color: var(--aev99-gold-color);
  text-decoration: underline;
}

/* Security & Fairness Section */
.page-blog-aev99-official-website-features__security-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  text-align: left;
}

.page-blog-aev99-official-website-features__security-list li {
  background-color: var(--aev99-deep-green);
  border-left: 5px solid var(--aev99-secondary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1rem;
  color: var(--aev99-text-main);
  line-height: 1.5;
}

/* Promotions Section */
.page-blog-aev99-official-website-features__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-aev99-official-website-features__card {
  background-color: var(--aev99-card-bg);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--aev99-border-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: var(--aev99-text-main);
}

.page-blog-aev99-official-website-features__card-title {
  font-size: 1.3rem;
  color: var(--aev99-text-main);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-aev99-official-website-features__card-text {
  font-size: 0.95rem;
  color: var(--aev99-text-secondary);
  line-height: 1.6;
}

/* Registration & Support Section */
.page-blog-aev99-official-website-features__support-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-aev99-official-website-features__support-item {
  background-color: var(--aev99-deep-green);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--aev99-border-color);
  text-align: center;
}

.page-blog-aev99-official-website-features__support-title {
  font-size: 1.4rem;
  color: var(--aev99-text-main);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-aev99-official-website-features__support-text {
  font-size: 1rem;
  color: var(--aev99-text-secondary);
  line-height: 1.6;
}

/* FAQ Section */
.page-blog-aev99-official-website-features__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-blog-aev99-official-website-features__faq-item {
  background-color: var(--aev99-card-bg);
  border: 1px solid var(--aev99-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-aev99-official-website-features__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--aev99-text-main);
  cursor: pointer;
  position: relative;
  user-select: none;
}

.page-blog-aev99-official-website-features__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-aev99-official-website-features__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--aev99-secondary-color);
}

.page-blog-aev99-official-website-features__faq-item[open] .page-blog-aev99-official-website-features__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-aev99-official-website-features__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  color: var(--aev99-text-secondary);
  line-height: 1.6;
}

/* Call to Action Section (final) */
.page-blog-aev99-official-website-features__call-to-action {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-aev99-official-website-features__hero-content {
    margin-top: -60px;
  }
}

@media (max-width: 768px) {
  .page-blog-aev99-official-website-features {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-aev99-official-website-features__container {
    padding: 0 15px;
  }

  .page-blog-aev99-official-website-features__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-aev99-official-website-features__hero-content {
    margin-top: -40px;
    padding: 30px 15px;
  }

  .page-blog-aev99-official-website-features__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-blog-aev99-official-website-features__hero-description {
    font-size: 1rem;
  }

  .page-blog-aev99-official-website-features__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-aev99-official-website-features__btn-primary,
  .page-blog-aev99-official-website-features__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-blog-aev99-official-website-features__section {
    padding: 60px 0;
  }

  .page-blog-aev99-official-website-features__section-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .page-blog-aev99-official-website-features__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-blog-aev99-official-website-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-aev99-official-website-features__section,
  .page-blog-aev99-official-website-features__card,
  .page-blog-aev99-official-website-features__container,
  .page-blog-aev99-official-website-features__game-card,
  .page-blog-aev99-official-website-features__feature-item,
  .page-blog-aev99-official-website-features__support-item,
  .page-blog-aev99-official-website-features__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* Padding already handled by .page-blog-aev99-official-website-features__container */
    overflow: hidden !important;
  }

  .page-blog-aev99-official-website-features__video-section {
    padding-top: 10px !important;
  }
  
  .page-blog-aev99-official-website-features__game-categories,
  .page-blog-aev99-official-website-features__features-grid,
  .page-blog-aev99-official-website-features__promo-cards,
  .page-blog-aev99-official-website-features__support-info {
    grid-template-columns: 1fr;
  }

  .page-blog-aev99-official-website-features__faq-item summary {
    font-size: 1rem;
    padding: 15px;
  }

  .page-blog-aev99-official-website-features__faq-answer {
    padding: 0 15px 15px 15px;
  }
}