/* style/blog-okbet-security-reliability-deep-dive.css */

:root {
  --okbet-primary-color: #F2C14E;
  --okbet-secondary-color: #FFD36B;
  --okbet-card-bg: #111111;
  --okbet-background: #0A0A0A;
  --okbet-text-main: #FFF6D6;
  --okbet-border-color: #3A2A12;
  --okbet-glow-color: #FFD36B;
  --okbet-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-blog-okbet-security-reliability-deep-dive {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--okbet-text-main); /* Text Main for overall content */
  background-color: var(--okbet-background); /* Background color for body */
}

.page-blog-okbet-security-reliability-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 */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-okbet-security-reliability-deep-dive__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

.page-blog-okbet-security-reliability-deep-dive__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-blog-okbet-security-reliability-deep-dive__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  width: 90%;
  padding: 20px;
  z-index: 2;
}

.page-blog-okbet-security-reliability-deep-dive__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  color: var(--okbet-text-main);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-blog-okbet-security-reliability-deep-dive__lead-text {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: var(--okbet-text-main);
  margin-bottom: 30px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.page-blog-okbet-security-reliability-deep-dive__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-okbet-security-reliability-deep-dive__btn-primary {
  background: var(--okbet-button-gradient);
  color: #ffffff; /* White text for contrast */
}

.page-blog-okbet-security-reliability-deep-dive__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-okbet-security-reliability-deep-dive__content-section {
  padding: 60px 20px;
  background-color: var(--okbet-background);
  color: var(--okbet-text-main);
}

.page-blog-okbet-security-reliability-deep-dive__dark-bg {
  background-color: var(--okbet-background);
  color: var(--okbet-text-main);
}

.page-blog-okbet-security-reliability-deep-dive__light-bg {
  background-color: #1a1a1a;
  color: var(--okbet-text-main);
}

.page-blog-okbet-security-reliability-deep-dive__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-blog-okbet-security-reliability-deep-dive__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: var(--okbet-primary-color);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-blog-okbet-security-reliability-deep-dive__sub-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  color: var(--okbet-secondary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-okbet-security-reliability-deep-dive__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--okbet-text-main);
}

.page-blog-okbet-security-reliability-deep-dive__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-blog-okbet-security-reliability-deep-dive__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* FAQ Section */
.page-blog-okbet-security-reliability-deep-dive__faq-section {
  padding: 60px 20px;
  background-color: var(--okbet-card-bg);
  color: var(--okbet-text-main);
}

.page-blog-okbet-security-reliability-deep-dive__faq-list {
  margin-top: 40px;
}

.page-blog-okbet-security-reliability-deep-dive__faq-item {
  background-color: #1a1a1a;
  border: 1px solid var(--okbet-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-okbet-security-reliability-deep-dive__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: var(--okbet-text-main);
  background-color: #1a1a1a;
  transition: background-color 0.3s ease;
}

.page-blog-okbet-security-reliability-deep-dive__faq-question:hover {
  background-color: #2a2a2a;
}

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

.page-blog-okbet-security-reliability-deep-dive__faq-item.active .page-blog-okbet-security-reliability-deep-dive__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-okbet-security-reliability-deep-dive__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--okbet-text-main);
}

.page-blog-okbet-security-reliability-deep-dive__faq-item.active .page-blog-okbet-security-reliability-deep-dive__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 20px 20px;
}

/* General text and link styles */
.page-blog-okbet-security-reliability-deep-dive p {
  color: var(--okbet-text-main);
}

.page-blog-okbet-security-reliability-deep-dive a {
  color: var(--okbet-secondary-color);
  text-decoration: underline;
}

.page-blog-okbet-security-reliability-deep-dive a:hover {
  color: var(--okbet-primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-okbet-security-reliability-deep-dive__hero-content {
    max-width: 700px;
  }
  .page-blog-okbet-security-reliability-deep-dive__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }
  .page-blog-okbet-security-reliability-deep-dive__lead-text {
    font-size: clamp(0.9em, 1.8vw, 1.1em);
  }
}

@media (max-width: 768px) {
  .page-blog-okbet-security-reliability-deep-dive__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important;
  }
  .page-blog-okbet-security-reliability-deep-dive__hero-content {
    width: 95%;
    padding: 15px;
  }
  .page-blog-okbet-security-reliability-deep-dive__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-blog-okbet-security-reliability-deep-dive__lead-text {
    font-size: clamp(0.8em, 2.5vw, 1em);
  }
  .page-blog-okbet-security-reliability-deep-dive__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    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-okbet-security-reliability-deep-dive__content-section,
  .page-blog-okbet-security-reliability-deep-dive__faq-section {
    padding: 40px 15px;
  }
  
  .page-blog-okbet-security-reliability-deep-dive__container {
    padding: 0 10px;
  }
  
  .page-blog-okbet-security-reliability-deep-dive__section-title {
    font-size: clamp(1.5em, 5vw, 2em);
  }
  
  .page-blog-okbet-security-reliability-deep-dive__sub-title {
    font-size: clamp(1.2em, 4vw, 1.6em);
  }
  
  .page-blog-okbet-security-reliability-deep-dive__text-block {
    font-size: 1em;
  }
  
  /* Mobile image responsiveness */
  .page-blog-okbet-security-reliability-deep-dive img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-okbet-security-reliability-deep-dive__hero-image-wrapper,
  .page-blog-okbet-security-reliability-deep-dive__content-image,
  .page-blog-okbet-security-reliability-deep-dive__cta-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-okbet-security-reliability-deep-dive__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-blog-okbet-security-reliability-deep-dive__faq-answer {
    padding: 0 15px;
  }
  .page-blog-okbet-security-reliability-deep-dive__faq-item.active .page-blog-okbet-security-reliability-deep-dive__faq-answer {
    padding: 10px 15px 15px;
  }

}

@media (max-width: 480px) {
  .page-blog-okbet-security-reliability-deep-dive__hero-section {
    padding-bottom: 30px;
  }
  .page-blog-okbet-security-reliability-deep-dive__hero-content {
    padding: 10px;
  }
  .page-blog-okbet-security-reliability-deep-dive__main-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }
  .page-blog-okbet-security-reliability-deep-dive__lead-text {
    font-size: clamp(0.75em, 3vw, 0.9em);
  }
  .page-blog-okbet-security-reliability-deep-dive__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-blog-okbet-security-reliability-deep-dive__section-title {
    font-size: clamp(1.3em, 6vw, 1.8em);
  }
  .page-blog-okbet-security-reliability-deep-dive__sub-title {
    font-size: clamp(1.1em, 5vw, 1.4em);
  }
}