/* style/blog-ibet889-safe-access-guide.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-ibet889-safe-access-guide {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background from shared.css */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-ibet889-safe-access-guide__section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

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

.page-blog-ibet889-safe-access-guide__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.page-blog-ibet889-safe-access-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-ibet889-safe-access-guide__hero-content {
  max-width: 900px;
  z-index: 1;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background for text */
  border-radius: 8px;
  margin-top: -100px; /* Adjust to place content below image */
  position: relative; /* Ensure it's above other elements */
}

.page-blog-ibet889-safe-access-guide__main-title {
  color: #FFFFFF;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-blog-ibet889-safe-access-guide__hero-description {
  color: #f0f0f0;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-blog-ibet889-safe-access-guide__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-ibet889-safe-access-guide__btn-primary,
.page-blog-ibet889-safe-access-guide__btn-secondary {
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-ibet889-safe-access-guide__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-blog-ibet889-safe-access-guide__btn-primary:hover {
  background-color: #1a7bb7;
  border-color: #1a7bb7;
}

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

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

.page-blog-ibet889-safe-access-guide__btn-block {
  display: block;
  width: 100%;
  max-width: 300px; /* Limit width for block buttons */
  margin: 20px auto;
}

/* Content Area */
.page-blog-ibet889-safe-access-guide__content-area {
  background-color: #0d0d0d; /* Slightly lighter dark background for content */
  color: #ffffff;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-ibet889-safe-access-guide__section-title {
  color: #26A9E0;
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-blog-ibet889-safe-access-guide__sub-title {
  color: #26A9E0;
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-ibet889-safe-access-guide__paragraph {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-blog-ibet889-safe-access-guide__list,
.page-blog-ibet889-safe-access-guide__ordered-list {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-blog-ibet889-safe-access-guide__list-item {
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-blog-ibet889-safe-access-guide__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-blog-ibet889-safe-access-guide__feature-card {
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-ibet889-safe-access-guide__feature-card:hover {
  transform: translateY(-5px);
}

.page-blog-ibet889-safe-access-guide__feature-title {
  color: #26A9E0;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.page-blog-ibet889-safe-access-guide__feature-description {
  color: #333333; /* Darker text for light background cards */
}

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

.page-blog-ibet889-safe-access-guide__category-card {
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-ibet889-safe-access-guide__category-card:hover {
  transform: translateY(-5px);
}

.page-blog-ibet889-safe-access-guide__category-title {
  color: #FFFFFF;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.page-blog-ibet889-safe-access-guide__category-description {
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-blog-ibet889-safe-access-guide__category-link {
  display: inline-block;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-blog-ibet889-safe-access-guide__category-link:hover {
  background-color: #1a7bb7;
}

/* FAQ Section */
.page-blog-ibet889-safe-access-guide__faq-list {
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-ibet889-safe-access-guide__faq-item {
  background: rgba(255, 255, 255, 0.1); /* Light transparent background for FAQ items */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-ibet889-safe-access-guide__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.page-blog-ibet889-safe-access-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-ibet889-safe-access-guide__faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

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

.page-blog-ibet889-safe-access-guide__faq-answer {
  padding: 15px 25px 20px;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-blog-ibet889-safe-access-guide__faq-answer p {
  margin-bottom: 0;
}

/* Color contrast specific styles */
.page-blog-ibet889-safe-access-guide__light-bg {
  background: #FFFFFF;
  color: #333333; /* Dark text for light background */
}

.page-blog-ibet889-safe-access-guide__dark-bg {
  background: #26A9E0;
  color: #ffffff; /* White text for brand color background */
}

.page-blog-ibet889-safe-access-guide__cta-buttons--bottom {
  margin-top: 50px;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-ibet889-safe-access-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-ibet889-safe-access-guide__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-ibet889-safe-access-guide__hero-content {
    margin-top: -50px;
    padding: 15px;
  }

  .page-blog-ibet889-safe-access-guide__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-blog-ibet889-safe-access-guide__hero-description {
    font-size: 1rem;
  }

  .page-blog-ibet889-safe-access-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-ibet889-safe-access-guide__btn-primary,
  .page-blog-ibet889-safe-access-guide__btn-secondary {
    max-width: 100% !important;
    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-ibet889-safe-access-guide__content-area,
  .page-blog-ibet889-safe-access-guide__section-wrapper {
    padding: 20px 15px;
  }

  .page-blog-ibet889-safe-access-guide__section-title {
    font-size: 1.8rem;
  }

  .page-blog-ibet889-safe-access-guide__sub-title {
    font-size: 1.3rem;
  }

  .page-blog-ibet889-safe-access-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-ibet889-safe-access-guide__feature-grid,
  .page-blog-ibet889-safe-access-guide__game-categories {
    grid-template-columns: 1fr;
  }

  .page-blog-ibet889-safe-access-guide__feature-card,
  .page-blog-ibet889-safe-access-guide__category-card,
  .page-blog-ibet889-safe-access-guide__faq-item {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-ibet889-safe-access-guide__faq-item summary {
    padding: 15px;
  }

  .page-blog-ibet889-safe-access-guide__faq-answer {
    padding: 10px 15px 15px;
  }
}

/* Desktop specific styles for video container width */
.page-blog-ibet889-safe-access-guide__video-container {
  width: 100%;
}