/* style/blog-aebet-beginners-guide.css */

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

.page-blog-aebet-beginners-guide {
  font-family: 'Arial', sans-serif;
  color: var(--aebet-text-main); /* Default text color for the main section, assuming dark body bg */
  background-color: var(--aebet-background); /* Override for specific sections if needed, but body is handled by shared */
}

.page-blog-aebet-beginners-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--aebet-background);
}

.page-blog-aebet-beginners-guide__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
}

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

.page-blog-aebet-beginners-guide__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  color: var(--aebet-text-main);
}

.page-blog-aebet-beginners-guide__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--aebet-gold-color);
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-aebet-beginners-guide__intro-text {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--aebet-text-secondary);
}

.page-blog-aebet-beginners-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-aebet-beginners-guide__btn-primary,
.page-blog-aebet-beginners-guide__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-aebet-beginners-guide__btn-primary {
  background: var(--aebet-button-gradient);
  color: #ffffff;
  border: 2px solid var(--aebet-glow-color);
}

.page-blog-aebet-beginners-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-blog-aebet-beginners-guide__btn-secondary {
  background: transparent;
  color: var(--aebet-glow-color);
  border: 2px solid var(--aebet-glow-color);
}

.page-blog-aebet-beginners-guide__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  color: #ffffff;
  transform: translateY(-3px);
}

.page-blog-aebet-beginners-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--aebet-text-main); /* Light background for content area */
  color: #333333; /* Dark text for light background */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-top: -30px; /* Overlap with hero for visual flow */
  position: relative;
  z-index: 1;
}

.page-blog-aebet-beginners-guide__section-title {
  font-size: 2em;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 25px;
  color: var(--aebet-primary-color);
  border-bottom: 2px solid var(--aebet-divider-color);
  padding-bottom: 10px;
}

.page-blog-aebet-beginners-guide__paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333333;
}

.page-blog-aebet-beginners-guide__ordered-list,
.page-blog-aebet-beginners-guide__unordered-list {
  list-style-position: inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-blog-aebet-beginners-guide__ordered-list li,
.page-blog-aebet-beginners-guide__unordered-list li {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 10px;
  color: #333333;
}

.page-blog-aebet-beginners-guide__text-link {
  color: var(--aebet-primary-color);
  text-decoration: none;
  font-weight: 600;
}

.page-blog-aebet-beginners-guide__text-link:hover {
  text-decoration: underline;
}

.page-blog-aebet-beginners-guide__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

.page-blog-aebet-beginners-guide__faq-list {
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-aebet-beginners-guide__faq-item {
  background-color: #f9f9f9;
  border: 1px solid var(--aebet-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-blog-aebet-beginners-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--aebet-primary-color);
  cursor: pointer;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
}

.page-blog-aebet-beginners-guide__faq-question:hover {
  background-color: #e0e0e0;
}

.page-blog-aebet-beginners-guide__faq-item[open] .page-blog-aebet-beginners-guide__faq-question {
  background-color: var(--aebet-primary-color);
  color: #ffffff;
}

.page-blog-aebet-beginners-guide__faq-item[open] .page-blog-aebet-beginners-guide__faq-question .page-blog-aebet-beginners-guide__faq-toggle {
  color: #ffffff;
}

.page-blog-aebet-beginners-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--aebet-primary-color);
}

.page-blog-aebet-beginners-guide__faq-item[open] .page-blog-aebet-beginners-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-aebet-beginners-guide__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  background-color: #ffffff;
}

.page-blog-aebet-beginners-guide__faq-answer p {
  margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-aebet-beginners-guide__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-aebet-beginners-guide__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-aebet-beginners-guide__intro-text {
    font-size: 1em;
  }

  .page-blog-aebet-beginners-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-aebet-beginners-guide__btn-primary,
  .page-blog-aebet-beginners-guide__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-aebet-beginners-guide__content-area {
    padding: 25px 15px;
    margin-top: -15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-aebet-beginners-guide__section-title {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-aebet-beginners-guide__paragraph,
  .page-blog-aebet-beginners-guide__ordered-list li,
  .page-blog-aebet-beginners-guide__unordered-list li {
    font-size: 0.95em;
  }

  .page-blog-aebet-beginners-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-aebet-beginners-guide__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-blog-aebet-beginners-guide__faq-answer {
    padding: 10px 20px 15px;
  }
}