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

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

.page-blog-bet1-beginner-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-blog-bet1-beginner-guide__dark-bg {
  background-color: var(--bet1-background);
  color: var(--bet1-text-main);
}

.page-blog-bet1-beginner-guide__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-bet1-beginner-guide__card-section {
  background-color: var(--bet1-card-bg);
  color: var(--bet1-text-main);
}

.page-blog-bet1-beginner-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-blog-bet1-beginner-guide__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-blog-bet1-beginner-guide__hero-content {
  padding: 20px;
  max-width: 800px;
  margin-top: 30px;
}

.page-blog-bet1-beginner-guide__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--bet1-gold-color);
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-bet1-beginner-guide__description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  margin-bottom: 30px;
  color: var(--bet1-text-secondary);
}

.page-blog-bet1-beginner-guide__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 30px;
  text-align: center;
  color: var(--bet1-glow-color);
  text-shadow: 0 0 5px rgba(87, 227, 141, 0.3);
}

.page-blog-bet1-beginner-guide__sub-title {
  font-size: clamp(1.3em, 2vw, 1.8em);
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 15px;
  color: var(--bet1-accent-color);
}

.page-blog-bet1-beginner-guide__text-block {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: inherit;
}

.page-blog-bet1-beginner-guide__text-block strong {
  color: var(--bet1-gold-color);
}

.page-blog-bet1-beginner-guide__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.page-blog-bet1-beginner-guide__content-grid--reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.page-blog-bet1-beginner-guide__content-grid--reverse .page-blog-bet1-beginner-guide__image-wrapper {
  order: 2;
}

.page-blog-bet1-beginner-guide__content-grid--reverse .page-blog-bet1-beginner-guide__text-content {
  order: 1;
}

.page-blog-bet1-beginner-guide__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-bet1-beginner-guide__content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-bet1-beginner-guide__ordered-list {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
  color: inherit;
}

.page-blog-bet1-beginner-guide__ordered-list li {
  margin-bottom: 10px;
  color: inherit;
}

.page-blog-bet1-beginner-guide__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: var(--bet1-button-gradient);
  color: var(--bet1-text-main);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-bet1-beginner-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.page-blog-bet1-beginner-guide__btn-large {
  font-size: 1.3em;
  padding: 18px 40px;
}

.page-blog-bet1-beginner-guide__text-center {
  text-align: center;
}

.page-blog-bet1-beginner-guide__faq-list {
  margin-top: 30px;
  border-top: 1px solid var(--bet1-divider-color);
}

.page-blog-bet1-beginner-guide__faq-item {
  border-bottom: 1px solid var(--bet1-divider-color);
  padding: 15px 0;
  color: var(--bet1-text-main);
}

.page-blog-bet1-beginner-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.15em;
  cursor: pointer;
  list-style: none;
  color: var(--bet1-text-main);
}

.page-blog-bet1-beginner-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-bet1-beginner-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-bet1-beginner-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: var(--bet1-gold-color);
}

.page-blog-bet1-beginner-guide__faq-item[open] .page-blog-bet1-beginner-guide__faq-toggle {
  content: "−";
}

.page-blog-bet1-beginner-guide__faq-answer {
  padding-top: 10px;
  font-size: 1em;
  color: var(--bet1-text-secondary);
}

@media (max-width: 992px) {
  .page-blog-bet1-beginner-guide__content-grid,
  .page-blog-bet1-beginner-guide__content-grid--reverse {
    grid-template-columns: 1fr;
  }
  .page-blog-bet1-beginner-guide__content-grid--reverse .page-blog-bet1-beginner-guide__image-wrapper {
    order: initial;
  }
}

@media (max-width: 768px) {
  .page-blog-bet1-beginner-guide__container {
    padding: 15px;
  }

  .page-blog-bet1-beginner-guide__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-bet1-beginner-guide__main-title {
    font-size: 2em;
  }

  .page-blog-bet1-beginner-guide__description {
    font-size: 1em;
  }

  .page-blog-bet1-beginner-guide__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-bet1-beginner-guide__sub-title {
    font-size: 1.5em;
  }

  .page-blog-bet1-beginner-guide__text-block {
    font-size: 0.95em;
  }

  .page-blog-bet1-beginner-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-bet1-beginner-guide__image-wrapper,
  .page-blog-bet1-beginner-guide__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .page-blog-bet1-beginner-guide__hero-section,
  .page-blog-bet1-beginner-guide__intro-section,
  .page-blog-bet1-beginner-guide__registration-section,
  .page-blog-bet1-beginner-guide__games-rules-section,
  .page-blog-bet1-beginner-guide__strategy-section,
  .page-blog-bet1-beginner-guide__resources-section,
  .page-blog-bet1-beginner-guide__cta-section,
  .page-blog-bet1-beginner-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-bet1-beginner-guide__btn-primary {
    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;
    text-align: center;
  }
  .page-blog-bet1-beginner-guide__btn-large {
    font-size: 1.1em;
  }
}

.page-blog-bet1-beginner-guide__content-area img,
.page-blog-bet1-beginner-guide__text-content img {
  min-width: 200px;
  min-height: 200px;
}
.page-blog-bet1-beginner-guide img {
  filter: none;
}