/* style/resources-t88-latest-game-guide.css */

:root {
  --t88-gold: #FFD700;
  --t88-black: #000000;
  --t88-dark-grey: #1a1a1a;
  --t88-light-grey: #f5f5f5;
  --t88-white: #ffffff;
  --text-color-dark-bg: var(--t88-white);
  --text-color-light-bg: #333333;
}

.page-resources-t88-latest-game-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-light-bg); /* Default text color for light body background */
  line-height: 1.6;
  background-color: var(--t88-white); /* Assuming shared body is white */
}

.page-resources-t88-latest-game-guide__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-t88-latest-game-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-t88-latest-game-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
  z-index: 2;
}

.page-resources-t88-latest-game-guide__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  color: var(--t88-white);
}

.page-resources-t88-latest-game-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--t88-gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-resources-t88-latest-game-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: var(--t88-white);
}

.page-resources-t88-latest-game-guide__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-t88-latest-game-guide__btn-primary,
.page-resources-t88-latest-game-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-t88-latest-game-guide__btn-primary {
  background-color: var(--t88-gold);
  color: var(--t88-black);
  border: 2px solid var(--t88-gold);
}

.page-resources-t88-latest-game-guide__btn-primary:hover {
  background-color: #e6b800;
  color: var(--t88-black);
  border-color: #e6b800;
}

.page-resources-t88-latest-game-guide__btn-secondary {
  background-color: transparent;
  color: var(--t88-gold);
  border: 2px solid var(--t88-gold);
}

.page-resources-t88-latest-game-guide__btn-secondary:hover {
  background-color: var(--t88-gold);
  color: var(--t88-black);
  border-color: var(--t88-gold);
}

.page-resources-t88-latest-game-guide__section {
  padding: 60px 0;
  background-color: var(--t88-white);
  color: var(--text-color-light-bg);
}

.page-resources-t88-latest-game-guide__section:nth-of-type(even) {
  background-color: var(--t88-light-grey);
}

.page-resources-t88-latest-game-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-t88-latest-game-guide__section-title {
  font-size: 2.8em;
  color: var(--t88-black);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-t88-latest-game-guide__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-resources-t88-latest-game-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-t88-latest-game-guide__feature-item {
  background-color: var(--t88-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-resources-t88-latest-game-guide__feature-title {
  font-size: 1.8em;
  color: var(--t88-gold);
  margin-bottom: 15px;
}

.page-resources-t88-latest-game-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-t88-latest-game-guide__image-center {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-t88-latest-game-guide__game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-t88-latest-game-guide__game-card {
  background-color: var(--t88-dark-grey);
  color: var(--t88-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-resources-t88-latest-game-guide__game-card:hover {
  transform: translateY(-10px);
}

.page-resources-t88-latest-game-guide__game-card-title {
  font-size: 1.6em;
  color: var(--t88-gold);
  margin-bottom: 15px;
}

.page-resources-t88-latest-game-guide__game-card-title a {
  color: var(--t88-gold);
  text-decoration: none;
}

.page-resources-t88-latest-game-guide__game-card-title a:hover {
  text-decoration: underline;
}

.page-resources-t88-latest-game-guide__btn-text {
  display: inline-block;
  margin-top: 20px;
  color: var(--t88-gold);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-t88-latest-game-guide__btn-text:hover {
  color: var(--t88-white);
  text-decoration: underline;
}

.page-resources-t88-latest-game-guide__detailed-guides .page-resources-t88-latest-game-guide__guide-item {
  background-color: var(--t88-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}

.page-resources-t88-latest-game-guide__guide-title {
  font-size: 1.8em;
  color: var(--t88-black);
  margin-bottom: 15px;
}

.page-resources-t88-latest-game-guide__guide-item p {
  margin-bottom: 15px;
}

.page-resources-t88-latest-game-guide__guide-item ul {
  list-style: disc inside;
  padding-left: 20px;
}

.page-resources-t88-latest-game-guide__guide-item li {
  margin-bottom: 8px;
}

.page-resources-t88-latest-game-guide__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-resources-t88-latest-game-guide__tips-list li {
  background-color: var(--t88-white);
  padding: 20px;
  border-left: 5px solid var(--t88-gold);
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
}

.page-resources-t88-latest-game-guide__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-t88-latest-game-guide__promo-card {
  background-color: var(--t88-dark-grey);
  color: var(--t88-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-resources-t88-latest-game-guide__promo-title {
  font-size: 1.6em;
  color: var(--t88-gold);
  margin-bottom: 15px;
}

.page-resources-t88-latest-game-guide__cta-buttons {
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-t88-latest-game-guide__registration-steps {
  list-style: decimal inside;
  padding-left: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-t88-latest-game-guide__registration-steps li {
  background-color: var(--t88-white);
  padding: 20px;
  margin-bottom: 15px;
  border-left: 4px solid var(--t88-gold);
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
}

.page-resources-t88-latest-game-guide__registration-steps li strong {
  color: var(--t88-gold);
}

.page-resources-t88-latest-game-guide__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-t88-latest-game-guide__faq-item {
  background-color: var(--t88-white);
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-resources-t88-latest-game-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--t88-black);
  cursor: pointer;
  background-color: var(--t88-light-grey);
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.page-resources-t88-latest-game-guide__faq-question:hover {
  background-color: #e0e0e0;
}

.page-resources-t88-latest-game-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--t88-gold);
  transition: transform 0.3s ease;
}

.page-resources-t88-latest-game-guide__faq-item.active .page-resources-t88-latest-game-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-t88-latest-game-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-color-light-bg);
}

.page-resources-t88-latest-game-guide__faq-item.active .page-resources-t88-latest-game-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 20px 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-t88-latest-game-guide__hero-title {
    font-size: 3em;
  }
  .page-resources-t88-latest-game-guide__hero-description {
    font-size: 1.2em;
  }
  .page-resources-t88-latest-game-guide__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-t88-latest-game-guide {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-t88-latest-game-guide__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-t88-latest-game-guide__hero-title {
    font-size: 2.2em;
  }
  .page-resources-t88-latest-game-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-t88-latest-game-guide__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-t88-latest-game-guide__btn-primary,
  .page-resources-t88-latest-game-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }
  .page-resources-t88-latest-game-guide__section {
    padding: 40px 0;
  }
  .page-resources-t88-latest-game-guide__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-t88-latest-game-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-t88-latest-game-guide__section-intro {
    font-size: 0.95em;
  }
  .page-resources-t88-latest-game-guide img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-resources-t88-latest-game-guide__image-full-width,
  .page-resources-t88-latest-game-guide__image-center {
    margin: 20px auto !important;
  }
  .page-resources-t88-latest-game-guide__features-grid,
  .page-resources-t88-latest-game-guide__game-cards-grid,
  .page-resources-t88-latest-game-guide__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-t88-latest-game-guide__guide-title {
    font-size: 1.4em;
  }
  .page-resources-t88-latest-game-guide__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-resources-t88-latest-game-guide__faq-answer {
    padding: 0 20px;
  }
  .page-resources-t88-latest-game-guide__faq-item.active .page-resources-t88-latest-game-guide__faq-answer {
    padding: 15px 20px;
  }
  .page-resources-t88-latest-game-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-t88-latest-game-guide__cta-buttons a {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-resources-t88-latest-game-guide__hero-title {
    font-size: 1.8em;
  }
  .page-resources-t88-latest-game-guide__hero-description {
    font-size: 0.9em;
  }
  .page-resources-t88-latest-game-guide__section-title {
    font-size: 1.5em;
  }
  .page-resources-t88-latest-game-guide__feature-title,
  .page-resources-t88-latest-game-guide__game-card-title,
  .page-resources-t88-latest-game-guide__promo-title,
  .page-resources-t88-latest-game-guide__guide-title {
    font-size: 1.2em;
  }
}