/* style/blog-hello88-nul-betting-guide.css */

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

/* body 已 padding-top: var(--header-offset)；页面禁止再写该变量 */
.page-blog-hello88-nul-betting-guide {
  background-color: var(--background-color);
  color: var(--text-main-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 80px; /* Space for floating buttons */
}

.page-blog-hello88-nul-betting-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
  background-color: var(--card-bg-color);
}

.page-blog-hello88-nul-betting-guide__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height to prevent image from being too tall on desktop */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.page-blog-hello88-nul-betting-guide__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-blog-hello88-nul-betting-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  margin-top: -100px; /* Overlay text slightly on image, but not directly on it */
  background-color: rgba(17, 39, 27, 0.85); /* Semi-transparent background for text readability */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.page-blog-hello88-nul-betting-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--text-main-color);
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-hello88-nul-betting-guide__description {
  font-size: 1.1rem;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

.page-blog-hello88-nul-betting-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-hello88-nul-betting-guide__btn-primary,
.page-blog-hello88-nul-betting-guide__btn-secondary,
.page-blog-hello88-nul-betting-guide__btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  box-sizing: border-box;
}

.page-blog-hello88-nul-betting-guide__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main-color);
  border: none;
}

.page-blog-hello88-nul-betting-guide__btn-primary:hover {
  box-shadow: 0 6px 20px rgba(87, 227, 141, 0.4);
  transform: translateY(-2px);
}

.page-blog-hello88-nul-betting-guide__btn-secondary {
  background-color: transparent;
  color: var(--glow-color);
  border: 2px solid var(--glow-color);
}

.page-blog-hello88-nul-betting-guide__btn-secondary:hover {
  background-color: var(--glow-color);
  color: var(--background-color);
  transform: translateY(-2px);
}

.page-blog-hello88-nul-betting-guide__btn-tertiary {
  background-color: var(--deep-green-color);
  color: var(--text-main-color);
  border: none;
  padding: 8px 15px;
  font-size: 0.9rem;
}

.page-blog-hello88-nul-betting-guide__btn-tertiary:hover {
  background-color: var(--primary-color);
  transform: translateY(-1px);
}

.page-blog-hello88-nul-betting-guide__btn-large {
    padding: 15px 35px;
    font-size: 1.2rem;
}

.page-blog-hello88-nul-betting-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-hello88-nul-betting-guide__section:last-of-type {
  border-bottom: none;
}

.page-blog-hello88-nul-betting-guide__section:nth-child(odd) {
    background-color: var(--card-bg-color);
    color: var(--text-main-color);
}

.page-blog-hello88-nul-betting-guide__section:nth-child(even) {
    background-color: var(--background-color);
    color: var(--text-main-color);
}

.page-blog-hello88-nul-betting-guide__light-bg {
  background-color: var(--deep-green-color);
  color: var(--text-main-color);
}

.page-blog-hello88-nul-betting-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-hello88-nul-betting-guide__section-title {
  font-size: 2.5rem;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-hello88-nul-betting-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--glow-color);
  border-radius: 2px;
}

.page-blog-hello88-nul-betting-guide__sub-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-blog-hello88-nul-betting-guide p {
  margin-bottom: 15px;
  color: var(--text-secondary-color);
}

.page-blog-hello88-nul-betting-guide strong {
  color: var(--text-main-color);
}

.page-blog-hello88-nul-betting-guide__unordered-list,
.page-blog-hello88-nul-betting-guide__ordered-list {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-blog-hello88-nul-betting-guide__unordered-list li,
.page-blog-hello88-nul-betting-guide__ordered-list li {
  margin-bottom: 10px;
  color: var(--text-secondary-color);
}

.page-blog-hello88-nul-betting-guide__unordered-list li strong {
    color: var(--text-main-color);
}

.page-blog-hello88-nul-betting-guide__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-blog-hello88-nul-betting-guide__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-hello88-nul-betting-guide__game-card {
  background-color: var(--deep-green-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-blog-hello88-nul-betting-guide__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(87, 227, 141, 0.3);
}

.page-blog-hello88-nul-betting-guide__card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-hello88-nul-betting-guide__card-title {
  font-size: 1.5rem;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-blog-hello88-nul-betting-guide__card-title a {
    color: inherit;
    text-decoration: none;
}

.page-blog-hello88-nul-betting-guide__card-title a:hover {
    text-decoration: underline;
}

.page-blog-hello88-nul-betting-guide__game-card p {
  font-size: 0.95rem;
  color: var(--text-secondary-color);
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-blog-hello88-nul-betting-guide__text-center {
    text-align: center;
}

.page-blog-hello88-nul-betting-guide__faq-list {
    margin-top: 30px;
}

.page-blog-hello88-nul-betting-guide__faq-item {
    background-color: var(--deep-green-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-blog-hello88-nul-betting-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-main-color);
    background-color: var(--deep-green-color);
    border-bottom: 1px solid var(--border-color);
    user-select: none;
    list-style: none;
}

.page-blog-hello88-nul-betting-guide__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-hello88-nul-betting-guide__faq-item[open] > .page-blog-hello88-nul-betting-guide__faq-question {
    background-color: var(--primary-color);
    color: var(--text-main-color);
    border-bottom: 1px solid var(--primary-color);
}

.page-blog-hello88-nul-betting-guide__faq-qtext {
    flex-grow: 1;
}

.page-blog-hello88-nul-betting-guide__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-blog-hello88-nul-betting-guide__faq-item[open] .page-blog-hello88-nul-betting-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-hello88-nul-betting-guide__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    color: var(--text-secondary-color);
    background-color: var(--card-bg-color);
}

.page-blog-hello88-nul-betting-guide__faq-answer p {
    margin-bottom: 10px;
}

.page-blog-hello88-nul-betting-guide__floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-blog-hello88-nul-betting-guide__floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 45px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    color: var(--text-main-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-hello88-nul-betting-guide__floating-btn--register {
    background: var(--button-gradient);
}

.page-blog-hello88-nul-betting-guide__floating-btn--login {
    background-color: var(--deep-green-color);
    border: 1px solid var(--primary-color);
}

.page-blog-hello88-nul-betting-guide__floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(87, 227, 141, 0.6);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-hello88-nul-betting-guide__hero-content {
    margin-top: -80px;
  }
  .page-blog-hello88-nul-betting-guide__section-title {
    font-size: 2rem;
  }
  .page-blog-hello88-nul-betting-guide__sub-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .page-blog-hello88-nul-betting-guide__hero-content {
    margin-top: -60px;
    padding: 15px;
  }
  .page-blog-hello88-nul-betting-guide__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .page-blog-hello88-nul-betting-guide__description {
    font-size: 1rem;
  }
  .page-blog-hello88-nul-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-hello88-nul-betting-guide__btn-primary,
  .page-blog-hello88-nul-betting-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-left: 15px;
    padding-right: 15px;
  }

  .page-blog-hello88-nul-betting-guide__section {
    padding: 40px 0;
  }
  .page-blog-hello88-nul-betting-guide__content-area {
    padding: 0 15px;
  }
  .page-blog-hello88-nul-betting-guide__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-blog-hello88-nul-betting-guide__sub-title {
    font-size: 1.4rem;
  }
  .page-blog-hello88-nul-betting-guide__game-categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-hello88-nul-betting-guide__card-image {
    height: 150px;
  }
  .page-blog-hello88-nul-betting-guide__card-title {
    font-size: 1.3rem;
  }
  .page-blog-hello88-nul-betting-guide__faq-question {
      font-size: 1rem;
      padding: 15px 20px;
  }
  .page-blog-hello88-nul-betting-guide__faq-toggle {
      font-size: 1.5rem;
      width: 25px;
  }
  .page-blog-hello88-nul-betting-guide__faq-answer {
      padding: 10px 20px 15px;
      font-size: 0.9rem;
  }
  
  /* Image responsiveness */
  .page-blog-hello88-nul-betting-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-hello88-nul-betting-guide__section,
  .page-blog-hello88-nul-betting-guide__card,
  .page-blog-hello88-nul-betting-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-hello88-nul-betting-guide__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, this is decorative */
  }

  /* Floating buttons for mobile */
  .page-blog-hello88-nul-betting-guide__floating-buttons {
      flex-direction: row;
      width: calc(100% - 40px);
      left: 20px;
      right: 20px;
      justify-content: space-around;
  }
  .page-blog-hello88-nul-betting-guide__floating-btn {
      width: 48%;
      height: 40px;
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
    .page-blog-hello88-nul-betting-guide__hero-content {
        margin-top: -40px;
    }
    .page-blog-hello88-nul-betting-guide__main-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }
    .page-blog-hello88-nul-betting-guide__floating-buttons {
        bottom: 15px;
        left: 15px;
        right: 15px;
        width: calc(100% - 30px);
    }
    .page-blog-hello88-nul-betting-guide__floating-btn {
        width: 47%;
    }
}