/* style/blog-vb88-win-exclusive-promotions-and-bonus-guide.css */

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

/* Base styles for the page content, inherits body padding-top from shared.css */
.page-blog-vb88-win-exclusive-promotions-and-bonus-guide {
  background-color: var(--vb88-bg-color);
  color: var(--vb88-text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: 10px 0 60px; /* body handles header offset, small top padding for visual */
  background-color: var(--vb88-deep-green);
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  border-radius: 10px;
  margin-top: 150px; /* Push content below image */
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--vb88-gold-color);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__hero-description {
  font-size: 1.2rem;
  color: var(--vb88-text-secondary);
  margin-bottom: 30px;
}

/* Section Titles */
.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__section-title {
  font-size: 2.5rem;
  color: var(--vb88-gold-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: 700;
}

/* Text Blocks */
.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__text-block {
  font-size: 1.1rem;
  color: var(--vb88-text-main);
  margin-bottom: 20px;
  text-align: justify;
}

/* Dark Section for Conclusion */
.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__dark-section {
  background-color: var(--vb88-deep-green);
  padding: 80px 0;
  color: var(--vb88-text-main);
}

/* Promotion Grid */
.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__promo-card {
  background-color: var(--vb88-card-bg);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--vb88-border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__card-title {
  font-size: 1.5rem;
  color: var(--vb88-gold-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__card-text {
  color: var(--vb88-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Image Full Width */
.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 40px 0;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

/* Lists */
.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__list-item {
  background-color: var(--vb88-card-bg);
  color: var(--vb88-text-main);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid var(--vb88-primary-color);
  font-size: 1.05rem;
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__list-item strong {
  color: var(--vb88-gold-color);
}

/* Step-by-step Guide */
.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__step-item {
  background-color: var(--vb88-card-bg);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--vb88-border-color);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__step-title {
  font-size: 1.6rem;
  color: var(--vb88-gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__step-text {
  color: var(--vb88-text-secondary);
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: justify;
}

/* Buttons */
.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__btn-primary,
.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__btn-secondary,
.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__btn-primary {
  background: var(--vb88-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__btn-secondary {
  background-color: transparent;
  color: var(--vb88-primary-color);
  border: 2px solid var(--vb88-primary-color);
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__btn-secondary:hover {
  background-color: var(--vb88-primary-color);
  color: #ffffff;
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__btn-tertiary {
  background-color: var(--vb88-primary-color);
  color: #ffffff;
  border: none;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 8px;
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__btn-tertiary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__btn-large {
  padding: 15px 35px;
  font-size: 1.1rem;
}

/* FAQ Section */
.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__faq {
  padding-bottom: 80px;
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__faq-list {
  margin-top: 40px;
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__faq-item {
  background-color: var(--vb88-card-bg);
  border: 1px solid var(--vb88-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--vb88-gold-color);
  position: relative;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Safari */
  -khtml-user-select: none;    /* Konqueror HTML */
  -moz-user-select: none;      /* Old versions of Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently
                                   supported by Chrome, Edge, Opera and Firefox */
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__faq-toggle {
  font-size: 1.8rem;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__faq-item[open] .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__faq-answer {
  padding: 15px 25px 25px;
  font-size: 1rem;
  color: var(--vb88-text-secondary);
  border-top: 1px solid var(--vb88-divider-color);
}

.page-blog-vb88-win-exclusive-promotions-and-bonus-guide__faq-answer p {
  margin-bottom: 10px;
  color: var(--vb88-text-secondary);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__hero-description {
    font-size: 1.1rem;
  }

  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__section-title {
    font-size: 2rem;
  }

  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__hero-section {
    min-height: 500px;
    padding-top: 10px !important; /* body handles header offset, small top padding for visual */
  }

  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__hero-content {
    margin-top: 100px; /* Adjust for smaller screens */
    padding: 15px;
  }

  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__hero-description {
    font-size: 1rem;
  }

  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-top: 40px;
  }

  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__text-block {
    font-size: 1rem;
  }

  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__container,
  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__promo-grid,
  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__step-by-step,
  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__faq-list {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Ensure minimum size */
    min-height: 200px !important; /* Ensure minimum size */
  }
  
  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__card-image,
  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__image-full-width {
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__promo-card,
  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__step-item {
    padding: 20px;
  }

  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__card-title,
  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__step-title {
    font-size: 1.3rem;
  }

  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__faq-answer {
    padding: 10px 20px 20px;
  }

  /* Button responsiveness */
  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__btn-primary,
  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__btn-secondary,
  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__btn-tertiary,
  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide a[class*="button"],
  .page-blog-vb88-win-exclusive-promotions-and-bonus-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-vb88-win-exclusive-promotions-and-bonus-guide__cta-buttons,
  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__button-group,
  .page-blog-vb88-win-exclusive-promotions-and-bonus-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-vb88-win-exclusive-promotions-and-bonus-guide__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__hero-content {
    margin-top: 50px;
  }

  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-top: 30px;
  }

  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__promo-grid,
  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__step-by-step {
    gap: 20px;
  }

  .page-blog-vb88-win-exclusive-promotions-and-bonus-guide__faq-item summary {
    font-size: 0.95rem;
  }
}