/* style/blog-lodigame-latest-games-guide.css */

/* Root variables for colors */
:root {
  --lodigame-primary-color: #F2C14E;
  --lodigame-secondary-color: #FFD36B;
  --lodigame-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --lodigame-card-bg: #111111;
  --lodigame-background-color: #0A0A0A;
  --lodigame-text-main: #FFF6D6;
  --lodigame-border-color: #3A2A12;
  --lodigame-glow-color: #FFD36B;
}

.page-blog-lodigame-latest-games-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--lodigame-text-main); /* Default text color for dark body background */
  background-color: var(--lodigame-background-color); /* Page background */
}

.page-blog-lodigame-latest-games-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: var(--lodigame-background-color);
  overflow: hidden;
}

.page-blog-lodigame-latest-games-guide__hero-image {
  width: 100%;
  height: auto;
  max-height: 700px; /* Limit hero image height */
  object-fit: cover;
  display: block;
  opacity: 0.7;
  z-index: 1;
}

.page-blog-lodigame-latest-games-guide__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  color: var(--lodigame-text-main);
}

.page-blog-lodigame-latest-games-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--lodigame-secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-blog-lodigame-latest-games-guide__intro-text {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-lodigame-latest-games-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-blog-lodigame-latest-games-guide__btn-primary,
.page-blog-lodigame-latest-games-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-lodigame-latest-games-guide__btn-primary {
  background: var(--lodigame-button-gradient);
  color: #ffffff; /* White text for contrast */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-lodigame-latest-games-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
  opacity: 0.9;
}

.page-blog-lodigame-latest-games-guide__btn-secondary {
  background: var(--lodigame-card-bg);
  color: var(--lodigame-primary-color);
  border: 2px solid var(--lodigame-primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-lodigame-latest-games-guide__btn-secondary:hover {
  transform: translateY(-3px);
  background: var(--lodigame-primary-color);
  color: var(--lodigame-card-bg);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

.page-blog-lodigame-latest-games-guide__content-section {
  padding: 60px 20px;
}

.page-blog-lodigame-latest-games-guide__dark-bg {
  background-color: var(--lodigame-background-color);
  color: var(--lodigame-text-main);
}

.page-blog-lodigame-latest-games-guide__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark for contrast */
  color: var(--lodigame-text-main);
}

.page-blog-lodigame-latest-games-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-lodigame-latest-games-guide__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--lodigame-primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-blog-lodigame-latest-games-guide__sub-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--lodigame-secondary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-lodigame-latest-games-guide__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--lodigame-text-main);
}

.page-blog-lodigame-latest-games-guide__image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--lodigame-border-color);
}

/* FAQ Section Styling */
.page-blog-lodigame-latest-games-guide__faq-list {
  margin-top: 40px;
}

.page-blog-lodigame-latest-games-guide__faq-item {
  background-color: var(--lodigame-card-bg);
  border: 1px solid var(--lodigame-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-lodigame-latest-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--lodigame-primary-color);
  cursor: pointer;
  background-color: #1a1a1a;
  transition: background-color 0.3s ease;
}

.page-blog-lodigame-latest-games-guide__faq-question:hover {
  background-color: #2c2c2c;
}

.page-blog-lodigame-latest-games-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-lodigame-latest-games-guide__faq-item.active .page-blog-lodigame-latest-games-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-lodigame-latest-games-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--lodigame-text-main);
  font-size: 1rem;
}

.page-blog-lodigame-latest-games-guide__faq-item.active .page-blog-lodigame-latest-games-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 15px 25px;
}

.page-blog-lodigame-latest-games-guide__faq-answer p {
  margin: 0;
  line-height: 1.6;
}

.page-blog-lodigame-latest-games-guide__cta-buttons--faq {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-lodigame-latest-games-guide__hero-content {
    padding: 15px;
  }
  .page-blog-lodigame-latest-games-guide__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-lodigame-latest-games-guide__intro-text {
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  }
}

@media (max-width: 768px) {
  .page-blog-lodigame-latest-games-guide__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-lodigame-latest-games-guide__hero-content {
    position: static;
    transform: none;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* Add background for readability on mobile */
    margin-top: -100px; /* Pull content up slightly over image */
  }
  .page-blog-lodigame-latest-games-guide__hero-image {
    max-height: 400px;
    margin-bottom: 20px;
  }
  .page-blog-lodigame-latest-games-guide__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-blog-lodigame-latest-games-guide__intro-text {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
  .page-blog-lodigame-latest-games-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-lodigame-latest-games-guide__btn-primary,
  .page-blog-lodigame-latest-games-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-lodigame-latest-games-guide__content-section {
    padding: 40px 15px;
  }
  .page-blog-lodigame-latest-games-guide__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-lodigame-latest-games-guide__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }
  .page-blog-lodigame-latest-games-guide__sub-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-blog-lodigame-latest-games-guide__paragraph {
    font-size: 1rem;
  }

  /* Images responsiveness */
  .page-blog-lodigame-latest-games-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-blog-lodigame-latest-games-guide__image {
    margin: 30px auto;
  }
  /* FAQ responsiveness */
  .page-blog-lodigame-latest-games-guide__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-blog-lodigame-latest-games-guide__faq-answer {
    padding: 0 20px;
  }
  .page-blog-lodigame-latest-games-guide__faq-item.active .page-blog-lodigame-latest-games-guide__faq-answer {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-lodigame-latest-games-guide__main-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
  .page-blog-lodigame-latest-games-guide__intro-text {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
  }
  .page-blog-lodigame-latest-games-guide__btn-primary,
  .page-blog-lodigame-latest-games-guide__btn-secondary {
    font-size: 0.95rem;
    padding: 10px 15px;
  }
}