/* style/blog-hot51-secure-gaming.css */
/* body đã padding-top: var(--header-offset) từ shared.css; trang này không cần thêm padding-top */
.page-blog-hot51-secure-gaming {
  color: #ffffff; /* Body background is #0a0a0a (dark), so text should be light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-hot51-secure-gaming__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0a0a0a; /* Ensure dark background for this section */
  color: #ffffff;
  text-align: center;
}

.page-blog-hot51-secure-gaming__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-blog-hot51-secure-gaming__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-hot51-secure-gaming__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-blog-hot51-secure-gaming__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #26A9E0; /* Brand color for main title */
}

.page-blog-hot51-secure-gaming__lead-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-hot51-secure-gaming__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-blog-hot51-secure-gaming__btn-primary,
.page-blog-hot51-secure-gaming__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
  box-sizing: border-box;
  text-align: center;
  min-width: 180px;
}

.page-blog-hot51-secure-gaming__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-hot51-secure-gaming__btn-primary:hover {
  background: #1e87b7;
  border-color: #1e87b7;
}

.page-blog-hot51-secure-gaming__btn-secondary {
  background: #EA7C07; /* Login button color for secondary CTA */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-blog-hot51-secure-gaming__btn-secondary:hover {
  background: #b96305;
  border-color: #b96305;
}

.page-blog-hot51-secure-gaming__section {
  padding: 60px 20px;
}

.page-blog-hot51-secure-gaming__content-area {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff; /* Light background for content area */
  color: #333333; /* Dark text for light background */
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-blog-hot51-secure-gaming__dark-section {
  background-color: #0a0a0a; /* Dark background for sections */
  color: #ffffff;
}

.page-blog-hot51-secure-gaming__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #26A9E0; /* Brand color for section titles */
}

.page-blog-hot51-secure-gaming__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #26A9E0; /* Brand color for sub-titles */
}

.page-blog-hot51-secure-gaming__dark-section .page-blog-hot51-secure-gaming__sub-title {
  color: #ffffff;
}

.page-blog-hot51-secure-gaming__paragraph {
  margin-bottom: 20px;
  font-size: 1rem;
}

.page-blog-hot51-secure-gaming__dark-section .page-blog-hot51-secure-gaming__paragraph {
  color: #f0f0f0;
}

.page-blog-hot51-secure-gaming__cta-buttons--bottom {
  margin-top: 50px;
}

/* FAQ Section */
.page-blog-hot51-secure-gaming__faq-section {
  padding-bottom: 80px;
}

.page-blog-hot51-secure-gaming__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-hot51-secure-gaming__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-hot51-secure-gaming__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #26A9E0;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.page-blog-hot51-secure-gaming__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hot51-secure-gaming__faq-qtext {
  flex-grow: 1;
}

.page-blog-hot51-secure-gaming__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

.page-blog-hot51-secure-gaming__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  line-height: 1.5;
  color: #f0f0f0;
}

.page-blog-hot51-secure-gaming__faq-item[open] .page-blog-hot51-secure-gaming__faq-question {
  border-bottom: none;
}

/* Floating Buttons */
.page-blog-hot51-secure-gaming__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-blog-hot51-secure-gaming__floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 45px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-blog-hot51-secure-gaming__floating-btn--register {
  background-color: #26A9E0;
}

.page-blog-hot51-secure-gaming__floating-btn--login {
  background-color: #EA7C07;
}

.page-blog-hot51-secure-gaming__floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Conclusion Section */
.page-blog-hot51-secure-gaming__conclusion {
  text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-hot51-secure-gaming {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-hot51-secure-gaming__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-hot51-secure-gaming__main-title {
    font-size: 2.2rem;
  }

  .page-blog-hot51-secure-gaming__lead-text {
    font-size: 1rem;
  }

  .page-blog-hot51-secure-gaming__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-blog-hot51-secure-gaming__btn-primary,
  .page-blog-hot51-secure-gaming__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-hot51-secure-gaming__section {
    padding: 40px 15px;
  }

  .page-blog-hot51-secure-gaming__content-area {
    padding: 30px 15px;
  }

  .page-blog-hot51-secure-gaming__section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .page-blog-hot51-secure-gaming__sub-title {
    font-size: 1.2rem;
    margin-top: 30px;
  }

  .page-blog-hot51-secure-gaming img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-hot51-secure-gaming__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-blog-hot51-secure-gaming__faq-answer {
    padding: 0 15px 15px;
  }

  .page-blog-hot51-secure-gaming__floating-buttons {
    flex-direction: row;
    width: calc(100% - 40px);
    left: 20px;
    right: 20px;
    justify-content: space-around;
    bottom: 15px;
  }

  .page-blog-hot51-secure-gaming__floating-btn {
    width: 48%;
    max-width: 150px;
    height: 40px;
    font-size: 0.85rem;
  }

  .page-blog-hot51-secure-gaming__video-section,
  .page-blog-hot51-secure-gaming__video-container,
  .page-blog-hot51-secure-gaming__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-blog-hot51-secure-gaming__main-title {
    font-size: 1.8rem;
  }

  .page-blog-hot51-secure-gaming__section-title {
    font-size: 1.6rem;
  }

  .page-blog-hot51-secure-gaming__floating-buttons {
    gap: 8px;
  }

  .page-blog-hot51-secure-gaming__floating-btn {
    width: 47%;
  }
}