/* style/blog-big777-official-website-popular-games-guide.css */

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

.page-blog-big777-official-website-popular-games-guide {
  font-family: Arial, sans-serif;
  color: var(--page-text-main); /* Default text color for dark background */
  background-color: var(--page-background); /* Overall page background */
  line-height: 1.6;
}

.page-blog-big777-official-website-popular-games-guide h1,
.page-blog-big777-official-website-popular-games-guide h2,
.page-blog-big777-official-website-popular-games-guide h3 {
  color: var(--page-text-main);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-blog-big777-official-website-popular-games-guide h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-blog-big777-official-website-popular-games-guide h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-blog-big777-official-website-popular-games-guide h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-blog-big777-official-website-popular-games-guide p {
  margin-bottom: 15px;
  color: var(--page-text-secondary);
}

.page-blog-big777-official-website-popular-games-guide a {
  color: var(--page-primary-color);
  text-decoration: none;
}

.page-blog-big777-official-website-popular-games-guide a:hover {
  text-decoration: underline;
  color: var(--page-secondary-color);
}

/* Hero Section */
.page-blog-big777-official-website-popular-games-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  text-align: center;
}

.page-blog-big777-official-website-popular-games-guide__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
}

.page-blog-big777-official-website-popular-games-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim image for better text contrast */
}

.page-blog-big777-official-website-popular-games-guide__hero-content {
  position: relative;
  z-index: 10; /* Ensure content is above image but not overlaying */
  max-width: 900px;
  margin-top: 30px;
  padding: 0 20px;
}

.page-blog-big777-official-website-popular-games-guide__hero-title {
  color: var(--page-text-main);
  margin-bottom: 20px;
}

.page-blog-big777-official-website-popular-games-guide__hero-description {
  color: var(--page-text-secondary);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* CTA Button Styles */
.page-blog-big777-official-website-popular-games-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: normal; /* Allow button text to wrap */
  word-wrap: break-word; /* Allow long words to break */
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-big777-official-website-popular-games-guide__cta-button--primary {
  background: var(--page-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-big777-official-website-popular-games-guide__cta-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-blog-big777-official-website-popular-games-guide__cta-button--secondary {
  background-color: transparent;
  color: var(--page-primary-color);
  border: 2px solid var(--page-border-color);
}

.page-blog-big777-official-website-popular-games-guide__cta-button--secondary:hover {
  background-color: var(--page-primary-color);
  color: #ffffff;
  border-color: var(--page-primary-color);
}

/* Content Area */
.page-blog-big777-official-website-popular-games-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--page-background); /* Ensure content area matches body background */
  color: var(--page-text-main);
}

.page-blog-big777-official-website-popular-games-guide__section-intro,
.page-blog-big777-official-website-popular-games-guide__highlight-section,
.page-blog-big777-official-website-popular-games-guide__games-overview,
.page-blog-big777-official-website-popular-games-guide__guide-section,
.page-blog-big777-official-website-popular-games-guide__promo-section,
.page-blog-big777-official-website-popular-games-guide__security-section,
.page-blog-big777-official-website-popular-games-guide__faq-section,
.page-blog-big777-official-website-popular-games-guide__conclusion-section {
  margin-bottom: 60px;
  padding: 20px;
  border-radius: 10px;
  background-color: var(--page-card-bg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-border-color);
}

.page-blog-big777-official-website-popular-games-guide__text-block {
  color: var(--page-text-secondary);
  margin-bottom: 15px;
}

.page-blog-big777-official-website-popular-games-guide__feature-list,
.page-blog-big777-official-website-popular-games-guide__tips-list,
.page-blog-big777-official-website-popular-games-guide__promo-list,
.page-blog-big777-official-website-popular-games-guide__steps-list {
  list-style: none;
  padding: 0;
  margin-left: 20px;
}

.page-blog-big777-official-website-popular-games-guide__feature-item,
.page-blog-big777-official-website-popular-games-guide__tips-item,
.page-blog-big777-official-website-popular-games-guide__promo-item,
.page-blog-big777-official-website-popular-games-guide__steps-item {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: var(--page-text-secondary);
}

.page-blog-big777-official-website-popular-games-guide__feature-item::before,
.page-blog-big777-official-website-popular-games-guide__tips-item::before,
.page-blog-big777-official-website-popular-games-guide__promo-item::before,
.page-blog-big777-official-website-popular-games-guide__steps-item::before {
  content: '✔';
  color: var(--page-primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-blog-big777-official-website-popular-games-guide__steps-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background-color: var(--page-primary-color);
  color: var(--page-text-main);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
  top: 2px;
}

.page-blog-big777-official-website-popular-games-guide__steps-list {
  counter-reset: step-counter;
}

.page-blog-big777-official-website-popular-games-guide__game-category {
  background-color: var(--page-deep-green-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: center;
  border: 1px solid var(--page-border-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-big777-official-website-popular-games-guide__game-category-title {
  color: var(--page-text-main);
  margin-bottom: 20px;
}

.page-blog-big777-official-website-popular-games-guide__game-image,
.page-blog-big777-official-website-popular-games-guide__security-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--page-border-color);
}

.page-blog-big777-official-website-popular-games-guide__guide-item {
  background-color: var(--page-deep-green-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid var(--page-border-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-big777-official-website-popular-games-guide__guide-item-title {
  color: var(--page-text-main);
  margin-bottom: 15px;
}

.page-blog-big777-official-website-popular-games-guide__support-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

/* FAQ Section */
.page-blog-big777-official-website-popular-games-guide__faq-list {
  margin-top: 30px;
}

.page-blog-big777-official-website-popular-games-guide__faq-item {
  background-color: var(--page-deep-green-color);
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-big777-official-website-popular-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  color: var(--page-text-main);
  font-weight: bold;
  background-color: var(--page-card-bg);
  border-bottom: 1px solid var(--page-border-color);
  list-style: none; /* For details/summary */
}

.page-blog-big777-official-website-popular-games-guide__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome/Safari */
}

.page-blog-big777-official-website-popular-games-guide__faq-question::marker {
  display: none; /* Hide default marker for Firefox */
}

.page-blog-big777-official-website-popular-games-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-big777-official-website-popular-games-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-primary-color);
}

.page-blog-big777-official-website-popular-games-guide__faq-answer {
  padding: 15px 20px;
  color: var(--page-text-secondary);
  background-color: var(--page-deep-green-color);
  border-top: 1px solid var(--page-divider-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-big777-official-website-popular-games-guide__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-big777-official-website-popular-games-guide__hero-title {
    font-size: 2.8rem;
  }

  .page-blog-big777-official-website-popular-games-guide h2 {
    font-size: 2.2rem;
  }

  .page-blog-big777-official-website-popular-games-guide h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .page-blog-big777-official-website-popular-games-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-big777-official-website-popular-games-guide__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
    padding-bottom: 30px;
  }

  .page-blog-big777-official-website-popular-games-guide__hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-blog-big777-official-website-popular-games-guide__hero-description {
    font-size: 1rem;
  }

  .page-blog-big777-official-website-popular-games-guide__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-big777-official-website-popular-games-guide__support-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-big777-official-website-popular-games-guide__content-area,
  .page-blog-big777-official-website-popular-games-guide__section-intro,
  .page-blog-big777-official-website-popular-games-guide__highlight-section,
  .page-blog-big777-official-website-popular-games-guide__games-overview,
  .page-blog-big777-official-website-popular-games-guide__guide-section,
  .page-blog-big777-official-website-popular-games-guide__promo-section,
  .page-blog-big777-official-website-popular-games-guide__security-section,
  .page-blog-big777-official-website-popular-games-guide__faq-section,
  .page-blog-big777-official-website-popular-games-guide__conclusion-section {
    padding: 15px;
    margin-bottom: 40px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-big777-official-website-popular-games-guide h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-big777-official-website-popular-games-guide h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-blog-big777-official-website-popular-games-guide__game-image,
  .page-blog-big777-official-website-popular-games-guide__security-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-big777-official-website-popular-games-guide__faq-question {
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-big777-official-website-popular-games-guide__hero-title {
    font-size: clamp(1.8rem, 10vw, 2.2rem);
  }

  .page-blog-big777-official-website-popular-games-guide h2 {
    font-size: 1.6rem;
  }

  .page-blog-big777-official-website-popular-games-guide h3 {
    font-size: 1.2rem;
  }

  .page-blog-big777-official-website-popular-games-guide__cta-button {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
}