/* style/blog-hp88-safe-access-link.css */

/* Base styles for the page content */
.page-blog-hp88-safe-access-link {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Dark body background #0a0a0a, so use light text */
  background-color: transparent; /* Rely on body background */
}

.page-blog-hp88-safe-access-link__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-hp88-safe-access-link__section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-hp88-safe-access-link__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-blog-hp88-safe-access-link__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Hero Section */
.page-blog-hp88-safe-access-link__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 60px;
  padding-top: 10px; /* Minimal top padding, body handles header offset */
  overflow: hidden;
}

.page-blog-hp88-safe-access-link__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.page-blog-hp88-safe-access-link__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-blog-hp88-safe-access-link__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 80px 20px;
  box-sizing: border-box;
}

.page-blog-hp88-safe-access-link__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

.page-blog-hp88-safe-access-link__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.7;
}

.page-blog-hp88-safe-access-link__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-hp88-safe-access-link__btn-primary,
.page-blog-hp88-safe-access-link__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-blog-hp88-safe-access-link__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-blog-hp88-safe-access-link__btn-primary:hover {
  background-color: #1a7fb2;
  border-color: #1a7fb2;
}

.page-blog-hp88-safe-access-link__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-hp88-safe-access-link__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

/* Feature Grid */
.page-blog-hp88-safe-access-link__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-hp88-safe-access-link__feature-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-hp88-safe-access-link__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-hp88-safe-access-link__feature-icon {
  width: 100%;
  height: auto;
  max-width: 150px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-hp88-safe-access-link__feature-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-hp88-safe-access-link__feature-description {
  font-size: 1em;
  color: #e0e0e0;
}

/* Guide Steps */
.page-blog-hp88-safe-access-link__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-blog-hp88-safe-access-link__step-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-hp88-safe-access-link__step-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-hp88-safe-access-link__step-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-hp88-safe-access-link__step-description {
  font-size: 1em;
  color: #e0e0e0;
}

/* Solution Cards */
.page-blog-hp88-safe-access-link__solution-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-hp88-safe-access-link__solution-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-hp88-safe-access-link__solution-icon {
  width: 100%;
  height: auto;
  max-width: 120px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-hp88-safe-access-link__solution-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-hp88-safe-access-link__solution-description {
  font-size: 1em;
  color: #e0e0e0;
}

/* Process Steps (Registration/Login) */
.page-blog-hp88-safe-access-link__process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-hp88-safe-access-link__process-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-hp88-safe-access-link__process-icon {
  width: 100%;
  height: auto;
  max-width: 100px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-hp88-safe-access-link__process-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-hp88-safe-access-link__process-list {
  list-style-type: decimal;
  padding-left: 20px;
  color: #e0e0e0;
}

.page-blog-hp88-safe-access-link__process-list li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-blog-hp88-safe-access-link__process-list li strong {
  color: #FFFFFF;
}

.page-blog-hp88-safe-access-link__notes-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  margin-top: 40px;
  text-align: left;
  color: #e0e0e0;
}

.page-blog-hp88-safe-access-link__notes-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-hp88-safe-access-link__notes-list {
  list-style-type: disc;
  padding-left: 20px;
}

.page-blog-hp88-safe-access-link__notes-list li {
  margin-bottom: 8px;
  font-size: 1em;
}

/* Game Categories */
.page-blog-hp88-safe-access-link__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-hp88-safe-access-link__game-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.page-blog-hp88-safe-access-link__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-hp88-safe-access-link__game-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-hp88-safe-access-link__game-description {
  font-size: 0.95em;
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-hp88-safe-access-link__game-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #EA7C07; /* Login color for game links */
  color: #FFFFFF;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  align-self: flex-start;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-hp88-safe-access-link__game-link:hover {
  background-color: #c96a06;
}

/* FAQ Section */
.page-blog-hp88-safe-access-link__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-blog-hp88-safe-access-link__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-hp88-safe-access-link__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* For details/summary */
}

.page-blog-hp88-safe-access-link__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hp88-safe-access-link__faq-qtext {
  flex-grow: 1;
  color: #FFFFFF;
}

.page-blog-hp88-safe-access-link__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-blog-hp88-safe-access-link__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.6;
  padding-top: 0;
}

/* Last CTA Area */
.page-blog-hp88-safe-access-link__cta-area {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-hp88-safe-access-link__section-title {
    font-size: 2em;
  }
  .page-blog-hp88-safe-access-link__hero-content {
    padding: 60px 20px;
  }
}

@media (max-width: 768px) {
  .page-blog-hp88-safe-access-link {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-hp88-safe-access-link__section {
    padding: 40px 0;
  }
  .page-blog-hp88-safe-access-link__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-blog-hp88-safe-access-link__text-block {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-hp88-safe-access-link__hero-content {
    padding: 40px 15px;
  }
  .page-blog-hp88-safe-access-link__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-blog-hp88-safe-access-link__hero-description {
    font-size: 1.05em;
    margin-bottom: 30px;
  }

  .page-blog-hp88-safe-access-link__cta-buttons,
  .page-blog-hp88-safe-access-link__cta-area {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-blog-hp88-safe-access-link__btn-primary,
  .page-blog-hp88-safe-access-link__btn-secondary,
  .page-blog-hp88-safe-access-link__game-link {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-hp88-safe-access-link__feature-grid,
  .page-blog-hp88-safe-access-link__guide-steps,
  .page-blog-hp88-safe-access-link__solution-cards,
  .page-blog-hp88-safe-access-link__process-steps,
  .page-blog-hp88-safe-access-link__game-categories {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
  }

  .page-blog-hp88-safe-access-link__feature-card,
  .page-blog-hp88-safe-access-link__step-item,
  .page-blog-hp88-safe-access-link__solution-card,
  .page-blog-hp88-safe-access-link__process-card,
  .page-blog-hp88-safe-access-link__game-card,
  .page-blog-hp88-safe-access-link__notes-section,
  .page-blog-hp88-safe-access-link__faq-list {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
  }

  /* Image and video responsive rules */
  .page-blog-hp88-safe-access-link img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-hp88-safe-access-link video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-hp88-safe-access-link__video-section,
  .page-blog-hp88-safe-access-link__video-container,
  .page-blog-hp88-safe-access-link__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-hp88-safe-access-link__hero-section {
    padding-top: 10px !important;
  }

  .page-blog-hp88-safe-access-link__faq-question {
    font-size: 1.05em;
    padding: 15px 20px;
  }
  .page-blog-hp88-safe-access-link__faq-answer {
    padding: 15px 20px;
  }
  .page-blog-hp88-safe-access-link__faq-toggle {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-blog-hp88-safe-access-link__main-title {
    font-size: 1.8em;
  }
  .page-blog-hp88-safe-access-link__hero-description {
    font-size: 0.95em;
  }
  .page-blog-hp88-safe-access-link__section-title {
    font-size: 1.5em;
  }
  .page-blog-hp88-safe-access-link__feature-title,
  .page-blog-hp88-safe-access-link__step-title,
  .page-blog-hp88-safe-access-link__solution-title,
  .page-blog-hp88-safe-access-link__process-title,
  .page-blog-hp88-safe-access-link__game-title,
  .page-blog-hp88-safe-access-link__notes-title {
    font-size: 1.2em;
  }
}