.page-blog-game-spotlight {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A1931; /* Main background color */
}

.page-blog-game-spotlight__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-game-spotlight__container--narrow {
  max-width: 900px;
}

.page-blog-game-spotlight__hero {
  background: linear-gradient(135deg, #0A1931 0%, #1a3a66 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-blog-game-spotlight__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  animation: page-blog-game-spotlight__float-left 15s infinite ease-in-out;
}

.page-blog-game-spotlight__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  filter: blur(90px);
  animation: page-blog-game-spotlight__float-right 18s infinite ease-in-out;
}

@keyframes page-blog-game-spotlight__float-left {
  0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
  50% { transform: translate(20px, 30px) scale(1.1); opacity: 1; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
}

@keyframes page-blog-game-spotlight__float-right {
  0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(-20px, -30px) scale(1.05); opacity: 0.9; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
}

.page-blog-game-spotlight__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main titles */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-game-spotlight__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-blog-game-spotlight__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA buttons */
  color: #0A1931; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-blog-game-spotlight__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-blog-game-spotlight__cta-button--large {
  padding: 18px 35px;
  font-size: 1.25em;
}

.page-blog-game-spotlight__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-blog-game-spotlight__section:last-of-type {
  border-bottom: none;
}

.page-blog-game-spotlight__heading {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-blog-game-spotlight__heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-blog-game-spotlight__sub-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: left;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-blog-game-spotlight__highlight {
  color: #FFD700;
}

.page-blog-game-spotlight__intro p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #E0E0E0;
}

.page-blog-game-spotlight__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.page-blog-game-spotlight__image:hover {
  transform: translateY(-5px);
}

.page-blog-game-spotlight__image--full-width {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-game-spotlight__image--half-width {
  width: calc(50% - 20px);
  float: right;
  margin-left: 40px;
  margin-bottom: 20px;
}

.page-blog-game-spotlight__featured-game::after {
  content: '';
  display: table;
  clear: both;
}

.page-blog-game-spotlight__game-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.page-blog-game-spotlight__game-details {
  flex: 1;
  min-width: 300px;
}

.page-blog-game-spotlight__game-details h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-blog-game-spotlight__game-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-blog-game-spotlight__game-details ul li {
  background-color: rgba(255, 215, 0, 0.05);
  padding: 10px 15px;
  margin-bottom: 8px;
  border-radius: 4px;
  border-left: 3px solid #FFD700;
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-blog-game-spotlight__game-details p {
  font-size: 1.1em;
  color: #E0E0E0;
  text-align: justify;
}

.page-blog-game-spotlight__game-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-blog-game-spotlight__game-image .page-blog-game-spotlight__image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.page-blog-game-spotlight__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-blog-game-spotlight__list li {
  background-color: rgba(255, 215, 0, 0.05);
  padding: 12px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  border-left: 4px solid #FFD700;
  font-size: 1.1em;
  color: #E0E0E0;
  transition: background-color 0.3s ease;
}

.page-blog-game-spotlight__list li:hover {
  background-color: rgba(255, 215, 0, 0.1);
}

.page-blog-game-spotlight__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-game-spotlight__step-item {
  background-color: #1a3a66; /* Darker blue for step cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-game-spotlight__step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-blog-game-spotlight__step-item h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-blog-game-spotlight__step-item p {
  color: #D0D0D0;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-blog-game-spotlight__icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-blog-game-spotlight__link-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog-game-spotlight__link-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-blog-game-spotlight__final-cta {
  font-size: 1.5em;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  color: #FFD700;
  font-weight: bold;
}

.page-blog-game-spotlight__responsible-gambling p {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-blog-game-spotlight__responsible-gambling .page-blog-game-spotlight__link {
  display: block;
  text-align: center;
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-blog-game-spotlight__responsible-gambling .page-blog-game-spotlight__link:hover {
  color: #e6c200;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-blog-game-spotlight__title {
    font-size: 2.5em;
  }

  .page-blog-game-spotlight__subtitle {
    font-size: 1.1em;
  }

  .page-blog-game-spotlight__heading {
    font-size: 2em;
  }

  .page-blog-game-spotlight__sub-heading {
    font-size: 1.5em;
  }

  .page-blog-game-spotlight__image--half-width {
    width: 100%;
    float: none;
    margin: 30px 0;
  }

  .page-blog-game-spotlight__game-overview {
    flex-direction: column;
    gap: 20px;
  }

  .page-blog-game-spotlight__game-details, .page-blog-game-spotlight__game-image {
    min-width: unset;
    width: 100%;
  }

  .page-blog-game-spotlight__hero {
    padding: 80px 0;
  }

  .page-blog-game-spotlight__section {
    padding: 40px 0;
  }

  .page-blog-game-spotlight__final-cta {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-blog-game-spotlight__title {
    font-size: 2em;
  }

  .page-blog-game-spotlight__subtitle {
    font-size: 1em;
  }

  .page-blog-game-spotlight__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-blog-game-spotlight__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-blog-game-spotlight__heading {
    font-size: 1.8em;
  }

  .page-blog-game-spotlight__sub-heading {
    font-size: 1.3em;
  }

  .page-blog-game-spotlight__step-item h3 {
    font-size: 1.5em;
  }
}