/* style/index-review-fabet.css */
.page-index-review-fabet {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-index-review-fabet .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-index-review-fabet h1, .page-index-review-fabet h2, .page-index-review-fabet h3 {
  color: #E44D26;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-review-fabet h1 {
  font-size: 3em;
  text-align: center;
  color: #fff;
}

.page-index-review-fabet h2 {
  font-size: 2.5em;
  text-align: center;
  padding-top: 40px;
  margin-bottom: 30px;
}

.page-index-review-fabet h3 {
  font-size: 1.8em;
  color: #FFB800;
}

.page-index-review-fabet p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-index-review-fabet section {
  padding: 60px 0;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.page-index-review-fabet section:nth-child(even) {
  background-color: #fefefe;
}

/* HERO Section */
.page-index-review-fabet .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #E44D26 0%, #FFB800 100%);
  color: #ffffff;
  box-shadow: none;
  margin-bottom: 0;
}

.page-index-review-fabet .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-review-fabet .hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 900px; /* Adjust max-width for the image */
}

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

.page-index-review-fabet .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-index-review-fabet .hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-review-fabet .hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-index-review-fabet .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFB800;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-index-review-fabet .cta-button:hover {
  background: #E44D26;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Module Intro */
.page-index-review-fabet .module-intro {
  background-color: #fff;
}

.page-index-review-fabet .intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-fabet .intro-item {
  text-align: center;
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.page-index-review-fabet .intro-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-index-review-fabet .intro-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-index-review-fabet .intro-item h3 {
  color: #E44D26;
  font-size: 1.6em;
  margin-top: 15px;
  margin-bottom: 10px;
}

/* Module Quick Links */
.page-index-review-fabet .module-quick-links {
  background-color: #fefefe;
  text-align: center;
}

.page-index-review-fabet .links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-index-review-fabet .quick-link-button {
  display: inline-block;
  padding: 15px 30px;
  background: #E44D26;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index-review-fabet .quick-link-button:hover {
  background: #FFB800;
  color: #333;
  transform: translateY(-2px);
}

/* Module Games */
.page-index-review-fabet .module-games {
  background-color: #fff;
}

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

.page-index-review-fabet .game-card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.page-index-review-fabet .game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-index-review-fabet .game-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-index-review-fabet .game-card h3 {
  padding: 15px;
  margin-bottom: 0;
  color: #E44D26;
}

.page-index-review-fabet .game-card p {
  padding: 0 15px 15px;
  font-size: 0.95em;
  color: #555;
}

.page-index-review-fabet .game-link {
  display: block;
  padding: 10px 15px;
  background-color: #FFB800;
  color: #333;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 0 0 10px 10px;
}

.page-index-review-fabet .game-link:hover {
  background-color: #E44D26;
  color: #fff;
}

/* Module Promotions */
.page-index-review-fabet .module-promotions {
  background-color: #fefefe;
}

.page-index-review-fabet .promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-fabet .promo-card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.page-index-review-fabet .promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-index-review-fabet .promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-index-review-fabet .promo-card h3 {
  padding: 15px;
  margin-bottom: 0;
  color: #E44D26;
}

.page-index-review-fabet .promo-card p {
  padding: 0 15px 15px;
  font-size: 0.95em;
  color: #555;
}

.page-index-review-fabet .promo-button {
  display: block;
  padding: 12px 15px;
  background-color: #E44D26;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 0 0 10px 10px;
}

.page-index-review-fabet .promo-button:hover {
  background-color: #FFB800;
  color: #333;
}

/* Module Security Support */
.page-index-review-fabet .module-security-support {
  background-color: #fff;
}

.page-index-review-fabet .security-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-fabet .ss-item {
  text-align: center;
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.page-index-review-fabet .ss-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-index-review-fabet .ss-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-index-review-fabet .ss-item h3 {
  color: #E44D26;
  font-size: 1.6em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-index-review-fabet .contact-cta {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #FFB800;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-index-review-fabet .contact-cta p {
  font-size: 1.4em;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.page-index-review-fabet .contact-cta .cta-button {
  background-color: #E44D26;
  color: #fff;
}

.page-index-review-fabet .contact-cta .cta-button:hover {
  background-color: #333;
  color: #FFB800;
}

/* Module FAQ */
.page-index-review-fabet .module-faq {
  background-color: #fefefe;
}

.page-index-review-fabet .faq-list {
  margin-top: 40px;
}

.page-index-review-fabet .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-review-fabet .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fdfdfd;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-index-review-fabet .faq-question:hover {
  background: #f5f5f5;
}

.page-index-review-fabet .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #333;
}

.page-index-review-fabet .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #E44D26;
  transition: transform 0.3s ease;
}

.page-index-review-fabet .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFB800;
}

.page-index-review-fabet .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #ffffff;
  color: #555;
}

.page-index-review-fabet .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to accommodate content */
  padding: 20px;
  border-top: 1px solid #eee;
}

.page-index-review-fabet .faq-answer p {
  margin: 0;
  font-size: 1.1em;
}

/* Module Blog */
.page-index-review-fabet .module-blog {
  background-color: #fff;
}

.page-index-review-fabet .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-fabet .blog-card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.page-index-review-fabet .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-index-review-fabet .blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-index-review-fabet .blog-card h3 {
  padding: 15px 15px 0;
  margin-bottom: 5px;
  font-size: 1.4em;
}

.page-index-review-fabet .blog-card h3 a {
  color: #E44D26;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-review-fabet .blog-card h3 a:hover {
  color: #FFB800;
}

.page-index-review-fabet .blog-card p {
  padding: 0 15px;
  font-size: 0.95em;
  color: #555;
}

.page-index-review-fabet .blog-card span {
  display: block;
  padding: 10px 15px 15px;
  font-size: 0.85em;
  color: #888;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-review-fabet h1 {
    font-size: 2.8em;
  }

  .page-index-review-fabet .hero-content p {
    font-size: 1.1em;
  }

  .page-index-review-fabet .cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }

  .page-index-review-fabet h2 {
    font-size: 2em;
  }

  .page-index-review-fabet h3 {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-index-review-fabet section {
    padding: 40px 0;
  }

  .page-index-review-fabet .hero-section {
    padding: 60px 15px;
  }

  .page-index-review-fabet .hero-content h1 {
    font-size: 2.2em;
  }

  .page-index-review-fabet .hero-content p {
    font-size: 1em;
  }

  .page-index-review-fabet .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-index-review-fabet h2 {
    font-size: 1.8em;
  }

  .page-index-review-fabet .intro-grid, .page-index-review-fabet .game-categories, .page-index-review-fabet .promotion-grid, .page-index-review-fabet .security-support-grid, .page-index-review-fabet .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-review-fabet .links-grid {
    flex-direction: column;
    align-items: center;
  }

  .page-index-review-fabet .quick-link-button {
    width: 80%;
    max-width: 300px;
  }

  .page-index-review-fabet .faq-question h3 {
    font-size: 1.1em;
  }

  .page-index-review-fabet .faq-toggle {
    font-size: 20px;
  }

  .page-index-review-fabet .faq-answer p {
    font-size: 0.95em;
  }

  .page-index-review-fabet .contact-cta p {
    font-size: 1.2em;
  }
}