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

.page-blog-vbet-latest-promotions-guide {
  background-color: var(--vbet-background);
  color: var(--vbet-text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-vbet-latest-promotions-guide__section {
  padding: 60px 20px;
  text-align: center;
}

.page-blog-vbet-latest-promotions-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: left;
}

.page-blog-vbet-latest-promotions-guide__dark-bg {
  background-color: var(--vbet-background);
  color: var(--vbet-text-main);
}

.page-blog-vbet-latest-promotions-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
}

.page-blog-vbet-latest-promotions-guide__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Adjust as needed */
  overflow: hidden;
}

.page-blog-vbet-latest-promotions-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-vbet-latest-promotions-guide__hero-content {
  max-width: 900px;
  margin: 20px auto 0;
  padding: 0 20px;
  text-align: center;
  z-index: 1; /* Ensure content is above image if any overlap */
}

.page-blog-vbet-latest-promotions-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--vbet-text-main);
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.page-blog-vbet-latest-promotions-guide__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--vbet-text-secondary);
  margin-bottom: 30px;
}

.page-blog-vbet-latest-promotions-guide__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--vbet-text-main);
  margin-bottom: 30px;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.page-blog-vbet-latest-promotions-guide__paragraph {
  font-size: 1.1rem;
  color: var(--vbet-text-secondary);
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-vbet-latest-promotions-guide__highlight {
  color: var(--vbet-gold);
  font-weight: bold;
}

.page-blog-vbet-latest-promotions-guide__btn-primary,
.page-blog-vbet-latest-promotions-guide__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-vbet-latest-promotions-guide__btn-primary {
  background: var(--vbet-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-vbet-latest-promotions-guide__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-blog-vbet-latest-promotions-guide__btn-secondary {
  background-color: transparent;
  color: var(--vbet-primary);
  border: 2px solid var(--vbet-primary);
  box-shadow: none;
}

.page-blog-vbet-latest-promotions-guide__btn-secondary:hover {
  background-color: var(--vbet-primary);
  color: #ffffff;
}

.page-blog-vbet-latest-promotions-guide__cta-button {
  margin-top: 20px;
}

.page-blog-vbet-latest-promotions-guide__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
}

.page-blog-vbet-latest-promotions-guide__card {
  background-color: var(--vbet-card-bg);
  border: 1px solid var(--vbet-border);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}

.page-blog-vbet-latest-promotions-guide__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-vbet-latest-promotions-guide__card-title {
  font-size: 1.5rem;
  color: var(--vbet-text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-vbet-latest-promotions-guide__card-text {
  font-size: 1rem;
  color: var(--vbet-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-vbet-latest-promotions-guide__card-button {
  width: auto;
  align-self: flex-start;
}

.page-blog-vbet-latest-promotions-guide__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
  text-align: center;
}

.page-blog-vbet-latest-promotions-guide__step-item {
  background-color: var(--vbet-card-bg);
  border: 1px solid var(--vbet-border);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-vbet-latest-promotions-guide__step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--vbet-button-gradient);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: 0 0 15px var(--vbet-glow);
}

.page-blog-vbet-latest-promotions-guide__step-title {
  font-size: 1.4rem;
  color: var(--vbet-text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-vbet-latest-promotions-guide__step-text {
  font-size: 1rem;
  color: var(--vbet-text-secondary);
  margin-bottom: 20px;
}

.page-blog-vbet-latest-promotions-guide__step-button {
  margin-top: auto;
}

.page-blog-vbet-latest-promotions-guide__list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-blog-vbet-latest-promotions-guide__list-item {
  background-color: var(--vbet-card-bg);
  border: 1px solid var(--vbet-border);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-vbet-latest-promotions-guide__list-title {
  font-size: 1.3rem;
  color: var(--vbet-text-main);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-vbet-latest-promotions-guide__list-text {
  font-size: 1rem;
  color: var(--vbet-text-secondary);
}

.page-blog-vbet-latest-promotions-guide__faq-list {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-blog-vbet-latest-promotions-guide__faq-item {
  background-color: var(--vbet-card-bg);
  border: 1px solid var(--vbet-border);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-vbet-latest-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--vbet-text-main);
  font-weight: 600;
  list-style: none;
  user-select: none;
}

.page-blog-vbet-latest-promotions-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-vbet-latest-promotions-guide__faq-toggle {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--vbet-glow);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-vbet-latest-promotions-guide__faq-item[open] .page-blog-vbet-latest-promotions-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-vbet-latest-promotions-guide__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--vbet-text-secondary);
}

.page-blog-vbet-latest-promotions-guide__cta-bottom {
  padding-bottom: 80px;
}

/* All images base responsive styles */
.page-blog-vbet-latest-promotions-guide img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-blog-vbet-latest-promotions-guide__section {
    padding: 40px 15px;
  }

  .page-blog-vbet-latest-promotions-guide__content-area {
    padding: 20px 15px;
  }

  .page-blog-vbet-latest-promotions-guide__main-title {
    font-size: 2rem;
  }

  .page-blog-vbet-latest-promotions-guide__hero-description {
    font-size: 1rem;
  }

  .page-blog-vbet-latest-promotions-guide__section-title {
    font-size: 1.8rem;
  }

  .page-blog-vbet-latest-promotions-guide__paragraph {
    font-size: 0.95rem;
  }

  .page-blog-vbet-latest-promotions-guide__btn-primary,
  .page-blog-vbet-latest-promotions-guide__btn-secondary,
  .page-blog-vbet-latest-promotions-guide a[class*="button"],
  .page-blog-vbet-latest-promotions-guide a[class*="btn"] {
    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-vbet-latest-promotions-guide__cta-buttons,
  .page-blog-vbet-latest-promotions-guide__button-group,
  .page-blog-vbet-latest-promotions-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-blog-vbet-latest-promotions-guide__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  .page-blog-vbet-latest-promotions-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-vbet-latest-promotions-guide__hero-section,
  .page-blog-vbet-latest-promotions-guide__grid-container,
  .page-blog-vbet-latest-promotions-guide__step-by-step,
  .page-blog-vbet-latest-promotions-guide__list,
  .page-blog-vbet-latest-promotions-guide__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-vbet-latest-promotions-guide__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-blog-vbet-latest-promotions-guide__card-image {
    height: auto; /* Allow auto height for mobile cards */
  }
}