.page-slot-games-recommendation {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Ensure consistency with body background */
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-slot-games-recommendation__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-slot-games-recommendation__section {
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slot-games-recommendation__section-title {
  font-size: 36px;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-slot-games-recommendation__paragraph {
  font-size: 18px;
  margin-bottom: 20px;
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-slot-games-recommendation__hero-section {
  padding: 80px 0 40px;
  background-color: #1A1A1A;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-slot-games-recommendation__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1;
  position: relative;
}

.page-slot-games-recommendation__hero-title {
  font-size: 52px;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-slot-games-recommendation__hero-description {
  font-size: 22px;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-recommendation__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-slot-games-recommendation__btn-primary,
.page-slot-games-recommendation__btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.page-slot-games-recommendation__btn-primary {
  background: #FFD700;
  color: #1A1A1A;
}

.page-slot-games-recommendation__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-slot-games-recommendation__btn-secondary {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-slot-games-recommendation__btn-secondary:hover {
  background: #FFD700;
  color: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-slot-games-recommendation__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  position: relative;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-slot-games-recommendation__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Featured Games Section */
.page-slot-games-recommendation__featured-games {
  background-color: #1A1A1A;
}

.page-slot-games-recommendation__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-recommendation__game-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-recommendation__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.page-slot-games-recommendation__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-slot-games-recommendation__game-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-slot-games-recommendation__game-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slot-games-recommendation__game-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games-recommendation__game-title a:hover {
  color: #e6c200;
}

.page-slot-games-recommendation__game-description {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.page-slot-games-recommendation__btn-play {
  display: inline-block;
  padding: 10px 25px;
  background: #FFD700;
  color: #1A1A1A;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  align-self: flex-start;
}

.page-slot-games-recommendation__btn-play:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.page-slot-games-recommendation__benefits-section {
  background-color: #000000;
}

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

.page-slot-games-recommendation__benefit-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-recommendation__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games-recommendation__benefit-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-recommendation__benefit-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slot-games-recommendation__benefit-description {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.5;
}

/* Tips Section */
.page-slot-games-recommendation__tips-section {
  background-color: #1A1A1A;
}

.page-slot-games-recommendation__tip-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-slot-games-recommendation__tip-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 17px;
  color: #f0f0f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Registration CTA Section */
.page-slot-games-recommendation__registration-cta {
  background-color: #000000;
  padding-bottom: 80px;
}

.page-slot-games-recommendation__registration-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-slot-games-recommendation__btn-large {
  padding: 18px 50px;
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-slot-games-recommendation__cta-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-slot-games-recommendation {
    padding-top: var(--header-offset, 120px) !important;
    font-size: 16px;
    line-height: 1.5;
  }

  .page-slot-games-recommendation__container {
    padding: 15px;
  }

  .page-slot-games-recommendation__section {
    padding: 40px 0;
  }

  .page-slot-games-recommendation__section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .page-slot-games-recommendation__paragraph {
    font-size: 16px;
  }

  .page-slot-games-recommendation__hero-section {
    padding: 60px 0 30px;
  }

  .page-slot-games-recommendation__hero-title {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .page-slot-games-recommendation__hero-description {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .page-slot-games-recommendation__hero-cta-group {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-slot-games-recommendation__btn-primary,
  .page-slot-games-recommendation__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px;
    font-size: 16px;
    white-space: normal;
    word-wrap: break-word;
  }

  .page-slot-games-recommendation__hero-image-wrapper {
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .page-slot-games-recommendation__game-grid,
  .page-slot-games-recommendation__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-slot-games-recommendation__game-card,
  .page-slot-games-recommendation__benefit-card {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .page-slot-games-recommendation__game-image {
    height: 200px;
  }

  .page-slot-games-recommendation__game-info {
    padding: 20px;
  }

  .page-slot-games-recommendation__game-title {
    font-size: 20px;
  }

  .page-slot-games-recommendation__game-description {
    font-size: 15px;
  }

  .page-slot-games-recommendation__btn-play {
    padding: 8px 20px;
    font-size: 14px;
  }

  .page-slot-games-recommendation__benefit-card {
    padding: 25px;
  }

  .page-slot-games-recommendation__benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }

  .page-slot-games-recommendation__benefit-title {
    font-size: 20px;
  }

  .page-slot-games-recommendation__tip-list {
    margin-top: 30px;
  }

  .page-slot-games-recommendation__tip-item {
    padding: 15px;
    font-size: 16px;
  }

  .page-slot-games-recommendation__btn-large {
    padding: 15px 30px;
    font-size: 18px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal;
    word-wrap: break-word;
  }

  .page-slot-games-recommendation__cta-image {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  /* General image and container responsiveness */
  .page-slot-games-recommendation img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-slot-games-recommendation__section,
  .page-slot-games-recommendation__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-slot-games-recommendation__hero-section,
  .page-slot-games-recommendation__introduction-section,
  .page-slot-games-recommendation__featured-games,
  .page-slot-games-recommendation__benefits-section,
  .page-slot-games-recommendation__tips-section,
  .page-slot-games-recommendation__registration-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  
  .page-slot-games-recommendation__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games-recommendation__registration-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}