:root {
  --88jl-primary: #F2C14E; /* Main color */
  --88jl-secondary: #FFD36B; /* Accent color */
  --88jl-card-bg: #111111;
  --88jl-background: #0A0A0A;
  --88jl-text-main: #FFF6D6;
  --88jl-border: #3A2A12;
  --88jl-glow: #FFD36B;
  --88jl-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --text-on-dark: #ffffff; /* For buttons and elements on brand colors */
  --text-on-light: #333333; /* Default for light backgrounds if needed */
}

.page-blog-latest-slot-games-recommendation {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--88jl-text-main); /* Main text color for dark background */
  background-color: var(--88jl-background); /* Body background from shared.css */
}

/* Typography */
.page-blog-latest-slot-games-recommendation h1,
.page-blog-latest-slot-games-recommendation h2,
.page-blog-latest-slot-games-recommendation h3 {
  color: var(--88jl-secondary); /* Headings use accent color */
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-blog-latest-slot-games-recommendation h1 {
  font-size: clamp(2.5rem, 6vw, 4rem); /* Responsive H1 font size */
  font-weight: bold;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.6);
}

.page-blog-latest-slot-games-recommendation h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  text-align: center;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.page-blog-latest-slot-games-recommendation h3 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: bold;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

/* Container for content */
.page-blog-latest-slot-games-recommendation__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Sections */
.page-blog-latest-slot-games-recommendation__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Minimal top padding, rely on body for header offset */
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-latest-slot-games-recommendation__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for hero image */
}

.page-blog-latest-slot-games-recommendation__hero-content {
  position: relative; /* Not absolute, to be below image */
  margin-top: 20px; /* Space between image and content */
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.page-blog-latest-slot-games-recommendation__hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* General Text Block Styling */
.page-blog-latest-slot-games-recommendation__text-block {
  padding: 40px 0;
  background-color: var(--88jl-background);
}

/* Call to Action Buttons */
.page-blog-latest-slot-games-recommendation__cta-button,
.page-blog-latest-slot-games-recommendation__play-button {
  display: inline-block;
  background: var(--88jl-button-gradient);
  color: var(--text-on-dark); /* White text on button gradient */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-blog-latest-slot-games-recommendation__cta-button:hover,
.page-blog-latest-slot-games-recommendation__play-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.6);
}

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

.page-blog-latest-slot-games-recommendation__btn-primary {
  background: var(--88jl-button-gradient);
  color: var(--text-on-dark);
}

.page-blog-latest-slot-games-recommendation__btn-secondary {
  background: transparent;
  color: var(--88jl-secondary);
  border: 2px solid var(--88jl-secondary);
}

.page-blog-latest-slot-games-recommendation__btn-secondary:hover {
  background: var(--88jl-secondary);
  color: var(--88jl-background);
}

/* Categories Section */
.page-blog-latest-slot-games-recommendation__categories-section {
  padding: 60px 0;
  background-color: var(--88jl-card-bg); /* Darker background for categories */
}

.page-blog-latest-slot-games-recommendation__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-blog-latest-slot-games-recommendation__category-card {
  background: var(--88jl-card-bg);
  border: 1px solid var(--88jl-border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}