/* style/blog-security-benefits-reliable-betting-platform.css */
:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --card-bg: #17191F;
  --page-bg: #0D0E12;
  --text-main: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange: #D96800;
  --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
}

.page-blog-security-benefits-reliable-betting-platform {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Body background is dark, so text is light */
  background-color: var(--page-bg);
}

.page-blog-security-benefits-reliable-betting-platform__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-security-benefits-reliable-betting-platform__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-security-benefits-reliable-betting-platform__hero-image-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 40px;
}

.page-blog-security-benefits-reliable-betting-platform__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-security-benefits-reliable-betting-platform__hero-content {
  max-width: 900px;
  z-index: 1;
  padding: 0 20px;
}

.page-blog-security-benefits-reliable-betting-platform__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 20px;
  max-width: 100%; /* Ensure H1 does not overflow */
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-blog-security-benefits-reliable-betting-platform__subtitle {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 30px;
}

.page-blog-security-benefits-reliable-betting-platform__cta-button {
  display: inline-block;
  background: var(--button-gradient);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-blog-security-benefits-reliable-betting-platform__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-blog-security-benefits-reliable-betting-platform__section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  padding-top: 40px;
}

.page-blog-security-benefits-reliable-betting-platform__text-block {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--text-main);
}

.page-blog-security-benefits-reliable-betting-platform__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px auto;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-blog-security-benefits-reliable-betting-platform__introduction-section,
.page-blog-security-benefits-reliable-betting-platform__security-features-section,
.page-blog-security-benefits-reliable-betting-platform__benefits-section,
.page-blog-security-benefits-reliable-betting-platform__identification-section,
.page-blog-security-benefits-reliable-betting-platform__faq-section,
.page-blog-security-benefits-reliable-betting-platform__conclusion-section {
  padding: 60px 0;
}

.page-blog-security-benefits-reliable-betting-platform__dark-bg {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-blog-security-benefits-reliable-betting-platform__dark-bg .page-blog-security-benefits-reliable-betting-platform__section-title {
  color: var(--secondary-color);
}

.page-blog-security-benefits-reliable-betting-platform__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-security-benefits-reliable-betting-platform__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
}

.page-blog-security-benefits-reliable-betting-platform__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(var(--glow-color), 0.6);
}

.page-blog-security-benefits-reliable-betting-platform__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-blog-security-benefits-reliable-betting-platform__card-title {
  font-size: 1.6rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-security-benefits-reliable-betting-platform__card-text {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.7;
}

.page-blog-security-benefits-reliable-betting-platform__cta-button--bottom {
  margin-top: 50px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-security-benefits-reliable-betting-platform__faq-list {
  margin-top: 40px;
}

.page-blog-security-benefits-reliable-betting-platform__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.page-blog-security-benefits-reliable-betting-platform__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-color);
  background-color: #1a1c24;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-security-benefits-reliable-betting-platform__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details/summary */
}

.page-blog-security-benefits-reliable-betting-platform__faq-question:hover {
  background-color: #2a2d36;
}

.page-blog-security-benefits-reliable-betting-platform__faq-qtext {
  flex-grow: 1;
  color: var(--text-main);
}

.page-blog-security-benefits-reliable-betting-platform__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--secondary-color);
}

.page-blog-security-benefits-reliable-betting-platform__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.7;
  max-height: 0; /* For JS-based accordion, not needed for <details> */
  overflow: hidden; /* For JS-based accordion, not needed for <details> */
  transition: max-height 0.5s ease-out; /* For JS-based accordion */
}

.page-blog-security-benefits-reliable-betting-platform__faq-item[open] .page-blog-security-benefits-reliable-betting-platform__faq-answer {
  max-height: 1000px; /* Adjust as needed for content, for <details> */
  transition: max-height 0.5s ease-in; /* For <details> */
}

.page-blog-security-benefits-reliable-betting-platform__faq-item[open] .page-blog-security-benefits-reliable-betting-platform__faq-qtext {
  color: var(--secondary-color);
}

.page-blog-security-benefits-reliable-betting-platform__conclusion-section .page-blog-security-benefits-reliable-betting-platform__cta-button {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-security-benefits-reliable-betting-platform__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-blog-security-benefits-reliable-betting-platform__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-blog-security-benefits-reliable-betting-platform {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-security-benefits-reliable-betting-platform__container,
  .page-blog-security-benefits-reliable-betting-platform__hero-section,
  .page-blog-security-benefits-reliable-betting-platform__introduction-section,
  .page-blog-security-benefits-reliable-betting-platform__security-features-section,
  .page-blog-security-benefits-reliable-betting-platform__benefits-section,
  .page-blog-security-benefits-reliable-betting-platform__identification-section,
  .page-blog-security-benefits-reliable-betting-platform__faq-section,
  .page-blog-security-benefits-reliable-betting-platform__conclusion-section {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-security-benefits-reliable-betting-platform__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-security-benefits-reliable-betting-platform__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-security-benefits-reliable-betting-platform__subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-blog-security-benefits-reliable-betting-platform__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-security-benefits-reliable-betting-platform__text-block {
    font-size: 0.95rem;
  }

  .page-blog-security-benefits-reliable-betting-platform__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-security-benefits-reliable-betting-platform img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-security-benefits-reliable-betting-platform__card-image {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 150px !important; /* Adjusted for mobile card images */
  }

  .page-blog-security-benefits-reliable-betting-platform__card {
    padding: 20px;
  }

  .page-blog-security-benefits-reliable-betting-platform__card-title {
    font-size: 1.4rem;
  }

  .page-blog-security-benefits-reliable-betting-platform__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

  .page-blog-security-benefits-reliable-betting-platform__faq-answer {
    padding: 0 20px 15px;
  }
}