/* style/blog-i33win-game-guide-beginner-advanced.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-i33win-game-guide-beginner-advanced {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-i33win-game-guide-beginner-advanced__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-i33win-game-guide-beginner-advanced__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-i33win-game-guide-beginner-advanced__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-blog-i33win-game-guide-beginner-advanced__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-top: 60px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 8px;
}

.page-blog-i33win-game-guide-beginner-advanced__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-i33win-game-guide-beginner-advanced__description {
  font-size: 1.15rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-i33win-game-guide-beginner-advanced__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* General Section Styles */
.page-blog-i33win-game-guide-beginner-advanced__section-title {
  font-size: 2.2rem;
  color: #26A9E0; /* Brand color for titles */
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.page-blog-i33win-game-guide-beginner-advanced__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #f0f0f0; /* Light text for general content on dark background */
}

.page-blog-i33win-game-guide-beginner-advanced__content-area {
  background-color: #1a1a1a; /* Dark background from body */
  padding: 60px 0;
  color: #ffffff; /* Light text for content area */
}

.page-blog-i33win-game-guide-beginner-advanced__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px auto;
  max-width: 800px; /* Recommended content image size */
}

/* List styles */
.page-blog-i33win-game-guide-beginner-advanced__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-blog-i33win-game-guide-beginner-advanced__list-item {
  background: rgba(255, 255, 255, 0.05); /* Slightly lighter background for list items */
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  border-left: 5px solid #26A9E0;
  color: #ffffff;
}

.page-blog-i33win-game-guide-beginner-advanced__list-title {
  font-size: 1.5rem;
  color: #26A9E0;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-blog-i33win-game-guide-beginner-advanced__list-text {
  font-size: 1rem;
  color: #f0f0f0;
}

/* Buttons */
.page-blog-i33win-game-guide-beginner-advanced__btn-primary,
.page-blog-i33win-game-guide-beginner-advanced__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-i33win-game-guide-beginner-advanced__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-i33win-game-guide-beginner-advanced__btn-primary:hover {
  background-color: #1e87b8;
  border-color: #1e87b8;
}

.page-blog-i33win-game-guide-beginner-advanced__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-i33win-game-guide-beginner-advanced__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-i33win-game-guide-beginner-advanced__btn-large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

/* Links */
.page-blog-i33win-game-guide-beginner-advanced__link-inline {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-blog-i33win-game-guide-beginner-advanced__link-inline:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-blog-i33win-game-guide-beginner-advanced__faq-section {
  margin-top: 60px;
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  color: #ffffff;
}

.page-blog-i33win-game-guide-beginner-advanced__faq-title {
  font-size: 2rem;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-i33win-game-guide-beginner-advanced__faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.page-blog-i33win-game-guide-beginner-advanced__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  user-select: none;
  list-style: none; /* For <summary> */
}

.page-blog-i33win-game-guide-beginner-advanced__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-i33win-game-guide-beginner-advanced__faq-qtext {
  flex-grow: 1;
}

.page-blog-i33win-game-guide-beginner-advanced__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: #26A9E0;
}

.page-blog-i33win-game-guide-beginner-advanced__faq-answer {
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 1rem;
  color: #f0f0f0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Call to Action Bottom Section */
.page-blog-i33win-game-guide-beginner-advanced__cta-bottom {
  padding: 80px 20px;
  text-align: center;
  background-color: #26A9E0; /* Brand color as background */
  color: #ffffff;
}

.page-blog-i33win-game-guide-beginner-advanced__cta-title {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-blog-i33win-game-guide-beginner-advanced__cta-description {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-i33win-game-guide-beginner-advanced__hero-content {
    margin-top: 30px;
  }
  .page-blog-i33win-game-guide-beginner-advanced__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-i33win-game-guide-beginner-advanced__description {
    font-size: 1.05rem;
  }
  .page-blog-i33win-game-guide-beginner-advanced__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-blog-i33win-game-guide-beginner-advanced__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-i33win-game-guide-beginner-advanced__hero-content {
    padding: 15px;
  }
  .page-blog-i33win-game-guide-beginner-advanced__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-blog-i33win-game-guide-beginner-advanced__description {
    font-size: 1rem;
  }
  .page-blog-i33win-game-guide-beginner-advanced__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100% !important; /* Ensure button container is full width */
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }
  .page-blog-i33win-game-guide-beginner-advanced__btn-primary,
  .page-blog-i33win-game-guide-beginner-advanced__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-i33win-game-guide-beginner-advanced__content-area,
  .page-blog-i33win-game-guide-beginner-advanced__cta-bottom {
    padding: 40px 0;
  }
  .page-blog-i33win-game-guide-beginner-advanced__container {
    padding: 0 15px;
  }
  .page-blog-i33win-game-guide-beginner-advanced__section-title {
    font-size: 1.8rem;
  }
  .page-blog-i33win-game-guide-beginner-advanced__text-block {
    font-size: 1rem;
  }
  .page-blog-i33win-game-guide-beginner-advanced img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-i33win-game-guide-beginner-advanced__image-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-i33win-game-guide-beginner-advanced__list-item {
    padding: 15px;
  }
  .page-blog-i33win-game-guide-beginner-advanced__list-title {
    font-size: 1.3rem;
  }
  .page-blog-i33win-game-guide-beginner-advanced__faq-title {
    font-size: 1.8rem;
  }
  .page-blog-i33win-game-guide-beginner-advanced__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }
  .page-blog-i33win-game-guide-beginner-advanced__faq-answer {
    padding: 10px 20px;
  }
  .page-blog-i33win-game-guide-beginner-advanced__cta-title {
    font-size: 2rem;
  }
  .page-blog-i33win-game-guide-beginner-advanced__cta-description {
    font-size: 1.05rem;
  }
  .page-blog-i33win-game-guide-beginner-advanced__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}

@media (max-width: 480px) {
  .page-blog-i33win-game-guide-beginner-advanced__main-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
  .page-blog-i33win-game-guide-beginner-advanced__section-title {
    font-size: 1.6rem;
  }
  .page-blog-i33win-game-guide-beginner-advanced__faq-question {
    font-size: 1rem;
  }
  .page-blog-i33win-game-guide-beginner-advanced__faq-answer {
    font-size: 0.9rem;
  }
  .page-blog-i33win-game-guide-beginner-advanced__cta-title {
    font-size: 1.8rem;
  }
  .page-blog-i33win-game-guide-beginner-advanced__cta-description {
    font-size: 0.95rem;
  }
}