/* style/blog-how-to-play-j33-slot-games.css */

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

.page-blog-how-to-play-j33-slot-games {
  font-family: 'Arial', sans-serif;
  color: var(--j33-text-main); /* Default text color for the page */
  background-color: var(--j33-background); /* Page background from custom colors */
  line-height: 1.6;
}

.page-blog-how-to-play-j33-slot-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, main offset handled by body */
  background-color: var(--j33-deep-green);
  overflow: hidden;
}

.page-blog-how-to-play-j33-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for hero image */
}

.page-blog-how-to-play-j33-slot-games__hero-content {
  position: relative; /* Ensure content is above the image if needed, but not overlaying */
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-how-to-play-j33-slot-games__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--j33-gold-color);
  margin-bottom: 20px;
  max-width: 100%;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-blog-how-to-play-j33-slot-games__description {
  font-size: 1.1rem;
  color: var(--j33-text-secondary);
  margin-bottom: 30px;
}

.page-blog-how-to-play-j33-slot-games__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--j33-button-gradient);
  color: #ffffff; /* Forced white text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-blog-how-to-play-j33-slot-games__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-blog-how-to-play-j33-slot-games__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--j33-background);
}

.page-blog-how-to-play-j33-slot-games__section-title {
  font-size: 2.5rem;
  color: var(--j33-primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(34, 199, 104, 0.3);
}

.page-blog-how-to-play-j33-slot-games__text-block {
  margin-bottom: 40px;
  background-color: var(--j33-card-bg);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--j33-border-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-play-j33-slot-games__text-block p {
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: var(--j33-text-main);
}

.page-blog-how-to-play-j33-slot-games__sub-title {
  font-size: 1.8rem;
  color: var(--j33-secondary-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-how-to-play-j33-slot-games__list,
.page-blog-how-to-play-j33-slot-games__ordered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--j33-text-main);
}

.page-blog-how-to-play-j33-slot-games__ordered-list {
  list-style-type: decimal;
}

.page-blog-how-to-play-j33-slot-games__list li,
.page-blog-how-to-play-j33-slot-games__ordered-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-blog-how-to-play-j33-slot-games__list strong {
  color: var(--j33-gold-color);
}

.page-blog-how-to-play-j33-slot-games__image-inline {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-blog-how-to-play-j33-slot-games__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  color: var(--j33-primary-color); /* Use brand color for text */
  border: 2px solid var(--j33-primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-blog-how-to-play-j33-slot-games__btn-secondary:hover {
  background: var(--j33-primary-color);
  color: #ffffff;
}

.page-blog-how-to-play-j33-slot-games__cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--j33-deep-green);
  border-radius: 10px;
  margin-top: 60px;
  border: 1px solid var(--j33-border-color);
}

.page-blog-how-to-play-j33-slot-games__cta-section .page-blog-how-to-play-j33-slot-games__section-title {
  color: var(--j33-gold-color);
  margin-bottom: 20px;
}

.page-blog-how-to-play-j33-slot-games__cta-section p {
  font-size: 1.15rem;
  color: var(--j33-text-secondary);
  margin-bottom: 30px;
}

/* FAQ Section */
.page-blog-how-to-play-j33-slot-games__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-play-j33-slot-games__faq-item {
  background-color: var(--j33-card-bg);
  border: 1px solid var(--j33-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-play-j33-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--j33-text-main);
  cursor: pointer;
  background-color: var(--j33-deep-green);
  border-bottom: 1px solid var(--j33-border-color);
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Safari */
  -khtml-user-select: none;    /* Konqueror HTML */
  -moz-user-select: none;      /* Old versions of Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.page-blog-how-to-play-j33-slot-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-play-j33-slot-games__faq-question::marker {
  display: none;
}

.page-blog-how-to-play-j33-slot-games__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-play-j33-slot-games__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: var(--j33-gold-color);
  transition: transform 0.3s ease;
}

.page-blog-how-to-play-j33-slot-games__faq-item[open] .page-blog-how-to-play-j33-slot-games__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-how-to-play-j33-slot-games__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: var(--j33-text-secondary);
  background-color: var(--j33-card-bg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-play-j33-slot-games__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-how-to-play-j33-slot-games__section-title {
    font-size: 2rem;
  }
  .page-blog-how-to-play-j33-slot-games__sub-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-play-j33-slot-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-play-j33-slot-games__hero-section {
    padding: 10px 15px;
  }

  .page-blog-how-to-play-j33-slot-games__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-how-to-play-j33-slot-games__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-blog-how-to-play-j33-slot-games__btn-primary,
  .page-blog-how-to-play-j33-slot-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px !important;
    text-align: center;
  }

  .page-blog-how-to-play-j33-slot-games__hero-content .page-blog-how-to-play-j33-slot-games__btn-primary {
    margin-top: 15px;
  }

  .page-blog-how-to-play-j33-slot-games__content-area {
    padding: 30px 15px;
  }

  .page-blog-how-to-play-j33-slot-games__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-how-to-play-j33-slot-games__text-block {
    padding: 20px;
  }

  .page-blog-how-to-play-j33-slot-games__sub-title {
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .page-blog-how-to-play-j33-slot-games__list,
  .page-blog-how-to-play-j33-slot-games__ordered-list {
    margin-left: 15px;
  }

  .page-blog-how-to-play-j33-slot-games__list li,
  .page-blog-how-to-play-j33-slot-games__ordered-list li,
  .page-blog-how-to-play-j33-slot-games__text-block p {
    font-size: 0.95rem;
  }

  /* Image responsive rules */
  .page-blog-how-to-play-j33-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-how-to-play-j33-slot-games__section,
  .page-blog-how-to-play-j33-slot-games__card,
  .page-blog-how-to-play-j33-slot-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-blog-how-to-play-j33-slot-games__hero-image {
    max-height: 400px; /* Adjust hero image height for mobile */
  }

  .page-blog-how-to-play-j33-slot-games__faq-question {
    font-size: 1.1rem;
    padding: 15px;
  }

  .page-blog-how-to-play-j33-slot-games__faq-answer {
    padding: 15px;
  }

  .page-blog-how-to-play-j33-slot-games__cta-section {
    padding: 40px 15px;
  }

  .page-blog-how-to-play-j33-slot-games__cta-section p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-play-j33-slot-games__main-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
  .page-blog-how-to-play-j33-slot-games__section-title {
    font-size: 1.5rem;
  }
  .page-blog-how-to-play-j33-slot-games__sub-title {
    font-size: 1.2rem;
  }
  .page-blog-how-to-play-j33-slot-games__faq-question {
    font-size: 1rem;
  }
}