/* style/index-review-one88.css */
:root {
  --primary-color: #E44D26;
  --secondary-color: #336699;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f8f8f8;
  --background-dark: #2c3e50;
  --border-color: #e0e0e0;
}

.page-index-review-one88 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

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

.page-index-review-one88 .text-center {
  text-align: center;
}

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

.page-index-review-one88 .section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

.page-index-review-one88 .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-review-one88 .cta-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* HERO Section */
.page-index-review-one88 .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(--background-dark); /* Fallback for transparency */
}

.page-index-review-one88 .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-one88 .hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

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

.page-index-review-one88 .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-light);
  margin-top: -100px; /* Adjust to overlay slightly on image */
  padding: 20px;
  background: linear-gradient(to top, rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.5) 70%, transparent);
  border-radius: 0 0 8px 8px;
}

.page-index-review-one88 .hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-review-one88 .hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-index-review-one88 .hero-description a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-index-review-one88 .hero-description a:hover {
  color: var(--text-light);
}

/* Section Introduction */
.page-index-review-one88 .section-introduction {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-index-review-one88 .feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-index-review-one88 .feature-list li {
  background: #ffffff;
  padding: 20px;
  border-left: 5px solid var(--primary-color);
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  font-size: 1.1em;
}

.page-index-review-one88 .list-icon {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-right: 15px;
}

/* Section Quick Access */
.page-index-review-one88 .section-quick-access {
  padding: 60px 0;
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.page-index-review-one88 .section-quick-access .section-title {
  color: var(--text-light);
}

.page-index-review-one88 .section-quick-access p {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-index-review-one88 .section-quick-access p a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-index-review-one88 .link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.page-index-review-one88 .access-link {
  display: block;
  background: var(--primary-color);
  color: var(--text-light);
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-one88 .access-link:hover {
  background: #ff6f40; /* Lighter primary for hover */
  transform: translateY(-3px);
}

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

.page-index-review-one88 .game-category p {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
}

.page-index-review-one88 .game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-review-one88 .game-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-index-review-one88 .game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-index-review-one88 .game-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  padding: 15px;
  margin-bottom: 0;
}

.page-index-review-one88 .game-title a {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-index-review-one88 .game-title a:hover {
  color: var(--primary-color);
}

.page-index-review-one88 .game-description {
  padding: 0 15px 15px;
  font-size: 0.95em;
  flex-grow: 1;
}

.page-index-review-one88 .game-description a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-index-review-one88 .game-description a:hover {
  text-decoration: underline;
}

.page-index-review-one88 .game-button {
  display: block;
  width: calc(100% - 30px);
  margin: 0 15px 15px;
  padding: 10px 0;
  background: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-review-one88 .game-button:hover {
  background: var(--secondary-color);
}

/* Section Promotions */
.page-index-review-one88 .section-promotions {
  padding: 60px 0;
  background-color: #f0f4f7; /* Lighter background for contrast */
}

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

.page-index-review-one88 .promo-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-index-review-one88 .promo-card:hover {
  transform: translateY(-5px);
}

.page-index-review-one88 .promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.page-index-review-one88 .promo-title {
  font-size: 1.4em;
  color: var(--secondary-color);
  padding: 15px;
  margin-bottom: 0;
}

.page-index-review-one88 .promo-description {
  padding: 0 15px 15px;
  font-size: 0.9em;
  flex-grow: 1;
}

.page-index-review-one88 .promo-description a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-index-review-one88 .promo-description a:hover {
  text-decoration: underline;
}

.page-index-review-one88 .promo-button {
  display: block;
  width: calc(100% - 30px);
  margin: 0 15px 15px;
  padding: 10px 0;
  background: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-review-one88 .promo-button:hover {
  background: var(--secondary-color);
}

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

.page-index-review-one88 .section-security-support .section-title {
  color: var(--text-light);
}

.page-index-review-one88 .section-security-support p {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-index-review-one88 .section-security-support p a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

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

.page-index-review-one88 .feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-review-one88 .feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-review-one88 .feature-heading {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index-review-one88 .feature-text {
  font-size: 0.95em;
  color: #c0c0c0;
}

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

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  color: var(--text-dark);
}

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

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  background: #f9f9f9;
  color: var(--text-dark);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px 20px;
  border-top: 1px solid var(--border-color);
}

.faq-answer p {
  margin: 0;
  font-size: 1em;
}

.faq-answer p a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.faq-answer p a:hover {
  color: var(--secondary-color);
}

/* Section Blog */
.page-index-review-one88 .section-blog {
  padding: 60px 0;
  background-color: #f0f4f7;
}

.page-index-review-one88 .section-blog p {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
}

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

.page-index-review-one88 .blog-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-one88 .blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index-review-one88 .blog-title {
  font-size: 1.4em;
  color: var(--secondary-color);
  padding: 15px;
  margin-bottom: 0;
}

.page-index-review-one88 .blog-title a {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-index-review-one88 .blog-title a:hover {
  color: var(--primary-color);
}

.page-index-review-one88 .blog-excerpt {
  padding: 0 15px 15px;
  font-size: 0.95em;
  flex-grow: 1;
}

.page-index-review-one88 .blog-excerpt a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-index-review-one88 .blog-excerpt a:hover {
  text-decoration: underline;
}

.page-index-review-one88 .blog-readmore {
  display: inline-block;
  margin: 0 15px 15px;
  padding: 8px 15px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-index-review-one88 .blog-readmore:hover {
  background: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-one88 .hero-title {
    font-size: 2.5em;
  }
  .page-index-review-one88 .section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-index-review-one88 .hero-section {
    padding: 40px 15px;
  }
  .page-index-review-one88 .hero-image img {
    border-radius: 4px;
  }
  .page-index-review-one88 .hero-content {
    margin-top: -60px;
    padding: 15px;
  }
  .page-index-review-one88 .hero-title {
    font-size: 2em;
  }
  .page-index-review-one88 .hero-description {
    font-size: 1em;
  }
  .page-index-review-one88 .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-index-review-one88 .section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-index-review-one88 .feature-list li {
    font-size: 1em;
    padding: 15px;
  }
  .page-index-review-one88 .link-grid, .page-index-review-one88 .game-grid, .page-index-review-one88 .promo-grid, .page-index-review-one88 .security-features, .page-index-review-one88 .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index-review-one88 .game-image, .page-index-review-one88 .promo-image, .page-index-review-one88 .blog-image {
    height: 150px;
  }
  .faq-question {
    padding: 12px 15px;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 15px;
  }
  .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-index-review-one88 .hero-title {
    font-size: 1.8em;
  }
  .page-index-review-one88 .hero-description {
    font-size: 0.9em;
  }
  .page-index-review-one88 .section-title {
    font-size: 1.5em;
  }
  .page-index-review-one88 .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-index-review-one88 .game-title, .page-index-review-one88 .promo-title, .page-index-review-one88 .blog-title {
    font-size: 1.2em;
  }
  .page-index-review-one88 .feature-item {
    padding: 20px;
  }
  .page-index-review-one88 .feature-icon {
    width: 60px;
    height: 60px;
  }
}