/* style/blog-hello88-tiqff-platform-analysis.css */

:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-blog-hello88-tiqff-platform-analysis {
  background-color: var(--background-color);
  color: var(--text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-hello88-tiqff-platform-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  background-color: var(--background-color);
  text-align: center;
}

.page-blog-hello88-tiqff-platform-analysis__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-blog-hello88-tiqff-platform-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-hello88-tiqff-platform-analysis__hero-content {
  max-width: 900px;
  padding: 20px;
  margin-top: 20px;
}

.page-blog-hello88-tiqff-platform-analysis__main-title {
  color: var(--text-main);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
}

.page-blog-hello88-tiqff-platform-analysis__hero-description {
  color: var(--text-secondary);
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-hello88-tiqff-platform-analysis__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-hello88-tiqff-platform-analysis__btn-primary,
.page-blog-hello88-tiqff-platform-analysis__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-hello88-tiqff-platform-analysis__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-hello88-tiqff-platform-analysis__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-blog-hello88-tiqff-platform-analysis__btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-blog-hello88-tiqff-platform-analysis__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--background-color);
}

.page-blog-hello88-tiqff-platform-analysis__section {
  padding: 60px 0;
  background-color: var(--background-color);
}

.page-blog-hello88-tiqff-platform-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-hello88-tiqff-platform-analysis__section-title {
  color: var(--text-main);
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-hello88-tiqff-platform-analysis__section-subtitle {
  color: var(--text-main);
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-blog-hello88-tiqff-platform-analysis__introduction p,
.page-blog-hello88-tiqff-platform-analysis__technology p,
.page-blog-hello88-tiqff-platform-analysis__promotions p,
.page-blog-hello88-tiqff-platform-analysis__support p,
.page-blog-hello88-tiqff-platform-analysis__guide p,
.page-blog-hello88-tiqff-platform-analysis__conclusion p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-blog-hello88-tiqff-platform-analysis__game-grid,
.page-blog-hello88-tiqff-platform-analysis__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-hello88-tiqff-platform-analysis__game-card,
.page-blog-hello88-tiqff-platform-analysis__promo-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}

.page-blog-hello88-tiqff-platform-analysis__game-card:hover,
.page-blog-hello88-tiqff-platform-analysis__promo-card:hover {
  transform: translateY(-5px);
}

.page-blog-hello88-tiqff-platform-analysis__game-image,
.page-blog-hello88-tiqff-platform-analysis__promo-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 15px;
  min-height: 200px; /* Ensure images are not too small */
}

.page-blog-hello88-tiqff-platform-analysis__game-title,
.page-blog-hello88-tiqff-platform-analysis__promo-title {
  color: var(--text-main);
  font-size: 1.4em;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-blog-hello88-tiqff-platform-analysis__game-title a,
.page-blog-hello88-tiqff-platform-analysis__promo-title a {
  color: var(--text-main);
  text-decoration: none;
}

.page-blog-hello88-tiqff-platform-analysis__game-title a:hover,
.page-blog-hello88-tiqff-platform-analysis__promo-title a:hover {
  color: var(--secondary-color);
}

.page-blog-hello88-tiqff-platform-analysis__game-card p,
.page-blog-hello88-tiqff-platform-analysis__promo-card p {
  padding: 0 15px;
}

.page-blog-hello88-tiqff-platform-analysis__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-blog-hello88-tiqff-platform-analysis__tech-layout,
.page-blog-hello88-tiqff-platform-analysis__support-layout,
.page-blog-hello88-tiqff-platform-analysis__guide-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-blog-hello88-tiqff-platform-analysis__tech-content,
.page-blog-hello88-tiqff-platform-analysis__support-content,
.page-blog-hello88-tiqff-platform-analysis__guide-content {
  flex: 2;
}

.page-blog-hello88-tiqff-platform-analysis__tech-image-wrapper,
.page-blog-hello88-tiqff-platform-analysis__support-image-wrapper,
.page-blog-hello88-tiqff-platform-analysis__guide-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-blog-hello88-tiqff-platform-analysis__tech-image,
.page-blog-hello88-tiqff-platform-analysis__support-image,
.page-blog-hello88-tiqff-platform-analysis__guide-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  min-height: 200px; /* Ensure images are not too small */
}

.page-blog-hello88-tiqff-platform-analysis__tech-subtitle,
.page-blog-hello88-tiqff-platform-analysis__support-subtitle,
.page-blog-hello88-tiqff-platform-analysis__guide-subtitle {
  color: var(--text-main);
  font-size: 1.5em;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-blog-hello88-tiqff-platform-analysis__support-list,
.page-blog-hello88-tiqff-platform-analysis__guide-list {
  list-style-type: disc;
  margin-left: 20px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-blog-hello88-tiqff-platform-analysis__support-list li,
.page-blog-hello88-tiqff-platform-analysis__guide-list li {
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.page-blog-hello88-tiqff-platform-analysis__faq-list {
  margin-top: 30px;
  border-top: 1px solid var(--divider-color);
}

.page-blog-hello88-tiqff-platform-analysis__faq-item {
  background-color: var(--card-bg);
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.page-blog-hello88-tiqff-platform-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  color: var(--text-main);
  font-weight: bold;
  font-size: 1.15em;
  background-color: var(--card-bg);
  user-select: none;
  list-style: none;
}

.page-blog-hello88-tiqff-platform-analysis__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hello88-tiqff-platform-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-hello88-tiqff-platform-analysis__faq-item[open] .page-blog-hello88-tiqff-platform-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-hello88-tiqff-platform-analysis__faq-answer {
  padding: 0 25px 20px;
  color: var(--text-secondary);
  font-size: 1em;
}

.page-blog-hello88-tiqff-platform-analysis__cta-final {
  text-align: center;
  margin-top: 50px;
}

.page-blog-hello88-tiqff-platform-analysis__cta-banner-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 30px;
  border-radius: 12px;
  min-height: 200px; /* Ensure images are not too small */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-hello88-tiqff-platform-analysis__main-title {
    font-size: 2.5em;
  }

  .page-blog-hello88-tiqff-platform-analysis__section-title {
    font-size: 2em;
  }

  .page-blog-hello88-tiqff-platform-analysis__tech-layout,
  .page-blog-hello88-tiqff-platform-analysis__support-layout,
  .page-blog-hello88-tiqff-platform-analysis__guide-layout {
    flex-direction: column;
    align-items: center;
  }

  .page-blog-hello88-tiqff-platform-analysis__tech-content,
  .page-blog-hello88-tiqff-platform-analysis__support-content,
  .page-blog-hello88-tiqff-platform-analysis__guide-content,
  .page-blog-hello88-tiqff-platform-analysis__tech-image-wrapper,
  .page-blog-hello88-tiqff-platform-analysis__support-image-wrapper,
  .page-blog-hello88-tiqff-platform-analysis__guide-image-wrapper {
    flex: none;
    width: 100%;
    max-width: 700px; /* Constrain width for larger tablets */
  }
}

@media (max-width: 768px) {
  .page-blog-hello88-tiqff-platform-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-hello88-tiqff-platform-analysis__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px;
  }

  .page-blog-hello88-tiqff-platform-analysis__main-title {
    font-size: 1.8em;
  }

  .page-blog-hello88-tiqff-platform-analysis__hero-description {
    font-size: 1em;
  }

  .page-blog-hello88-tiqff-platform-analysis__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-blog-hello88-tiqff-platform-analysis__btn-primary,
  .page-blog-hello88-tiqff-platform-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-hello88-tiqff-platform-analysis__section {
    padding: 40px 0;
  }

  .page-blog-hello88-tiqff-platform-analysis__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-hello88-tiqff-platform-analysis__section-title {
    font-size: 1.7em;
    margin-bottom: 30px;
  }

  .page-blog-hello88-tiqff-platform-analysis__game-grid,
  .page-blog-hello88-tiqff-platform-analysis__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-hello88-tiqff-platform-analysis__tech-image-wrapper,
  .page-blog-hello88-tiqff-platform-analysis__support-image-wrapper,
  .page-blog-hello88-tiqff-platform-analysis__guide-image-wrapper {
    order: -1; /* Image above text on mobile */
    margin-bottom: 20px;
  }

  .page-blog-hello88-tiqff-platform-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-hello88-tiqff-platform-analysis__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-hello88-tiqff-platform-analysis__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-hello88-tiqff-platform-analysis__main-title {
    font-size: 1.5em;
  }

  .page-blog-hello88-tiqff-platform-analysis__section-title {
    font-size: 1.5em;
  }
}