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

/* Body background from shared.css is var(--bg-color), which is #08160F (dark). */
/* Text colors are set to ensure contrast against this dark background. */

.page-blog-how-to-choose-safe-slot-games {
  color: var(--text-main, #F2FFF6); /* Light text for dark body background */
  background-color: var(--bg-color, #08160F);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-how-to-choose-safe-slot-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, relying on body for header offset */
  overflow: hidden;
  background-color: var(--bg-color, #08160F);
}

.page-blog-how-to-choose-safe-slot-games__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-safe-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-choose-safe-slot-games__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  color: var(--text-main, #F2FFF6);
}

.page-blog-how-to-choose-safe-slot-games__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em); /* Responsive font size for H1 */
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-main, #F2FFF6);
  line-height: 1.2;
}

.page-blog-how-to-choose-safe-slot-games__intro-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-how-to-choose-safe-slot-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-blog-how-to-choose-safe-slot-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* White text for green button */
  border: none;
}

.page-blog-how-to-choose-safe-slot-games__btn-primary:hover {
  opacity: 0.9;
}

.page-blog-how-to-choose-safe-slot-games__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--bg-color, #08160F);
  color: var(--text-main, #F2FFF6);
}

.page-blog-how-to-choose-safe-slot-games__section-title {
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-main, #F2FFF6);
}

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

.page-blog-how-to-choose-safe-slot-games__feature-item,
.page-blog-how-to-choose-safe-slot-games__mistake-item {
  background-color: var(--card-b-g, #11271B); /* Card BG color */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-main, #F2FFF6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--border-color, #2E7A4E);
}

.page-blog-how-to-choose-safe-slot-games__feature-title,
.page-blog-how-to-choose-safe-slot-games__mistake-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--gold, #F2C14E);
}

.page-blog-how-to-choose-safe-slot-games__feature-image {
  width: 100%;
  max-width: 400px; /* Example max-width for content images */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-choose-safe-slot-games p {
  margin-bottom: 15px;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-how-to-choose-safe-slot-games__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-choose-safe-slot-games__faq-item {
  background-color: var(--card-b-g, #11271B);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid var(--border-color, #2E7A4E);
}

.page-blog-how-to-choose-safe-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: var(--text-main, #F2FFF6);
  background-color: var(--deep-green, #0A4B2C);
  border-bottom: 1px solid var(--divider, #1E3A2A);
}

.page-blog-how-to-choose-safe-slot-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-choose-safe-slot-games__faq-question::marker {
  display: none;
}

.page-blog-how-to-choose-safe-slot-games__faq-qtext {
  flex-grow: 1;
  color: var(--text-main, #F2FFF6);
}

.page-blog-how-to-choose-safe-slot-games__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--gold, #F2C14E);
}

.page-blog-how-to-choose-safe-slot-games__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: var(--text-secondary, #A7D9B8);
  line-height: 1.6;
}

.page-blog-how-to-choose-safe-slot-games__faq-item[open] .page-blog-how-to-choose-safe-slot-games__faq-question {
  border-bottom: 1px solid var(--divider, #1E3A2A);
}

.page-blog-how-to-choose-safe-slot-games__faq-item[open] .page-blog-how-to-choose-safe-slot-games__faq-toggle {
  content: '−';
}

/* Ensure all images meet minimum size requirements */
.page-blog-how-to-choose-safe-slot-games img {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-choose-safe-slot-games__hero-content {
    max-width: 768px;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-safe-slot-games__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-how-to-choose-safe-slot-games__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-blog-how-to-choose-safe-slot-games__intro-description {
    font-size: 1em;
  }

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

  .page-blog-how-to-choose-safe-slot-games__feature-grid,
  .page-blog-how-to-choose-safe-slot-games__mistake-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-how-to-choose-safe-slot-games__content-area {
    padding: 40px 15px;
  }

  /* Mobile image responsiveness */
  .page-blog-how-to-choose-safe-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-choose-safe-slot-games__hero-image-wrapper,
  .page-blog-how-to-choose-safe-slot-games__feature-item,
  .page-blog-how-to-choose-safe-slot-games__mistake-item,
  .page-blog-how-to-choose-safe-slot-games__faq-item,
  .page-blog-how-to-choose-safe-slot-games__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Mobile button responsiveness */
  .page-blog-how-to-choose-safe-slot-games__cta-button,
  .page-blog-how-to-choose-safe-slot-games__btn-primary {
    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-how-to-choose-safe-slot-games__hero-content .page-blog-how-to-choose-safe-slot-games__cta-button {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}