/* style/index-review-fabet.css */

:root {
  --primary-color: #0A1931; /* Deep Navy Blue */
  --secondary-color: #FFD700; /* Gold */
  --text-light: #f0f0f0;
  --text-dark: #333333;
  --bg-light: #ffffff;
  --bg-dark: #1a2a44;
  --border-color: #e0e0e0;
}

/* Base styles for the page content wrapper */
.page-index-review-fabet {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
}

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

/* General headings and paragraphs */
.page-index-review-fabet h1,
.page-index-review-fabet h2,
.page-index-review-fabet h3,
.page-index-review-fabet h4,
.page-index-review-fabet h5,
.page-index-review-fabet h6 {
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-index-review-fabet h1 {
  font-size: 3.2em;
  color: var(--secondary-color); /* Highlight H1 */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet h2 {
  font-size: 2.5em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  position: relative;
  color: var(--primary-color);
}

.page-index-review-fabet h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-index-review-fabet h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

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

/* CTA Buttons */
.page-index-review-fabet .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color); /* High contrast text on gold button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-fabet .cta-button:hover {
  background: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet .cta-button-small {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-index-review-fabet .cta-button-small:hover {
  background: #e6c200;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.page-index-review-fabet .btn-small,
.page-index-review-fabet .btn-promo,
.page-index-review-fabet .btn-read-more {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--text-light); /* Light text on dark button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-index-review-fabet .btn-small:hover,
.page-index-review-fabet .btn-promo:hover,
.page-index-review-fabet .btn-read-more:hover {
  background: #071221; /* Slightly darker primary */
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* 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: 60px 20px;
  background-color: var(--primary-color); /* Dark background for hero */
}

.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;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
}

.page-index-review-fabet .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-index-review-fabet .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-light); /* Light text on dark hero */
}

.page-index-review-fabet .hero-content h1 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-index-review-fabet .hero-content p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: var(--text-light);
}

/* Intro Section */
.page-index-review-fabet .intro-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.page-index-review-fabet .intro-section h3 {
  color: var(--primary-color);
}

/* Quick Access Section */
.page-index-review-fabet .quick-access-section {
  padding: 60px 0;
  background-color: var(--bg-dark); /* Dark background for quick access */
  color: var(--text-light);
  text-align: center;
}

.page-index-review-fabet .quick-access-section h2 {
  color: var(--secondary-color);
}

.page-index-review-fabet .quick-access-section p {
  color: var(--text-light);
  margin-bottom: 40px;
}

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

.page-index-review-fabet .access-link-item {
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  padding: 25px 15px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-fabet .access-link-item:hover {
  transform: translateY(-5px);
  background: var(--secondary-color);
  color: var(--primary-color); /* Change text color on hover for contrast */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet .access-link-item img {
  width: 200px; /* Minimum 200px width */
  height: 150px; /* Minimum 200px height for content images, not icons */
  object-fit: cover; /* Cover the area */
  border-radius: 6px;
  margin-bottom: 15px;
  display: block;
}

.page-index-review-fabet .access-link-item span {
  font-size: 1.1em;
  font-weight: bold;
}

/* Games Section */
.page-index-review-fabet .games-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.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-category-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-review-fabet .game-category-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-review-fabet .game-category-item img {
  width: 100%;
  max-width: 250px; /* Ensure images are not too small */
  height: 180px; /* Specific height for consistency */
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-fabet .game-category-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-index-review-fabet .game-category-item p {
  font-size: 1em;
  color: var(--text-dark);
  flex-grow: 1;
}

/* Promotions Section */
.page-index-review-fabet .promotions-section {
  padding: 60px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
}

.page-index-review-fabet .promotions-section h2 {
  color: var(--secondary-color);
}

.page-index-review-fabet .promotions-section p {
  color: var(--text-light);
  margin-bottom: 40px;
}

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

.page-index-review-fabet .promotion-card {
  background: var(--primary-color);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-review-fabet .promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet .promotion-card img {
  width: 100%;
  max-width: 250px; /* Ensure images are not too small */
  height: 180px; /* Specific height for consistency */
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-fabet .promotion-card h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-index-review-fabet .promotion-card p {
  font-size: 1em;
  color: var(--text-light);
  flex-grow: 1;
}

/* Security & Support Section */
.page-index-review-fabet .security-support-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.page-index-review-fabet .security-support-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  justify-content: center;
}

.page-index-review-fabet .security-info,
.page-index-review-fabet .support-info {
  flex: 1;
  min-width: 300px;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-index-review-fabet .security-info h3,
.page-index-review-fabet .support-info h3 {
  color: var(--primary-color);
  font-size: 1.8em;
  margin-bottom: 20px;
  text-align: center;
}

.page-index-review-fabet .security-info ul,
.page-index-review-fabet .support-info ul {
  list-style: none;
  padding: 0;
}

.page-index-review-fabet .security-info li,
.page-index-review-fabet .support-info li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-index-review-fabet .security-info li img,
.page-index-review-fabet .support-info li img {
  width: 200px; /* Minimum 200px width */
  height: 150px; /* Minimum 200px height */
  margin-right: 15px;
  object-fit: cover;
  border-radius: 4px;
}

.page-index-review-fabet .cta-support {
  text-align: center;
  margin-top: 50px;
}

.page-index-review-fabet .cta-support p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: bold;
}

/* FAQ Section */
.page-index-review-fabet .faq-section {
  padding: 60px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-index-review-fabet .faq-section h2 {
  color: var(--secondary-color);
}

.page-index-review-fabet .faq-section p {
  color: var(--text-light);
  margin-bottom: 40px;
}

.page-index-review-fabet .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-review-fabet .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-index-review-fabet .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  border: 1px solid #1f3559;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-index-review-fabet .faq-question:hover {
  background: #1f3559; /* Slightly lighter primary on hover */
  color: var(--secondary-color);
}

.page-index-review-fabet .faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: inherit; /* Inherit color from parent for hover effect */
}

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

.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 25px;
  background: var(--bg-light);
  color: var(--text-dark);
  border-radius: 0 0 8px 8px;
}

.page-index-review-fabet .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 25px;
}

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

/* Blog Section */
.page-index-review-fabet .blog-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

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

.page-index-review-fabet .blog-post-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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