/* style/blog-777x-popular-games-guide.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --background-dark: #08160F;
  --card-bg: #11271B;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
  --light-bg-text: #333333; /* For sections with light background like white */
}

.page-blog-777x-popular-games-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background-dark);
}

.page-blog-777x-popular-games-guide__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-main);
}

.page-blog-777x-popular-games-guide__light-bg {
  background-color: var(--text-main);
  color: var(--light-bg-text);
}

.page-blog-777x-popular-games-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px 20px; /* Small top padding, larger bottom padding */
  overflow: hidden;
}

.page-blog-777x-popular-games-guide__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-blog-777x-popular-games-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-777x-popular-games-guide__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-777x-popular-games-guide__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Using clamp for responsive H1 */
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-777x-popular-games-guide__subtitle {
  font-size: 1.2em;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-777x-popular-games-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-777x-popular-games-guide__btn-primary,
.page-blog-777x-popular-games-guide__btn-secondary,
.page-blog-777x-popular-games-guide__inline-link {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-777x-popular-games-guide__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-777x-popular-games-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
  opacity: 0.9;
}

.page-blog-777x-popular-games-guide__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-777x-popular-games-guide__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-main);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.2);
}

.page-blog-777x-popular-games-guide__inline-link {
  color: var(--primary-color);
  text-decoration: underline;
  padding: 0;
  border: none;
  background: none;
}

.page-blog-777x-popular-games-guide__inline-link:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-blog-777x-popular-games-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-777x-popular-games-guide__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.page-blog-777x-popular-games-guide__light-bg .page-blog-777x-popular-games-guide__section-title {
  color: var(--deep-green);
}

.page-blog-777x-popular-games-guide__text-block {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.7;
  text-align: justify;
}

.page-blog-777x-popular-games-guide__highlight {
  color: var(--gold-color);
  font-weight: bold;
}

.page-blog-777x-popular-games-guide__light-bg .page-blog-777x-popular-games-guide__highlight {
  color: var(--primary-color);
}

.page-blog-777x-popular-games-guide__games-section,
.page-blog-777x-popular-games-guide__promotions-section,
.page-blog-777x-popular-games-guide__support-app-section,
.page-blog-777x-popular-games-guide__conclusion-section {
  padding: 80px 0;
  border-top: 1px solid var(--divider-color);
}

.page-blog-777x-popular-games-guide__registration-guide,
.page-blog-777x-popular-games-guide__tips-section,
.page-blog-777x-popular-games-guide__faq-section {
  padding: 80px 0;
  border-top: 1px solid var(--divider-color);
}

.page-blog-777x-popular-games-guide__game-grid,
.page-blog-777x-popular-games-guide__promo-grid,
.page-blog-777x-popular-games-guide__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-777x-popular-games-guide__game-card,
.page-blog-777x-popular-games-guide__promo-card,
.page-blog-777x-popular-games-guide__tip-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
}

.page-blog-777x-popular-games-guide__light-bg .page-blog-777x-popular-games-guide__game-card,
.page-blog-777x-popular-games-guide__light-bg .page-blog-777x-popular-games-guide__promo-card,
.page-blog-777x-popular-games-guide__light-bg .page-blog-777x-popular-games-guide__tip-card {
  background-color: #ffffff;
  color: var(--light-bg-text);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
}

.page-blog-777x-popular-games-guide__game-card:hover,
.page-blog-777x-popular-games-guide__promo-card:hover,
.page-blog-777x-popular-games-guide__tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-777x-popular-games-guide__game-image,
.page-blog-777x-popular-games-guide__promo-image,
.page-blog-777x-popular-games-guide__registration-image,
.page-blog-777x-popular-games-guide__app-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

.page-blog-777x-popular-games-guide__game-title,
.page-blog-777x-popular-games-guide__promo-title,
.page-blog-777x-popular-games-guide__tip-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gold-color);
}

.page-blog-777x-popular-games-guide__light-bg .page-blog-777x-popular-games-guide__game-title,
.page-blog-777x-popular-games-guide__light-bg .page-blog-777x-popular-games-guide__promo-title,
.page-blog-777x-popular-games-guide__light-bg .page-blog-777x-popular-games-guide__tip-title {
  color: var(--primary-color);
}

.page-blog-777x-popular-games-guide__game-description,
.page-blog-777x-popular-games-guide__promo-description,
.page-blog-777x-popular-games-guide__tip-description {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
  color: var(--text-secondary);
}

.page-blog-777x-popular-games-guide__light-bg .page-blog-777x-popular-games-guide__game-description,
.page-blog-777x-popular-games-guide__light-bg .page-blog-777x-popular-games-guide__promo-description,
.page-blog-777x-popular-games-guide__light-bg .page-blog-777x-popular-games-guide__tip-description {
  color: var(--light-bg-text);
}

.page-blog-777x-popular-games-guide__flex-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-blog-777x-popular-games-guide__flex-content--reverse {
  flex-direction: row-reverse;
}

.page-blog-777x-popular-games-guide__text-column,
.page-blog-777x-popular-games-guide__image-column {
  flex: 1;
  min-width: 300px;
}

.page-blog-777x-popular-games-guide__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-blog-777x-popular-games-guide__light-bg .page-blog-777x-popular-games-guide__sub-title {
  color: var(--deep-green);
}

.page-blog-777x-popular-games-guide__numbered-list {
  list-style-type: decimal;
  margin-left: 20px;
  padding-left: 0;
  margin-bottom: 30px;
  font-size: 1.1em;
  color: var(--light-bg-text);
}

.page-blog-777x-popular-games-guide__dark-bg .page-blog-777x-popular-games-guide__numbered-list {
  color: var(--text-secondary);
}

.page-blog-777x-popular-games-guide__numbered-list li {
  margin-bottom: 10px;
}

.page-blog-777x-popular-games-guide__promo-banner {
  margin-top: 60px;
  position: relative;
  text-align: center;
}

.page-blog-777x-popular-games-guide__promo-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  min-height: 200px;
}

.page-blog-777x-popular-games-guide__promo-button {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 40px;
  font-size: 1.1em;
  white-space: nowrap;
}

.page-blog-777x-popular-games-guide__faq-list {
  margin-top: 40px;
}

.page-blog-777x-popular-games-guide__faq-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  color: var(--text-main);
}

.page-blog-777x-popular-games-guide__light-bg .page-blog-777x-popular-games-guide__faq-item {
  background-color: #ffffff;
  color: var(--light-bg-text);
  border: 1px solid var(--border-color);
}

.page-blog-777x-popular-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid var(--divider-color);
  color: var(--gold-color);
}

.page-blog-777x-popular-games-guide__light-bg .page-blog-777x-popular-games-guide__faq-question {
  color: var(--primary-color);
  border-bottom: 1px solid #e0e0e0;
}

.page-blog-777x-popular-games-guide__faq-item[open] > .page-blog-777x-popular-games-guide__faq-question {
  border-bottom: 1px solid var(--border-color);
}

.page-blog-777x-popular-games-guide__light-bg .page-blog-777x-popular-games-guide__faq-item[open] > .page-blog-777x-popular-games-guide__faq-question {
  border-bottom: 1px solid var(--primary-color);
}

.page-blog-777x-popular-games-guide__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--gold-color);
  margin-left: 15px;
}

.page-blog-777x-popular-games-guide__light-bg .page-blog-777x-popular-games-guide__faq-toggle {
  color: var(--primary-color);
}

.page-blog-777x-popular-games-guide__faq-item[open] .page-blog-777x-popular-games-guide__faq-toggle {
  content: '−';
}

.page-blog-777x-popular-games-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--text-secondary);
}

.page-blog-777x-popular-games-guide__light-bg .page-blog-777x-popular-games-guide__faq-answer {
  color: var(--light-bg-text);
}

.page-blog-777x-popular-games-guide__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-777x-popular-games-guide__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-blog-777x-popular-games-guide__section-title {
    font-size: 2em;
  }
  .page-blog-777x-popular-games-guide__game-grid,
  .page-blog-777x-popular-games-guide__promo-grid,
  .page-blog-777x-popular-games-guide__tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-777x-popular-games-guide {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-777x-popular-games-guide__hero-section {
    padding: 10px 15px 40px 15px;
  }
  .page-blog-777x-popular-games-guide__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-blog-777x-popular-games-guide__subtitle {
    font-size: 1em;
  }
  .page-blog-777x-popular-games-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-777x-popular-games-guide__btn-primary,
  .page-blog-777x-popular-games-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-777x-popular-games-guide__container {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-777x-popular-games-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-777x-popular-games-guide__text-block,
  .page-blog-777x-popular-games-guide__numbered-list {
    font-size: 0.95em;
  }
  .page-blog-777x-popular-games-guide__games-section,
  .page-blog-777x-popular-games-guide__promotions-section,
  .page-blog-777x-popular-games-guide__support-app-section,
  .page-blog-777x-popular-games-guide__conclusion-section,
  .page-blog-777x-popular-games-guide__registration-guide,
  .page-blog-777x-popular-games-guide__tips-section,
  .page-blog-777x-popular-games-guide__faq-section {
    padding: 50px 0;
  }
  .page-blog-777x-popular-games-guide__flex-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-blog-777x-popular-games-guide__flex-content--reverse {
    flex-direction: column;
  }
  .page-blog-777x-popular-games-guide__text-column,
  .page-blog-777x-popular-games-guide__image-column {
    min-width: unset;
    width: 100%;
  }
  .page-blog-777x-popular-games-guide img,
  .page-blog-777x-popular-games-guide__promo-image,
  .page-blog-777x-popular-games-guide__registration-image,
  .page-blog-777x-popular-games-guide__app-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-777x-popular-games-guide__game-card,
  .page-blog-777x-popular-games-guide__promo-card,
  .page-blog-777x-popular-games-guide__tip-card,
  .page-blog-777x-popular-games-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-777x-popular-games-guide__promo-button {
    position: static;
    transform: none;
    margin-top: 20px;
    display: block;
    max-width: 100% !important;
    width: 100% !important;
  }
  .page-blog-777x-popular-games-guide__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-blog-777x-popular-games-guide__faq-answer {
    padding: 15px 20px;
  }
  .page-blog-777x-popular-games-guide__video-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-blog-777x-popular-games-guide__main-title {
    font-size: clamp(1.6em, 8vw, 2.2em);
  }
  .page-blog-777x-popular-games-guide__section-title {
    font-size: 1.6em;
  }
  .page-blog-777x-popular-games-guide__sub-title {
    font-size: 1.5em;
  }
  .page-blog-777x-popular-games-guide__game-grid,
  .page-blog-777x-popular-games-guide__promo-grid,
  .page-blog-777x-popular-games-guide__tips-grid {
    grid-template-columns: 1fr;
  }
}