/* style/blog-spobet-secure-betting-guide.css */

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

.page-blog-spobet-secure-betting-guide {
  color: var(--spobet-text-main);
  background-color: var(--spobet-background);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-blog-spobet-secure-betting-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom for content */
  background-color: var(--spobet-background);
  overflow: hidden;
}

.page-blog-spobet-secure-betting-guide__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for aesthetic */
  overflow: hidden;
  margin-bottom: 30px;
}

.page-blog-spobet-secure-betting-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-blog-spobet-secure-betting-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1; /* Ensure content is above any potential background elements */
}

.page-blog-spobet-secure-betting-guide__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  color: var(--spobet-text-main);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-spobet-secure-betting-guide__hero-description {
  font-size: 1.2em;
  color: var(--spobet-text-secondary);
  margin-bottom: 30px;
}

.page-blog-spobet-secure-betting-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
  width: 100%; /* Ensure container takes full width for responsive buttons */
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-spobet-secure-betting-guide__btn-primary,
.page-blog-spobet-secure-betting-guide__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-blog-spobet-secure-betting-guide__btn-primary {
  background: var(--spobet-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-spobet-secure-betting-guide__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Reverse gradient on hover */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.page-blog-spobet-secure-betting-guide__btn-secondary {
  background-color: transparent;
  color: var(--spobet-secondary);
  border: 2px solid var(--spobet-secondary);
}

.page-blog-spobet-secure-betting-guide__btn-secondary:hover {
  background-color: var(--spobet-secondary);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.page-blog-spobet-secure-betting-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--spobet-background);
  color: var(--spobet-text-main);
}

.page-blog-spobet-secure-betting-guide__section-title {
  font-size: 2.5em;
  color: var(--spobet-text-main);
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-spobet-secure-betting-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: var(--spobet-secondary);
  border-radius: 2px;
}

.page-blog-spobet-secure-betting-guide__sub-title {
  font-size: 1.8em;
  color: var(--spobet-secondary);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-spobet-secure-betting-guide p {
  margin-bottom: 1em;
  color: var(--spobet-text-secondary);
}

.page-blog-spobet-secure-betting-guide p a {
  color: var(--spobet-primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-blog-spobet-secure-betting-guide p a:hover {
  color: var(--spobet-secondary);
}

.page-blog-spobet-secure-betting-guide strong {
  color: var(--spobet-text-main);
}

.page-blog-spobet-secure-betting-guide__image-block {
  margin: 30px 0;
  text-align: center;
}

.page-blog-spobet-secure-betting-guide__content-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* FAQ Section */
.page-blog-spobet-secure-betting-guide__faq-section {
  margin-top: 60px;
  padding: 20px;
  background-color: var(--spobet-card-bg);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-spobet-secure-betting-guide__faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid var(--spobet-divider);
  padding-bottom: 15px;
}

.page-blog-spobet-secure-betting-guide__faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.page-blog-spobet-secure-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--spobet-text-main);
  cursor: pointer;
  padding: 10px 0;
  list-style: none; /* Remove default marker */
}

.page-blog-spobet-secure-betting-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-spobet-secure-betting-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--spobet-secondary);
  transition: transform 0.3s ease;
}

.page-blog-spobet-secure-betting-guide__faq-item[open] .page-blog-spobet-secure-betting-guide__faq-toggle {
  transform: rotate(45deg); /* Rotate to form an 'X' or '-' */
}

.page-blog-spobet-secure-betting-guide__faq-answer {
  font-size: 1.1em;
  color: var(--spobet-text-secondary);
  padding: 10px 0 5px 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-spobet-secure-betting-guide__hero-section {
    padding: 10px 15px 40px;
  }
  .page-blog-spobet-secure-betting-guide__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-blog-spobet-secure-betting-guide__section-title {
    font-size: 2em;
  }
  .page-blog-spobet-secure-betting-guide__sub-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-blog-spobet-secure-betting-guide {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-spobet-secure-betting-guide__hero-section {
    padding: 10px 15px 30px;
  }
  .page-blog-spobet-secure-betting-guide__hero-image-wrapper {
    max-height: 300px;
  }
  .page-blog-spobet-secure-betting-guide__hero-image {
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-spobet-secure-betting-guide__main-title {
    font-size: clamp(1.6em, 6vw, 2.5em);
  }
  .page-blog-spobet-secure-betting-guide__hero-description {
    font-size: 1em;
  }
  .page-blog-spobet-secure-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-blog-spobet-secure-betting-guide__btn-primary,
  .page-blog-spobet-secure-betting-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
  }
  .page-blog-spobet-secure-betting-guide__content-area {
    padding: 20px 15px;
  }
  .page-blog-spobet-secure-betting-guide__section-title {
    font-size: 1.8em;
    margin-top: 30px;
  }
  .page-blog-spobet-secure-betting-guide__section-title::after {
    width: 60px;
  }
  .page-blog-spobet-secure-betting-guide__sub-title {
    font-size: 1.3em;
  }
  .page-blog-spobet-secure-betting-guide__image-block {
    margin: 20px 0;
  }
  .page-blog-spobet-secure-betting-guide__content-image {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }
  .page-blog-spobet-secure-betting-guide__faq-section {
    padding: 15px;
  }
  .page-blog-spobet-secure-betting-guide__faq-question {
    font-size: 1.1em;
  }
  .page-blog-spobet-secure-betting-guide__faq-answer {
    font-size: 1em;
  }
  /* Ensure all content containers are responsive */
  .page-blog-spobet-secure-betting-guide__hero-content,
  .page-blog-spobet-secure-betting-guide__content-area,
  .page-blog-spobet-secure-betting-guide__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  /* Specific for buttons within content */
  .page-blog-spobet-secure-betting-guide__content-area .page-blog-spobet-secure-betting-guide__cta-buttons {
    padding-left: 0;
    padding-right: 0;
  }
}