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

  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background-dark);
}

.page-blog-what-is-999slot__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-what-is-999slot__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles padding-top from header */
  background-color: var(--background-dark);
  overflow: hidden;
}

.page-blog-what-is-999slot__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-what-is-999slot__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px;
}

.page-blog-what-is-999slot__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly for visual effect, but not text over image */
  position: relative;
  z-index: 2;
  background: var(--background-dark);
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-what-is-999slot__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-what-is-999slot__lead-text {
  font-size: 1.2em;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-what-is-999slot__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-what-is-999slot__cta-buttons--center {
  margin-top: 40px;
}

.page-blog-what-is-999slot__btn-primary,
.page-blog-what-is-999slot__btn-secondary,
.page-blog-what-is-999slot a[class*="button"],
.page-blog-what-is-999slot a[class*="btn"] {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-what-is-999slot__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-what-is-999slot__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-what-is-999slot__btn-secondary {
  background: transparent;
  color: var(--glow-color);
  border: 2px solid var(--glow-color);
  box-shadow: 0 4px 15px rgba(87, 227, 141, 0.2);
}

.page-blog-what-is-999slot__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(87, 227, 141, 0.4);
}

.page-blog-what-is-999slot__content-section {
  padding: 60px 0;
  background-color: var(--background-dark);
}

.page-blog-what-is-999slot__dark-section {
  background-color: var(--deep-green);
}

.page-blog-what-is-999slot__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-blog-what-is-999slot__text-block {
  font-size: 1.1em;
  color: var(--text-secondary);
  text-align: justify;
  margin-bottom: 30px;
}

.page-blog-what-is-999slot__feature-grid,
.page-blog-what-is-999slot__advantages-grid,
.page-blog-what-is-999slot__steps-grid,
.page-blog-what-is-999slot__reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-what-is-999slot__feature-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-what-is-999slot__card {
  background-color: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: var(--text-main);
}

.page-blog-what-is-999slot__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-what-is-999slot__feature-icon,
.page-blog-what-is-999slot__feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-what-is-999slot__card-title {
  font-size: 1.5em;
  color: var(--glow-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-what-is-999slot__card-text {
  font-size: 1em;
  color: var(--text-secondary);
  flex-grow: 1;
}

.page-blog-what-is-999slot__game-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-blog-what-is-999slot__game-list li {
  margin-bottom: 10px;
  color: var(--text-secondary);
  position: relative;
  padding-left: 20px;
}

.page-blog-what-is-999slot__game-list li::before {
  content: '▶';
  color: var(--glow-color);
  position: absolute;
  left: 0;
  font-size: 0.8em;
  top: 4px;
}

.page-blog-what-is-999slot__game-list li a {
  color: var(--glow-color);
  text-decoration: none;
}

.page-blog-what-is-999slot__game-list li a:hover {
  text-decoration: underline;
}

.page-blog-what-is-999slot__step-item {
  text-align: center;
}

.page-blog-what-is-999slot__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--button-gradient);
  color: var(--text-main);
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(42, 209, 111, 0.5);
}

.page-blog-what-is-999slot__text-link {
  color: var(--glow-color);
  text-decoration: none;
}

.page-blog-what-is-999slot__text-link:hover {
  text-decoration: underline;
}

.page-blog-what-is-999slot__faq-section {
  padding: 60px 0;
  background-color: var(--background-dark);
}

.page-blog-what-is-999slot__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-blog-what-is-999slot__faq-item {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background-color: var(--card-background);
  color: var(--text-main);
  overflow: hidden;
}

.page-blog-what-is-999slot__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--glow-color);
  cursor: pointer;
  background-color: var(--card-background);
  list-style: none; /* For details/summary */
}

.page-blog-what-is-999slot__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-blog-what-is-999slot__faq-qtext {
  flex-grow: 1;
}

.page-blog-what-is-999slot__faq-toggle {
  font-size: 1.5em;
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.page-blog-what-is-999slot__faq-item[open] .page-blog-what-is-999slot__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-what-is-999slot__faq-answer {
  padding: 0 30px 20px;
  font-size: 1em;
  color: var(--text-secondary);
}

.page-blog-what-is-999slot__faq-answer p {
  margin: 0;
}

.page-blog-what-is-999slot__conclusion-section {
  padding: 60px 0;
  background-color: var(--deep-green);
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-what-is-999slot__hero-content {
    margin-top: -50px;
  }
}

@media (max-width: 768px) {
  .page-blog-what-is-999slot {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-what-is-999slot__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-what-is-999slot__hero-content {
    padding: 30px 15px;
    margin-top: -30px;
  }

  .page-blog-what-is-999slot__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-what-is-999slot__lead-text {
    font-size: 1em;
  }

  .page-blog-what-is-999slot__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-what-is-999slot__btn-primary,
  .page-blog-what-is-999slot__btn-secondary,
  .page-blog-what-is-999slot a[class*="button"],
  .page-blog-what-is-999slot a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
  }

  .page-blog-what-is-999slot__content-section {
    padding: 40px 0;
  }

  .page-blog-what-is-999slot__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-blog-what-is-999slot__text-block {
    font-size: 0.95em;
  }

  .page-blog-what-is-999slot__feature-grid,
  .page-blog-what-is-999slot__advantages-grid,
  .page-blog-what-is-999slot__steps-grid,
  .page-blog-what-is-999slot__reason-grid,
  .page-blog-what-is-999slot__feature-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-what-is-999slot__card {
    padding: 25px;
  }

  .page-blog-what-is-999slot__feature-icon,
  .page-blog-what-is-999slot__feature-image {
    height: 200px;
  }

  .page-blog-what-is-999slot__card-title {
    font-size: 1.3em;
  }

  .page-blog-what-is-999slot__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-blog-what-is-999slot__faq-answer {
    padding: 0 20px 15px;
  }

  /* Mobile image, video, and container responsiveness */
  .page-blog-what-is-999slot img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-what-is-999slot video,
  .page-blog-what-is-999slot__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-what-is-999slot__section,
  .page-blog-what-is-999slot__card,
  .page-blog-what-is-999slot__container,
  .page-blog-what-is-999slot__video-section,
  .page-blog-what-is-999slot__video-container,
  .page-blog-what-is-999slot__video-wrapper,
  .page-blog-what-is-999slot__cta-buttons,
  .page-blog-what-is-999slot__button-group,
  .page-blog-what-is-999slot__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-what-is-999slot__video-section {
    padding-top: 10px !important;
  }
  
  .page-blog-what-is-999slot__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}