/* style/blog-how-to-choose-safe-fishing-slot-platform.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-color: #C30808;
  --login-button-color: #C30808;
  --background-color: #FFFFFF;
  --register-login-font-color: #FFFF00;
  --text-color: #333333;
  --light-gray: #f5f5f5;
  --border-color: #e0e0e0;
}

.page-blog-how-to-choose-safe-fishing-slot-platform {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color); /* Body background is default white, so dark text */
  background-color: var(--background-color);
}

.page-blog-how-to-choose-safe-fishing-slot-platform__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, header offset handled by body */
  background-color: var(--light-gray);
}

.page-blog-how-to-choose-safe-fishing-slot-platform__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__main-title {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
  margin-bottom: 20px;
  max-width: 900px; /* Constraint H1 font size implicitly */
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__intro-text {
  font-size: 1.15em;
  color: #555555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--register-button-color); /* Using specific register color */
  color: var(--register-login-font-color); /* Using specific register font color */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__cta-button:hover {
  background: darken(var(--register-button-color), 10%); /* Example hover effect */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-choose-safe-fishing-slot-platform__cta-button--secondary {
  background: var(--primary-color);
  color: var(--secondary-color);
  margin-left: 15px;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__cta-button--secondary:hover {
  background: darken(var(--primary-color), 10%);
}

.page-blog-how-to-choose-safe-fishing-slot-platform__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background-color);
}

.page-blog-how-to-choose-safe-fishing-slot-platform__section-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__article p {
  margin-bottom: 1em;
  color: #444;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__card {
  background: var(--secondary-color);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-color);
}

.page-blog-how-to-choose-safe-fishing-slot-platform__card-title {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 15px;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__feature-item {
  background: var(--secondary-color);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  text-align: center;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__feature-item img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__feature-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__sub-list {
  list-style-type: disc;
  text-align: left;
  margin-left: 20px;
  color: #555;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__sub-list li {
  margin-bottom: 5px;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__warning-list,
.page-blog-how-to-choose-safe-fishing-slot-platform__checklist {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #444;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__warning-list li,
.page-blog-how-to-choose-safe-fishing-slot-platform__checklist li {
  margin-bottom: 10px;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__cta-block {
  text-align: center;
  background-color: var(--light-gray);
  padding: 30px 20px;
  border-radius: 8px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__cta-block p {
  font-size: 1.2em;
  color: var(--text-color);
  margin-bottom: 25px;
}

.page-blog-how-to-choose-safe-fishing-slot-platform__faq-container {
  margin-top: 30px;
}

details.page-blog-how-to-choose-safe-fishing-slot-platform__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--secondary-color);
}
details.page-blog-how-to-choose-safe-fishing-slot-platform__faq-item summary.page-blog-how-to-choose-safe-fishing-slot-platform__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-blog-how-to-choose-safe-fishing-slot-platform__faq-item summary.page-blog-how-to-choose-safe-fishing-slot-platform__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-how-to-choose-safe-fishing-slot-platform__faq-item summary.page-blog-how-to-choose-safe-fishing-slot-platform__faq-question:hover {
  background: var(--light-gray);
}
.page-blog-how-to-choose-safe-fishing-slot-platform__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--primary-color);
}
.page-blog-how-to-choose-safe-fishing-slot-platform__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-how-to-choose-safe-fishing-slot-platform__faq-item .page-blog-how-to-choose-safe-fishing-slot-platform__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #555;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-choose-safe-fishing-slot-platform__main-title {
    font-size: 2.5em;
  }
  .page-blog-how-to-choose-safe-fishing-slot-platform__section-title {
    font-size: 1.8em;
  }
  .page-blog-how-to-choose-safe-fishing-slot-platform__intro-text {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-safe-fishing-slot-platform__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-how-to-choose-safe-fishing-slot-platform__hero-image img {
    border-radius: 4px;
  }
  
  .page-blog-how-to-choose-safe-fishing-slot-platform__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-blog-how-to-choose-safe-fishing-slot-platform__cta-button--secondary {
    margin-top: 15px !important;
  }

  .page-blog-how-to-choose-safe-fishing-slot-platform__cta-block .page-blog-how-to-choose-safe-fishing-slot-platform__cta-button {
    margin-bottom: 15px;
  }

  .page-blog-how-to-choose-safe-fishing-slot-platform__main-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-blog-how-to-choose-safe-fishing-slot-platform__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-how-to-choose-safe-fishing-slot-platform__content-area {
    padding: 20px 15px;
  }

  .page-blog-how-to-choose-safe-fishing-slot-platform__section-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-how-to-choose-safe-fishing-slot-platform img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-how-to-choose-safe-fishing-slot-platform__section,
  .page-blog-how-to-choose-safe-fishing-slot-platform__card,
  .page-blog-how-to-choose-safe-fishing-slot-platform__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  details.page-blog-how-to-choose-safe-fishing-slot-platform__faq-item summary.page-blog-how-to-choose-safe-fishing-slot-platform__faq-question { padding: 15px; }
  .page-blog-how-to-choose-safe-fishing-slot-platform__faq-qtext { font-size: 15px; }
}

/* Ensure content images are not too small */
.page-blog-how-to-choose-safe-fishing-slot-platform__feature-item img {
  min-width: 200px;
  min-height: 200px;
}

/* No CSS filters on images */
.page-blog-how-to-choose-safe-fishing-slot-platform img {
  filter: none; /* Ensure no filters are applied */
}