/* style/blog-how-to-bet-with-livematch.css */

:root {
  --livematch-primary-color: #F2C14E;
  --livematch-secondary-color: #FFD36B;
  --livematch-card-bg: #111111;
  --livematch-background-color: #0A0A0A;
  --livematch-text-main-color: #FFF6D6;
  --livematch-border-color: #3A2A12;
  --livematch-glow-color: #FFD36B;
  --livematch-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-blog-how-to-bet-with-livematch {
  background-color: var(--livematch-background-color);
  color: var(--livematch-text-main-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-how-to-bet-with-livematch__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-how-to-bet-with-livematch__section-title {
  font-size: 2.8em;
  color: var(--livematch-primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-how-to-bet-with-livematch__subsection-title {
  font-size: 1.8em;
  color: var(--livematch-secondary-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-how-to-bet-with-livematch__paragraph {
  margin-bottom: 20px;
}

.page-blog-how-to-bet-with-livematch__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--livematch-background-color);
}

.page-blog-how-to-bet-with-livematch__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.page-blog-how-to-bet-with-livematch__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height on larger screens */
}

.page-blog-how-to-bet-with-livematch__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  margin-top: -80px; /* Pull content slightly over image for visual appeal */
  position: relative;
  z-index: 1;
  background-color: var(--livematch-card-bg); /* Use card background for content block */
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--livematch-border-color);
}

.page-blog-how-to-bet-with-livematch__main-title {
  font-size: clamp(2.5em, 4vw, 3.5em); /* Responsive H1 font size */
  color: var(--livematch-primary-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-how-to-bet-with-livematch__description {
  font-size: 1.1em;
  color: var(--livematch-text-main-color);
  margin-bottom: 30px;
}

.page-blog-how-to-bet-with-livematch__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-how-to-bet-with-livematch__btn-primary,
.page-blog-how-to-bet-with-livematch__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.page-blog-how-to-bet-with-livematch__btn-primary {
  background: var(--livematch-button-gradient);
  color: var(--livematch-text-main-color);
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-how-to-bet-with-livematch__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-how-to-bet-with-livematch__btn-secondary {
  background: none;
  color: var(--livematch-primary-color);
  border: 2px solid var(--livematch-primary-color);
}

.page-blog-how-to-bet-with-livematch__btn-secondary:hover {
  background: var(--livematch-primary-color);
  color: var(--livematch-background-color);
  transform: translateY(-3px);
}

.page-blog-how-to-bet-with-livematch__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-blog-how-to-bet-with-livematch__intro-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-blog-how-to-bet-with-livematch__features-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--livematch-background-color);
  color: var(--livematch-text-main-color);
}

.page-blog-how-to-bet-with-livematch__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-how-to-bet-with-livematch__feature-card {
  background-color: var(--livematch-card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--livematch-border-color);
}

.page-blog-how-to-bet-with-livematch__feature-icon {
  width: 100%; /* Ensure image takes full width of card */
  height: auto;
  max-height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-how-to-bet-with-livematch__feature-title {
  font-size: 1.5em;
  color: var(--livematch-secondary-color);
  margin-bottom: 15px;
}

.page-blog-how-to-bet-with-livematch__steps-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-blog-how-to-bet-with-livematch__step-by-step-guide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-bet-with-livematch__step-item {
  background-color: var(--livematch-card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--livematch-border-color);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-blog-how-to-bet-with-livematch__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--livematch-primary-color);
  margin-bottom: 15px;
  background-color: rgba(242, 193, 78, 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-blog-how-to-bet-with-livematch__step-title {
  font-size: 1.6em;
  color: var(--livematch-secondary-color);
  margin-bottom: 15px;
}

.page-blog-how-to-bet-with-livematch__markets-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-blog-how-to-bet-with-livematch__market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-bet-with-livematch__market-card {
  background-color: var(--livematch-card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--livematch-border-color);
}

.page-blog-how-to-bet-with-livematch__market-title {
  font-size: 1.5em;
  color: var(--livematch-secondary-color);
  margin-bottom: 15px;
}

.page-blog-how-to-bet-with-livematch__live-betting-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-blog-how-to-bet-with-livematch__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-how-to-bet-with-livematch ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--livematch-text-main-color);
}

.page-blog-how-to-bet-with-livematch ul li {
  margin-bottom: 10px;
}

.page-blog-how-to-bet-with-livematch__strategies-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--livematch-background-color);
  color: var(--livematch-text-main-color);
}

.page-blog-how-to-bet-with-livematch__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-bet-with-livematch__strategy-card {
  background-color: var(--livematch-card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--livematch-border-color);
}

.page-blog-how-to-bet-with-livematch__strategy-title {
  font-size: 1.5em;
  color: var(--livematch-secondary-color);
  margin-bottom: 15px;
}

.page-blog-how-to-bet-with-livematch__account-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-blog-how-to-bet-with-livematch__management-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-bet-with-livematch__management-item {
  background-color: var(--livematch-card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--livematch-border-color);
}

.page-blog-how-to-bet-with-livematch__item-title {
  font-size: 1.6em;
  color: var(--livematch-secondary-color);
  margin-bottom: 15px;
}

.page-blog-how-to-bet-with-livematch__app-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--livematch-background-color);
  color: var(--livematch-text-main-color);
}

.page-blog-how-to-bet-with-livematch__app-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-blog-how-to-bet-with-livematch__app-text {
  flex: 1;
  min-width: 300px;
}

.page-blog-how-to-bet-with-livematch__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-blog-how-to-bet-with-livematch__app-screenshot {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--livematch-border-color);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-how-to-bet-with-livematch__faq-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-blog-how-to-bet-with-livematch__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-bet-with-livematch__faq-item {
  background-color: var(--livematch-card-bg);
  border: 1px solid var(--livematch-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-bet-with-livematch__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--livematch-text-main-color);
  transition: background-color 0.3s ease;
}

.page-blog-how-to-bet-with-livematch__faq-question h3 {
  margin: 0;
  color: inherit;
}

.page-blog-how-to-bet-with-livematch__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-blog-how-to-bet-with-livematch__faq-toggle {
  font-size: 1.5em;
  color: var(--livematch-primary-color);
  transition: transform 0.3s ease;
}

.page-blog-how-to-bet-with-livematch__faq-item.active .page-blog-how-to-bet-with-livematch__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-how-to-bet-with-livematch__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--livematch-text-main-color);
}

.page-blog-how-to-bet-with-livematch__faq-item.active .page-blog-how-to-bet-with-livematch__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px;
}

.page-blog-how-to-bet-with-livematch__cta-section {
  padding-top: 60px;
  padding-bottom: 80px;
  text-align: center;
  background-color: var(--livematch-background-color);
  color: var(--livematch-text-main-color);
}

.page-blog-how-to-bet-with-livematch__cta-content {
  max-width: 800px;
}

/* Image and Button Responsive Styles */
.page-blog-how-to-bet-with-livematch img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure content area images are at least 200x200px display size on desktop */
.page-blog-how-to-bet-with-livematch__image-full-width,
.page-blog-how-to-bet-with-livematch__feature-icon,
.page-blog-how-to-bet-with-livematch__app-screenshot {
  min-width: 200px;
  min-height: 200px;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .page-blog-how-to-bet-with-livematch {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-blog-how-to-bet-with-livematch__content-area {
    padding: 20px 15px;
  }

  .page-blog-how-to-bet-with-livematch__hero-section {
    padding-top: 10px !important; /* Body handles --header-offset */
    padding-bottom: 30px;
  }

  .page-blog-how-to-bet-with-livematch__hero-content {
    margin-top: -40px;
    padding: 20px 15px;
  }

  .page-blog-how-to-bet-with-livematch__main-title {
    font-size: 2em; /* Adjust H1 for mobile */
  }

  .page-blog-how-to-bet-with-livematch__section-title {
    font-size: 2em;
    margin-bottom: 25px;
  }

  .page-blog-how-to-bet-with-livematch__subsection-title {
    font-size: 1.5em;
  }

  .page-blog-how-to-bet-with-livematch__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-how-to-bet-with-livematch__btn-primary,
  .page-blog-how-to-bet-with-livematch__btn-secondary {
    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-how-to-bet-with-livematch__features-grid,
  .page-blog-how-to-bet-with-livematch__step-by-step-guide,
  .page-blog-how-to-bet-with-livematch__market-grid,
  .page-blog-how-to-bet-with-livematch__strategy-grid,
  .page-blog-how-to-bet-with-livematch__management-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-how-to-bet-with-livematch__app-features {
    flex-direction: column;
  }

  .page-blog-how-to-bet-with-livematch__app-screenshot {
    max-width: 300px;
    margin: 0 auto;
  }

  /* Image responsiveness for all images */
  .page-blog-how-to-bet-with-livematch img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    min-width: unset;
    min-height: unset;
  }

  .page-blog-how-to-bet-with-livematch__section,
  .page-blog-how-to-bet-with-livematch__card,
  .page-blog-how-to-bet-with-livematch__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Ensure main text contrast on card backgrounds */
.page-blog-how-to-bet-with-livematch__card {
  background-color: var(--livematch-card-bg);
  color: var(--livematch-text-main-color);
}

/* Ensure light background sections have dark text for contrast if needed, but current design uses dark text on dark background for general sections */
.page-blog-how-to-bet-with-livematch__light-bg {
    background-color: var(--livematch-background-color);
    color: var(--livematch-text-main-color);
}

.page-blog-how-to-bet-with-livematch__dark-bg {
    background-color: var(--livematch-background-color);
    color: var(--livematch-text-main-color);
}

/* Specific overrides for text on primary/secondary colors if they are used as backgrounds for text, ensuring contrast */
/* Example: if a section uses --livematch-primary-color as background */
.page-blog-how-to-bet-with-livematch__primary-bg-text {
  background-color: var(--livematch-primary-color);
  color: var(--livematch-background-color); /* Dark text on primary color */
}