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

.page-blog-guide-to-wibet-games {
  background-color: var(--wibet-background);
  color: var(--wibet-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-guide-to-wibet-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-guide-to-wibet-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles top padding, use small decorative padding here */
  text-align: center;
  background-color: var(--wibet-background);
}

.page-blog-guide-to-wibet-games__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
}

.page-blog-guide-to-wibet-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-guide-to-wibet-games__hero-content {
  position: relative; /* Ensure content is below the image in normal flow */
  padding: 40px 20px;
  max-width: 900px;
  margin-top: 20px; /* Spacing below the image */
}

.page-blog-guide-to-wibet-games__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em); /* Using clamp as per instructions */
  color: var(--wibet-gold);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-blog-guide-to-wibet-games__description {
  font-size: 1.1em;
  color: var(--wibet-text-secondary);
  margin-bottom: 30px;
}

.page-blog-guide-to-wibet-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-guide-to-wibet-games__btn-primary,
.page-blog-guide-to-wibet-games__btn-secondary,
.page-blog-guide-to-wibet-games__btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-blog-guide-to-wibet-games__btn-primary {
  background: var(--wibet-button-gradient);
  color: #ffffff; /* Ensure high contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-guide-to-wibet-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-guide-to-wibet-games__btn-secondary {
  background-color: var(--wibet-deep-green); /* Darker green for contrast */
  color: var(--wibet-text-main);
  border: 2px solid var(--wibet-border);
}

.page-blog-guide-to-wibet-games__btn-secondary:hover {
  background-color: var(--wibet-primary);
  color: #ffffff;
  border-color: var(--wibet-primary);
}

.page-blog-guide-to-wibet-games__btn-tertiary {
  background-color: transparent;
  color: var(--wibet-glow);
  border: 1px solid var(--wibet-glow);
}

.page-blog-guide-to-wibet-games__btn-tertiary:hover {
  background-color: var(--wibet-glow);
  color: var(--wibet-background);
}

.page-blog-guide-to-wibet-games__section-title {
  font-size: 2.5em;
  color: var(--wibet-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-blog-guide-to-wibet-games__sub-title {
  font-size: 1.8em;
  color: var(--wibet-glow);
  margin-bottom: 25px;
  font-weight: 600;
}

.page-blog-guide-to-wibet-games__text-block {
  font-size: 1.05em;
  color: var(--wibet-text-secondary);
  margin-bottom: 20px;
}

.page-blog-guide-to-wibet-games__introduction-section,
.page-blog-guide-to-wibet-games__game-types-section,
.page-blog-guide-to-wibet-games__tips-section,
.page-blog-guide-to-wibet-games__faq-section {
  padding: 80px 0;
  background-color: var(--wibet-background);
}

.page-blog-guide-to-wibet-games__dark-section {
  background-color: var(--wibet-card-bg);
  color: var(--wibet-text-main);
  padding: 80px 0;
}

.page-blog-guide-to-wibet-games__image-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-blog-guide-to-wibet-games__content-image {
  flex: 1 1 45%;
  min-width: 300px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-guide-to-wibet-games__text-content {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-blog-guide-to-wibet-games__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-blog-guide-to-wibet-games__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: var(--wibet-text-main);
}

.page-blog-guide-to-wibet-games__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--wibet-glow);
  font-weight: bold;
  font-size: 1.2em;
}

.page-blog-guide-to-wibet-games__steps-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-guide-to-wibet-games__step-card {
  background-color: var(--wibet-background);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--wibet-divider);
  text-align: center;
}

.page-blog-guide-to-wibet-games__step-title {
  font-size: 1.5em;
  color: var(--wibet-gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-guide-to-wibet-games__step-description {
  color: var(--wibet-text-secondary);
  font-size: 1em;
}

.page-blog-guide-to-wibet-games__cta-buttons--center {
  margin-top: 40px;
}

.page-blog-guide-to-wibet-games__game-card-grid,
.page-blog-guide-to-wibet-games__promo-card-grid,
.page-blog-guide-to-wibet-games__tips-grid,
.page-blog-guide-to-wibet-games__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-guide-to-wibet-games__game-card,
.page-blog-guide-to-wibet-games__promo-card,
.page-blog-guide-to-wibet-games__tip-card,
.page-blog-guide-to-wibet-games__info-card {
  background-color: var(--wibet-card-bg);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--wibet-divider);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-guide-to-wibet-games__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-height: 200px; /* Enforce minimum size */
}

.page-blog-guide-to-wibet-games__game-title,
.page-blog-guide-to-wibet-games__promo-title,
.page-blog-guide-to-wibet-games__tip-title,
.page-blog-guide-to-wibet-games__info-title {
  font-size: 1.4em;
  color: var(--wibet-gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-guide-to-wibet-games__game-description,
.page-blog-guide-to-wibet-games__promo-description,
.page-blog-guide-to-wibet-games__tip-description,
.page-blog-guide-to-wibet-games__info-description {
  color: var(--wibet-text-secondary);
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-guide-to-wibet-games__faq-list {
  margin-top: 40px;
}

.page-blog-guide-to-wibet-games__faq-item {
  background-color: var(--wibet-card-bg);
  border: 1px solid var(--wibet-divider);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-guide-to-wibet-games__faq-item summary {
  list-style: none; /* Hide default marker */
}

.page-blog-guide-to-wibet-games__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for Webkit */
}

.page-blog-guide-to-wibet-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: var(--wibet-deep-green);
  color: var(--wibet-text-main);
  font-weight: bold;
  font-size: 1.1em;
  border-bottom: 1px solid var(--wibet-divider);
}

.page-blog-guide-to-wibet-games__faq-question:hover {
  background-color: rgba(var(--wibet-deep-green), 0.8);
}

.page-blog-guide-to-wibet-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--wibet-glow);
  transition: transform 0.3s ease;
}

.page-blog-guide-to-wibet-games__faq-item[open] .page-blog-guide-to-wibet-games__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-guide-to-wibet-games__faq-answer {
  padding: 15px 25px;
  background-color: var(--wibet-card-bg);
  color: var(--wibet-text-secondary);
  font-size: 1em;
  line-height: 1.5;
}

.page-blog-guide-to-wibet-games__cta-final-section {
  padding: 100px 0;
  text-align: center;
}

.page-blog-guide-to-wibet-games__cta-final-content {
  max-width: 800px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-guide-to-wibet-games__section-title {
    font-size: 2em;
  }
  .page-blog-guide-to-wibet-games__sub-title {
    font-size: 1.5em;
  }
  .page-blog-guide-to-wibet-games__hero-content {
    padding: 30px 15px;
  }
  .page-blog-guide-to-wibet-games__image-content-wrapper {
    flex-direction: column;
  }
  .page-blog-guide-to-wibet-games__content-image,
  .page-blog-guide-to-wibet-games__text-content {
    flex: 1 1 100%;
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .page-blog-guide-to-wibet-games {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-guide-to-wibet-games__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important; /* body handles --header-offset, this is small decorative padding */
  }
  .page-blog-guide-to-wibet-games__main-title {
    font-size: 2em; /* Adjusted for mobile */
  }
  .page-blog-guide-to-wibet-games__description {
    font-size: 1em;
  }
  .page-blog-guide-to-wibet-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-guide-to-wibet-games__btn-primary,
  .page-blog-guide-to-wibet-games__btn-secondary,
  .page-blog-guide-to-wibet-games__btn-tertiary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-guide-to-wibet-games__cta-buttons,
  .page-blog-guide-to-wibet-games__button-group,
  .page-blog-guide-to-wibet-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-blog-guide-to-wibet-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-guide-to-wibet-games__section,
  .page-blog-guide-to-wibet-games__card,
  .page-blog-guide-to-wibet-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-guide-to-wibet-games__game-image {
    min-height: 200px !important;
    height: auto !important;
  }
  .page-blog-guide-to-wibet-games__content-area, .page-blog-guide-to-wibet-games__text-block, .page-blog-guide-to-wibet-games p, .page-blog-guide-to-wibet-games li, .page-blog-guide-to-wibet-games__content-image {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  /* Ensure all content images are at least 200px wide for content area */
  .page-blog-guide-to-wibet-games__introduction-section img,
  .page-blog-guide-to-wibet-games__game-types-section img,
  .page-blog-guide-to-wibet-games__tips-section img,
  .page-blog-guide-to-wibet-games__support-security-section img {
    min-width: 200px !important;
    min-height: 200px !important;
  }
}