/* style/blog-188loto-security-fairness-deep-dive.css */

/* Root variables for colors */
:root {
  --page-primary-color: #11A84E;
  --page-secondary-color: #22C768;
  --page-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-card-bg: #11271B;
  --page-background: #08160F;
  --page-text-main: #F2FFF6;
  --page-text-secondary: #A7D9B8;
  --page-border-color: #2E7A4E;
  --page-glow-color: #57E38D;
  --page-gold-color: #F2C14E;
  --page-divider-color: #1E3A2A;
  --page-deep-green: #0A4B2C;
}

.page-blog-188loto-security-fairness-deep-dive {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-text-main); /* Default text color for the page, assuming dark body bg */
  background-color: var(--page-background);
}

.page-blog-188loto-security-fairness-deep-dive__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-188loto-security-fairness-deep-dive__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--page-deep-green);
  overflow: hidden;
}

.page-blog-188loto-security-fairness-deep-dive__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-188loto-security-fairness-deep-dive__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-188loto-security-fairness-deep-dive__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 40px 20px 80px;
  color: var(--page-text-main);
  background-color: var(--page-deep-green);
  width: 100%;
}

.page-blog-188loto-security-fairness-deep-dive__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--page-text-main);
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-188loto-security-fairness-deep-dive__hero-description {
  font-size: 1.1rem;
  color: var(--page-text-secondary);
  margin-bottom: 40px;
}

.page-blog-188loto-security-fairness-deep-dive__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-188loto-security-fairness-deep-dive__btn-primary,
.page-blog-188loto-security-fairness-deep-dive__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-188loto-security-fairness-deep-dive__btn-primary {
  background: var(--page-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-188loto-security-fairness-deep-dive__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
}

.page-blog-188loto-security-fairness-deep-dive__btn-secondary {
  background-color: transparent;
  color: var(--page-text-main);
  border: 2px solid var(--page-primary-color);
}

.page-blog-188loto-security-fairness-deep-dive__btn-secondary:hover {
  background-color: var(--page-primary-color);
  color: #ffffff;
  transform: translateY(-3px);
}

.page-blog-188loto-security-fairness-deep-dive__content-area {
  padding: 60px 0;
  background-color: var(--page-background);
  color: var(--page-text-main);
}

.page-blog-188loto-security-fairness-deep-dive__dark-bg {
  background-color: var(--page-background);
  color: var(--page-text-main);
}

.page-blog-188loto-security-fairness-deep-dive__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--page-text-main);
  margin-bottom: 30px;
  text-align: center;
  padding-top: 20px;
}

.page-blog-188loto-security-fairness-deep-dive__paragraph {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--page-text-secondary);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-188loto-security-fairness-deep-dive__image-wrapper {
  text-align: center;
  margin: 40px auto;
  max-width: 900px;
}

.page-blog-188loto-security-fairness-deep-dive__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.page-blog-188loto-security-fairness-deep-dive__cta-buttons--bottom {
  margin-top: 60px;
}

.page-blog-188loto-security-fairness-deep-dive__faq-section {
  padding: 60px 0 80px;
  background-color: var(--page-deep-green);
  color: var(--page-text-main);
}

.page-blog-188loto-security-fairness-deep-dive__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-blog-188loto-security-fairness-deep-dive__faq-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-188loto-security-fairness-deep-dive__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--page-text-main);
  position: relative;
  list-style: none;
}

.page-blog-188loto-security-fairness-deep-dive__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-188loto-security-fairness-deep-dive__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--page-primary-color);
}

.page-blog-188loto-security-fairness-deep-dive__faq-item[open] .page-blog-188loto-security-fairness-deep-dive__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-188loto-security-fairness-deep-dive__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: var(--page-text-secondary);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-188loto-security-fairness-deep-dive {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-188loto-security-fairness-deep-dive__hero-content {
    padding: 30px 15px 60px;
  }

  .page-blog-188loto-security-fairness-deep-dive__main-title {
    font-size: 2.2rem !important;
  }

  .page-blog-188loto-security-fairness-deep-dive__hero-description {
    font-size: 1rem;
  }

  .page-blog-188loto-security-fairness-deep-dive__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-188loto-security-fairness-deep-dive__btn-primary,
  .page-blog-188loto-security-fairness-deep-dive__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-188loto-security-fairness-deep-dive__content-area,
  .page-blog-188loto-security-fairness-deep-dive__faq-section {
    padding: 40px 0;
  }

  .page-blog-188loto-security-fairness-deep-dive__container {
    padding: 0 15px;
  }

  .page-blog-188loto-security-fairness-deep-dive__section-title {
    font-size: 1.8rem !important;
    margin-bottom: 25px;
  }

  .page-blog-188loto-security-fairness-deep-dive__paragraph {
    font-size: 0.95rem;
  }

  .page-blog-188loto-security-fairness-deep-dive__image-wrapper {
    margin: 30px auto;
  }

  .page-blog-188loto-security-fairness-deep-dive__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  
  .page-blog-188loto-security-fairness-deep-dive__faq-question {
    font-size: 1rem;
  }

  .page-blog-188loto-security-fairness-deep-dive__faq-answer {
    font-size: 0.9rem;
  }
  
  /* Ensure all content containers have proper padding for mobile */
  .page-blog-188loto-security-fairness-deep-dive__hero-image-wrapper,
  .page-blog-188loto-security-fairness-deep-dive__content-area .page-blog-188loto-security-fairness-deep-dive__container,
  .page-blog-188loto-security-fairness-deep-dive__faq-section .page-blog-188loto-security-fairness-deep-dive__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* Padding only for content containers, not image wrappers that need full width */
  }
  /* Specific override for content containers to have padding */
  .page-blog-188loto-security-fairness-deep-dive__content-area .page-blog-188loto-security-fairness-deep-dive__container,
  .page-blog-188loto-security-fairness-deep-dive__faq-section .page-blog-188loto-security-fairness-deep-dive__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}