/* style/resources-how-to-choose-tt88-games.css */
.page-resources-how-to-choose-tt88-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-resources-how-to-choose-tt88-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-how-to-choose-tt88-games__hero {
  position: relative;
  background: linear-gradient(135deg, #007bff, #4da3ff);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-resources-how-to-choose-tt88-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-resources-how-to-choose-tt88-games__hero .page-resources-how-to-choose-tt88-games__container {
  position: relative;
  z-index: 1;
}

.page-resources-how-to-choose-tt88-games__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-choose-tt88-games__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.page-resources-how-to-choose-tt88-games__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-resources-how-to-choose-tt88-games__btn--primary {
  background-color: #ffc107;
  color: #333;
  border: 2px solid #ffc107;
}

.page-resources-how-to-choose-tt88-games__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #fff;
}

.page-resources-how-to-choose-tt88-games__btn--secondary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
}

.page-resources-how-to-choose-tt88-games__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-resources-how-to-choose-tt88-games__btn--outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-resources-how-to-choose-tt88-games__btn--outline:hover {
  background-color: #fff;
  color: #007bff;
}

.page-resources-how-to-choose-tt88-games__btn--small {
  padding: 8px 18px;
  font-size: 0.95em;
  border-radius: 20px;
}

.page-resources-how-to-choose-tt88-games__section {
  padding: 60px 0;
}

.page-resources-how-to-choose-tt88-games__section--alt-bg {
  background-color: #e9ecef;
}

.page-resources-how-to-choose-tt88-games__heading {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-resources-how-to-choose-tt88-games__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page-resources-how-to-choose-tt88-games__sub-heading {
  font-size: 1.5em;
  color: #0056b3;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-resources-how-to-choose-tt88-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-choose-tt88-games__grid-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-how-to-choose-tt88-games__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-resources-how-to-choose-tt88-games__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-resources-how-to-choose-tt88-games__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-choose-tt88-games__image-center {
  display: block;
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-choose-tt88-games__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-choose-tt88-games__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-resources-how-to-choose-tt88-games__feature-item:hover {
  transform: translateY(-5px);
}

.page-resources-how-to-choose-tt88-games__feature-item p {
  color: #555;
}

.page-resources-how-to-choose-tt88-games__ordered-list,
.page-resources-how-to-choose-tt88-games__bullet-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-how-to-choose-tt88-games__ordered-list li,
.page-resources-how-to-choose-tt88-games__bullet-list li {
  background-color: #fff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #007bff;
  transition: border-left-color 0.3s ease;
}

.page-resources-how-to-choose-tt88-games__ordered-list li:hover,
.page-resources-how-to-choose-tt88-games__bullet-list li:hover {
  border-left-color: #ffc107;
}

.page-resources-how-to-choose-tt88-games__ordered-list li p,
.page-resources-how-to-choose-tt88-games__bullet-list li p {
  color: #555;
}

.page-resources-how-to-choose-tt88-games__game-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-choose-tt88-games__game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-how-to-choose-tt88-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-resources-how-to-choose-tt88-games__game-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-resources-how-to-choose-tt88-games__game-card h3 {
  padding: 20px 15px 10px;
  color: #007bff;
}

.page-resources-how-to-choose-tt88-games__game-card p {
  padding: 0 15px 20px;
  color: #555;
}

.page-resources-how-to-choose-tt88-games__game-card .page-resources-how-to-choose-tt88-games__btn {
  margin-bottom: 20px;
}

.page-resources-how-to-choose-tt88-games__cta-section {
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-how-to-choose-tt88-games__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-resources-how-to-choose-tt88-games__cta-section .page-resources-how-to-choose-tt88-games__container {
  position: relative;
  z-index: 1;
}

.page-resources-how-to-choose-tt88-games__cta-section .page-resources-how-to-choose-tt88-games__heading {
  color: #fff;
  margin-bottom: 20px;
}

.page-resources-how-to-choose-tt88-games__cta-section .page-resources-how-to-choose-tt88-games__heading::after {
  background-color: #ffc107;
}

.page-resources-how-to-choose-tt88-games__cta-section p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.page-resources-how-to-choose-tt88-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-how-to-choose-tt88-games .keyword-highlight {
  color: #007bff;
  font-weight: bold;
}

.page-resources-how-to-choose-tt88-games__hero .keyword-highlight {
  color: #ffc107;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources-how-to-choose-tt88-games__heading {
    font-size: 2em;
  }
  .page-resources-how-to-choose-tt88-games__title {
    font-size: 2.2em;
  }
  .page-resources-how-to-choose-tt88-games__sub-heading {
    font-size: 1.3em;
  }
  .page-resources-how-to-choose-tt88-games__feature-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-choose-tt88-games__hero {
    padding: 60px 0;
  }
  .page-resources-how-to-choose-tt88-games__title {
    font-size: 1.8em;
  }
  .page-resources-how-to-choose-tt88-games__subtitle {
    font-size: 1em;
  }
  .page-resources-how-to-choose-tt88-games__heading {
    font-size: 1.8em;
  }
  .page-resources-how-to-choose-tt88-games__section {
    padding: 40px 0;
  }
  .page-resources-how-to-choose-tt88-games__grid {
    grid-template-columns: 1fr;
  }
  .page-resources-how-to-choose-tt88-games__feature-list {
    grid-template-columns: 1fr;
  }
  .page-resources-how-to-choose-tt88-games__game-showcase {
    grid-template-columns: 1fr;
  }
  .page-resources-how-to-choose-tt88-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-how-to-choose-tt88-games__btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-choose-tt88-games__title {
    font-size: 1.5em;
  }
  .page-resources-how-to-choose-tt88-games__heading {
    font-size: 1.5em;
  }
  .page-resources-how-to-choose-tt88-games__sub-heading {
    font-size: 1.2em;
  }
  .page-resources-how-to-choose-tt88-games__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
}