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

.page-blog-ev99-betting-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--ev99-text-main); /* Default text color for the page */
  background-color: var(--ev99-bg); /* Use the specified background color */
}

.page-blog-ev99-betting-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding as per rule */
  background-color: var(--ev99-deep-green-color);
}

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

.page-blog-ev99-betting-guide__hero-content {
  max-width: 900px;
  padding: 40px 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  color: var(--ev99-text-main);
  margin-top: -100px; /* Adjust to slightly overlap the image for visual flow, but not cover important parts */
  position: relative; /* Ensure it's above the image for z-index purposes, but not covering it */
  z-index: 1;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
}

.page-blog-ev99-betting-guide__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--ev99-gold-color);
  line-height: 1.2;
}

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

.page-blog-ev99-betting-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-ev99-betting-guide__btn-primary,
.page-blog-ev99-betting-guide__btn-secondary,
.page-blog-ev99-betting-guide__btn-tertiary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-ev99-betting-guide__btn-primary {
  background: var(--ev99-button-gradient);
  color: var(--ev99-text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-ev99-betting-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

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

.page-blog-ev99-betting-guide__btn-secondary:hover {
  background-color: var(--ev99-gold-color);
  color: var(--ev99-bg);
}

.page-blog-ev99-betting-guide__btn-tertiary {
    background-color: var(--ev99-primary-color);
    color: var(--ev99-text-main);
    border: 1px solid var(--ev99-primary-color);
    font-size: 0.9em;
    padding: 10px 20px;
    border-radius: 20px;
}

.page-blog-ev99-betting-guide__btn-tertiary:hover {
    background-color: var(--ev99-secondary-color);
    border-color: var(--ev99-secondary-color);
}

.page-blog-ev99-betting-guide__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--ev99-bg);
  color: var(--ev99-text-main);
}

.page-blog-ev99-betting-guide__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--ev99-gold-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-blog-ev99-betting-guide__guide-step {
  background-color: var(--ev99-card-bg);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--ev99-border-color);
  text-align: center;
}

.page-blog-ev99-betting-guide__step-title {
  font-size: 1.8em;
  color: var(--ev99-gold-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-ev99-betting-guide__step-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  margin: 25px auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-ev99-betting-guide__guide-step p {
  color: var(--ev99-text-secondary);
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-blog-ev99-betting-guide__game-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.page-blog-ev99-betting-guide__faq-list {
  margin-top: 30px;
}

.page-blog-ev99-betting-guide__faq-item {
  background-color: var(--ev99-card-bg);
  border: 1px solid var(--ev99-border-color);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: var(--ev99-text-main);
}

.page-blog-ev99-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--ev99-deep-green-color);
  color: var(--ev99-text-main);
  list-style: none;
}

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

.page-blog-ev99-betting-guide__faq-qtext {
    color: var(--ev99-text-main);
}

.page-blog-ev99-betting-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--ev99-gold-color);
}

.page-blog-ev99-betting-guide__faq-answer {
  padding: 20px 25px;
  background-color: var(--ev99-card-bg);
  color: var(--ev99-text-secondary);
  font-size: 1em;
}

.page-blog-ev99-betting-guide__cta-faq {
  text-align: center;
  margin-top: 40px;
}

.page-blog-ev99-betting-guide__cta-final {
  background-color: var(--ev99-deep-green-color);
  padding: 80px 20px;
  text-align: center;
  color: var(--ev99-text-main);
}

.page-blog-ev99-betting-guide__cta-final .page-blog-ev99-betting-guide__section-title {
  color: var(--ev99-gold-color);
}

.page-blog-ev99-betting-guide__cta-final p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
  color: var(--ev99-text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-ev99-betting-guide__hero-content {
    padding: 30px 15px;
    margin-top: -80px;
  }
  .page-blog-ev99-betting-guide__main-title {
    font-size: clamp(1.8em, 4.5vw, 2.8em);
  }
  .page-blog-ev99-betting-guide__section-title {
    font-size: 2em;
  }
  .page-blog-ev99-betting-guide__content-area {
    padding: 50px 15px;
  }
}

@media (max-width: 768px) {
  .page-blog-ev99-betting-guide {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-ev99-betting-guide__hero-section {
    padding-top: 10px !important;
  }
  .page-blog-ev99-betting-guide__hero-content {
    padding: 25px 15px;
    margin-top: -60px;
    margin-bottom: 20px;
    max-width: 95%;
  }
  .page-blog-ev99-betting-guide__main-title {
    font-size: clamp(1.6em, 6vw, 2.4em);
    line-height: 1.3;
  }
  .page-blog-ev99-betting-guide__hero-description {
    font-size: 1em;
  }
  .page-blog-ev99-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-ev99-betting-guide__btn-primary,
  .page-blog-ev99-betting-guide__btn-secondary,
  .page-blog-ev99-betting-guide__btn-tertiary {
    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-ev99-betting-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-ev99-betting-guide__guide-step {
    padding: 20px;
  }
  .page-blog-ev99-betting-guide__step-title {
    font-size: 1.5em;
  }
  .page-blog-ev99-betting-guide__step-image,
  .page-blog-ev99-betting-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px;
    min-height: 200px;
  }
  .page-blog-ev99-betting-guide__content-area,
  .page-blog-ev99-betting-guide__guide-step,
  .page-blog-ev99-betting-guide__faq-item,
  .page-blog-ev99-betting-guide__cta-final,
  .page-blog-ev99-betting-guide__game-links {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-ev99-betting-guide__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-blog-ev99-betting-guide__faq-answer {
    padding: 15px 20px;
  }
  .page-blog-ev99-betting-guide__cta-final {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-ev99-betting-guide__main-title {
    font-size: clamp(1.4em, 7vw, 2em);
  }
  .page-blog-ev99-betting-guide__hero-content {
    margin-top: -40px;
  }
  .page-blog-ev99-betting-guide__btn-primary,
  .page-blog-ev99-betting-guide__btn-secondary {
    padding: 12px 20px;
  }
  .page-blog-ev99-betting-guide__section-title {
    font-size: 1.6em;
  }
  .page-blog-ev99-betting-guide__step-title {
    font-size: 1.3em;
  }
}