:root {
  --primary-color: #2C003D; /* Deep purple-black */
  --secondary-color: #FFD700; /* Bright gold */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f9f9f9;
  --bg-dark-1: #0d0d0d; /* Assuming this is the body background from shared.css */
  --border-light: #e0e0e0;
}

/* Base styles for the page content, considering body background is dark */
.page-resources-2024-slot-game-trends {
  color: var(--text-light); /* Default light text on dark body background */
  background-color: var(--bg-dark-1); /* Ensure consistency if main has its own bg */
  min-height: 100vh; /* Ensure content takes full height */
}

/* Fixed header padding */
.page-resources-2024-slot-game-trends__hero-article-header {
  padding-top: 120px; /* Desktop: Adjust based on fixed header height */
  background: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  padding-bottom: 40px;
}

.page-resources-2024-slot-game-trends__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-2024-slot-game-trends__main-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color); /* Highlight title with gold */
  line-height: 1.2;
}

.page-resources-2024-slot-game-trends__subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-resources-2024-slot-game-trends__main-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-resources-2024-slot-game-trends__content-section {
  padding: 60px 0;
  background: var(--bg-dark-1); /* Dark background for content sections */
  color: var(--text-light);
}

.page-resources-2024-slot-game-trends__text-block {
  background: rgba(255, 255, 255, 0.05); /* Slightly lighter background for text blocks */
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-2024-slot-game-trends__text-block h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-resources-2024-slot-game-trends__text-block h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-top: 25px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-resources-2024-slot-game-trends__text-block p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.85); /* Slightly muted light text */
}

.page-resources-2024-slot-game-trends__text-block ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
}

.page-resources-2024-slot-game-trends__text-block li {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.page-resources-2024-slot-game-trends__text-block strong {
  color: var(--secondary-color);
}

.page-resources-2024-slot-game-trends__content-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.page-resources-2024-slot-game-trends__inline-link {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-2024-slot-game-trends__inline-link:hover {
  color: #fff;
}

.page-resources-2024-slot-game-trends__cta-block {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(90deg, var(--primary-color), #4a006e);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-2024-slot-game-trends__cta-block p {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--text-light);
  font-weight: 500;
}

.page-resources-2024-slot-game-trends__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-2024-slot-game-trends__cta-button:hover {
  background: #fff;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Promo CTA Section */
.page-resources-2024-slot-game-trends__promo-cta-section {
  padding: 60px 0;
  background: #1a0026;
  text-align: center;
  color: var(--text-light);
}

.page-resources-2024-slot-game-trends__promo-cta-title {
  font-size: 38px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-resources-2024-slot-game-trends__promo-cta-description {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-2024-slot-game-trends__promo-cta-button {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-resources-2024-slot-game-trends__promo-cta-button:hover {
  background: linear-gradient(135deg, #FFF0B3, #FFD700);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Blog Section (Module 5) */
.page-resources-2024-slot-game-trends__blog-section {
  padding: 60px 0;
  background: var(--bg-dark-1); /* Slightly different dark background */
  color: var(--text-light);
}

.page-resources-2024-slot-game-trends__blog-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-2024-slot-game-trends__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-2024-slot-game-trends__blog-card {
  background: rgba(255, 255, 255, 0.08); /* Darker card background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources-2024-slot-game-trends__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-2024-slot-game-trends__blog-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-resources-2024-slot-game-trends__blog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-resources-2024-slot-game-trends__blog-content h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--secondary-color);
  line-height: 1.3;
}

.page-resources-2024-slot-game-trends__blog-link {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-2024-slot-game-trends__blog-link:hover {
  color: #fff;
  text-decoration: underline;
}

.page-resources-2024-slot-game-trends__blog-content p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-resources-2024-slot-game-trends__blog-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: auto; /* Push date to bottom */
}

/* FAQ Section */
.page-resources-2024-slot-game-trends__faq-section {
  padding: 60px 0;
  background: #1a0026; /* Dark background */
  color: var(--text-light);
}

.page-resources-2024-slot-game-trends__faq-heading {
  font-size: 36px;
  font-weight: bold;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-2024-slot-game-trends__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-resources-2024-slot-game-trends__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-resources-2024-slot-game-trends__faq-item.active .page-resources-2024-slot-game-trends__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.05); /* Lighter background for answer */
  border-radius: 0 0 5px 5px;
  color: rgba(255, 255, 255, 0.85); /* Light text on answer background */
}

.page-resources-2024-slot-game-trends__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}