/* style/blog-safe-betting-on-vz999.css */

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

.page-blog-safe-betting-on-vz999 {
  background-color: var(--vz999-bg-color);
  color: var(--vz999-text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 0; /* body already handles padding-top from shared.css */
}

.page-blog-safe-betting-on-vz999__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  overflow: hidden;
}

.page-blog-safe-betting-on-vz999__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 40px; /* Space between image and text */
}

.page-blog-safe-betting-on-vz999__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-blog-safe-betting-on-vz999__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-safe-betting-on-vz999__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--vz999-gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.page-blog-safe-betting-on-vz999__hero-description {
  font-size: 1.1rem;
  color: var(--vz999-text-secondary);
  margin-bottom: 30px;
}

.page-blog-safe-betting-on-vz999__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-safe-betting-on-vz999__btn-primary,
.page-blog-safe-betting-on-vz999__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-blog-safe-betting-on-vz999__btn-primary {
  background: var(--vz999-btn-gradient);
  color: var(--vz999-text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 255, 100, 0.3);
}

.page-blog-safe-betting-on-vz999__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-safe-betting-on-vz999__btn-secondary {
  background-color: transparent;
  color: var(--vz999-gold-color);
  border: 2px solid var(--vz999-gold-color);
}

.page-blog-safe-betting-on-vz999__btn-secondary:hover {
  background-color: rgba(242, 193, 78, 0.1);
  transform: translateY(-2px);
}

.page-blog-safe-betting-on-vz999__text-link {
  color: var(--vz999-gold-color);
  text-decoration: underline;
}

.page-blog-safe-betting-on-vz999__text-link:hover {
  color: var(--vz999-glow-color);
}

.page-blog-safe-betting-on-vz999__highlight-text {
  color: var(--vz999-gold-color);
  font-weight: bold;
}

.page-blog-safe-betting-on-vz999__section {
  padding: 60px 20px;
  border-bottom: 1px solid var(--vz999-divider-color);
}

.page-blog-safe-betting-on-vz999__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--vz999-gold-color);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-blog-safe-betting-on-vz999__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--vz999-glow-color);
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-blog-safe-betting-on-vz999__paragraph {
  font-size: 1rem;
  color: var(--vz999-text-main);
  margin-bottom: 15px;
}

.page-blog-safe-betting-on-vz999__content-area {
  max-width: 1000px;
  margin: 0 auto;
}

.page-blog-safe-betting-on-vz999__image-block {
  margin: 30px 0;
  text-align: center;
}

.page-blog-safe-betting-on-vz999__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.page-blog-safe-betting-on-vz999__image-caption {
  font-size: 0.9rem;
  color: var(--vz999-text-secondary);
  margin-top: 10px;
}

.page-blog-safe-betting-on-vz999__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: var(--vz999-text-main);
}

.page-blog-safe-betting-on-vz999__list-item {
  margin-bottom: 8px;
  font-size: 1rem;
}

.page-blog-safe-betting-on-vz999__dark-section {
  background-color: var(--vz999-card-bg);
  color: var(--vz999-text-main);
}

.page-blog-safe-betting-on-vz999__dark-section .page-blog-safe-betting-on-vz999__section-title {
  color: var(--vz999-gold-color);
}

.page-blog-safe-betting-on-vz999__dark-section .page-blog-safe-betting-on-vz999__sub-title {
  color: var(--vz999-glow-color);
}

.page-blog-safe-betting-on-vz999__faq-section {
  background-color: var(--vz999-deep-green);
}

.page-blog-safe-betting-on-vz999__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-safe-betting-on-vz999__faq-item {
  background-color: var(--vz999-card-bg);
  border: 1px solid var(--vz999-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-safe-betting-on-vz999__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--vz999-text-main);
  background-color: var(--vz999-card-bg);
  transition: background-color 0.3s ease;
}

.page-blog-safe-betting-on-vz999__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-safe-betting-on-vz999__faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-safe-betting-on-vz999__faq-qtext {
  flex-grow: 1;
  color: var(--vz999-gold-color);
}

.page-blog-safe-betting-on-vz999__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--vz999-glow-color);
  margin-left: 15px;
}

.page-blog-safe-betting-on-vz999__faq-item[open] .page-blog-safe-betting-on-vz999__faq-toggle {
  content: '−';
}

.page-blog-safe-betting-on-vz999__faq-answer {
  padding: 0 20px 20px;
  font-size: 0.95rem;
  color: var(--vz999-text-secondary);
  border-top: 1px solid var(--vz999-divider-color);
  margin-top: -1px;
}

.page-blog-safe-betting-on-vz999__cta-section {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-blog-safe-betting-on-vz999__cta-section .page-blog-safe-betting-on-vz999__paragraph {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-safe-betting-on-vz999__hero-content {
    max-width: 768px;
  }
}

@media (max-width: 768px) {
  .page-blog-safe-betting-on-vz999__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-safe-betting-on-vz999__main-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .page-blog-safe-betting-on-vz999__hero-description {
    font-size: 1rem;
  }

  .page-blog-safe-betting-on-vz999__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-safe-betting-on-vz999__btn-primary,
  .page-blog-safe-betting-on-vz999__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    font-size: 1rem;
  }

  .page-blog-safe-betting-on-vz999__section {
    padding: 40px 15px;
  }

  .page-blog-safe-betting-on-vz999__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-blog-safe-betting-on-vz999__sub-title {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    margin-top: 25px;
  }

  .page-blog-safe-betting-on-vz999__paragraph,
  .page-blog-safe-betting-on-vz999__list-item,
  .page-blog-safe-betting-on-vz999__image-caption {
    font-size: 0.95rem;
  }

  /* Image responsive */
  .page-blog-safe-betting-on-vz999 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-safe-betting-on-vz999__hero-image-wrapper,
  .page-blog-safe-betting-on-vz999__image-block,
  .page-blog-safe-betting-on-vz999__content-area,
  .page-blog-safe-betting-on-vz999__section,
  .page-blog-safe-betting-on-vz999__faq-list,
  .page-blog-safe-betting-on-vz999__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-safe-betting-on-vz999__faq-item summary {
    font-size: 1rem;
    padding: 15px;
  }

  .page-blog-safe-betting-on-vz999__faq-answer {
    padding: 0 15px 15px;
  }

  .page-blog-safe-betting-on-vz999__cta-section .page-blog-safe-betting-on-vz999__paragraph {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .page-blog-safe-betting-on-vz999__hero-section {
    padding-bottom: 30px;
  }

  .page-blog-safe-betting-on-vz999__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-blog-safe-betting-on-vz999__section-title {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .page-blog-safe-betting-on-vz999__sub-title {
    font-size: clamp(1.1rem, 6vw, 1.4rem);
  }

  .page-blog-safe-betting-on-vz999__paragraph,
  .page-blog-safe-betting-on-vz999__list-item,
  .page-blog-safe-betting-on-vz999__image-caption {
    font-size: 0.9rem;
  }
}