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

.page-blog-lucki8-best-games-guide {
  color: var(--lucki8-text-main);
  background-color: var(--lucki8-bg-main);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-blog-lucki8-best-games-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  background-color: var(--lucki8-deep-green);
  overflow: hidden;
}

.page-blog-lucki8-best-games-guide__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

.page-blog-lucki8-best-games-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-blog-lucki8-best-games-guide__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px 20px;
  background-color: var(--lucki8-deep-green);
  margin-top: -50px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-lucki8-best-games-guide__hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--lucki8-gold);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.page-blog-lucki8-best-games-guide__hero-content p {
  font-size: 1.1rem;
  color: var(--lucki8-text-secondary);
  margin-bottom: 30px;
}

.page-blog-lucki8-best-games-guide__cta-button {
  background: var(--lucki8-button-gradient);
  color: var(--lucki8-text-main);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.page-blog-lucki8-best-games-guide__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-lucki8-best-games-guide__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-lucki8-best-games-guide__section--dark {
  background-color: var(--lucki8-bg-card);
  color: var(--lucki8-text-main);
}

.page-blog-lucki8-best-games-guide__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--lucki8-gold);
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
}

.page-blog-lucki8-best-games-guide__section-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--lucki8-text-secondary);
  margin-bottom: 20px;
  text-align: center;
}

.page-blog-lucki8-best-games-guide__text-block {
  font-size: 1rem;
  color: var(--lucki8-text-main);
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-blog-lucki8-best-games-guide__text-block a {
  color: var(--lucki8-gold);
  text-decoration: underline;
}

.page-blog-lucki8-best-games-guide__text-block a:hover {
  color: var(--lucki8-primary);
}

.page-blog-lucki8-best-games-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 20px 0;
}

.page-blog-lucki8-best-games-guide__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-lucki8-best-games-guide__game-card {
  background-color: var(--lucki8-bg-card);
  border: 1px solid var(--lucki8-border);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-blog-lucki8-best-games-guide__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-lucki8-best-games-guide__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-lucki8-best-games-guide__game-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-lucki8-best-games-guide__game-card-title {
  font-size: 1.4rem;
  color: var(--lucki8-gold);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-lucki8-best-games-guide__game-card-description {
  font-size: 0.95rem;
  color: var(--lucki8-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-lucki8-best-games-guide__game-card-link {
  background: var(--lucki8-button-gradient);
  color: var(--lucki8-text-main);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.page-blog-lucki8-best-games-guide__game-card-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-blog-lucki8-best-games-guide__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-blog-lucki8-best-games-guide__strategy-item {
  background-color: var(--lucki8-bg-card);
  border: 1px solid var(--lucki8-border);
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-lucki8-best-games-guide__strategy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-lucki8-best-games-guide__strategy-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  display: block;
  object-fit: contain;
}

.page-blog-lucki8-best-games-guide__strategy-title {
  font-size: 1.5rem;
  color: var(--lucki8-gold);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-lucki8-best-games-guide__strategy-description {
  font-size: 1rem;
  color: var(--lucki8-text-secondary);
}

.page-blog-lucki8-best-games-guide__steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-blog-lucki8-best-games-guide__step-item {
  background-color: var(--lucki8-bg-card);
  border: 1px solid var(--lucki8-border);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.page-blog-lucki8-best-games-guide__step-number {
  font-size: 2.5rem;
  color: var(--lucki8-gold);
  font-weight: bold;
  line-height: 1;
  flex-shrink: 0;
}

.page-blog-lucki8-best-games-guide__step-content {
  flex-grow: 1;
}

.page-blog-lucki8-best-games-guide__step-title {
  font-size: 1.5rem;
  color: var(--lucki8-gold);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-lucki8-best-games-guide__step-description {
  font-size: 1rem;
  color: var(--lucki8-text-secondary);
}

.page-blog-lucki8-best-games-guide__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-blog-lucki8-best-games-guide__benefit-item {
  background-color: var(--lucki8-bg-card);
  border: 1px solid var(--lucki8-border);
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-blog-lucki8-best-games-guide__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-lucki8-best-games-guide__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  display: block;
  object-fit: contain;
}

.page-blog-lucki8-best-games-guide__benefit-title {
  font-size: 1.4rem;
  color: var(--lucki8-gold);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-lucki8-best-games-guide__benefit-description {
  font-size: 0.95rem;
  color: var(--lucki8-text-secondary);
}

.page-blog-lucki8-best-games-guide__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-blog-lucki8-best-games-guide__faq-item {
  background-color: var(--lucki8-bg-card);
  border: 1px solid var(--lucki8-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-lucki8-best-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  color: var(--lucki8-gold);
  font-weight: bold;
  cursor: pointer;
  background-color: var(--lucki8-deep-green);
  transition: background-color 0.3s ease;
}

.page-blog-lucki8-best-games-guide__faq-question:hover {
  background-color: var(--lucki8-primary);
}

.page-blog-lucki8-best-games-guide__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--lucki8-gold);
  transition: transform 0.3s ease;
  margin-left: 15px;
}

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

.page-blog-lucki8-best-games-guide__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--lucki8-text-secondary);
  line-height: 1.6;
}

.page-blog-lucki8-best-games-guide details > summary::-webkit-details-marker {
  display: none;
}

.page-blog-lucki8-best-games-guide details > summary {
  list-style: none;
}

@media (max-width: 768px) {
  .page-blog-lucki8-best-games-guide {
    font-size: 15px;
  }

  .page-blog-lucki8-best-games-guide__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-lucki8-best-games-guide__hero-content {
    margin-top: -30px;
    padding: 30px 15px 15px;
  }

  .page-blog-lucki8-best-games-guide__hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-lucki8-best-games-guide__hero-content p {
    font-size: 1rem;
  }

  .page-blog-lucki8-best-games-guide__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-lucki8-best-games-guide__section {
    padding: 40px 15px;
  }

  .page-blog-lucki8-best-games-guide__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-blog-lucki8-best-games-guide__game-categories,
  .page-blog-lucki8-best-games-guide__strategy-grid,
  .page-blog-lucki8-best-games-guide__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-lucki8-best-games-guide__game-card-image {
    height: 180px;
  }

  .page-blog-lucki8-best-games-guide__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
  }

  .page-blog-lucki8-best-games-guide__step-number {
    margin-bottom: 15px;
  }

  .page-blog-lucki8-best-games-guide__faq-question {
    padding: 18px 20px;
    font-size: 1.1rem;
  }

  .page-blog-lucki8-best-games-guide__faq-answer {
    padding: 0 20px 18px;
  }

  /* Image responsive rules */
  .page-blog-lucki8-best-games-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-lucki8-best-games-guide__hero-image-wrapper,
  .page-blog-lucki8-best-games-guide__game-card,
  .page-blog-lucki8-best-games-guide__strategy-item,
  .page-blog-lucki8-best-games-guide__benefit-item,
  .page-blog-lucki8-best-games-guide__step-item,
  .page-blog-lucki8-best-games-guide__text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-lucki8-best-games-guide__section--dark {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-lucki8-best-games-guide__section {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Video specific styles (if any video is added) */
  .page-blog-lucki8-best-games-guide__video-section {
    padding-top: 10px !important;
  }
  .page-blog-lucki8-best-games-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-lucki8-best-games-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}