/* style/game-categories-slots-game-details.css */
.page-game-categories-slots-game-details {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

.page-game-categories-slots-game-details__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-categories-slots-game-details__section-title {
  font-size: 2.5rem;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
}

.page-game-categories-slots-game-details__description {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 30px;
  color: #cccccc;
}

/* Hero Section */
.page-game-categories-slots-game-details__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #3a455a 100%); /* Dark gradient for depth */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-categories-slots-game-details__hero-content {
  z-index: 10;
  max-width: 900px;
}

.page-game-categories-slots-game-details__hero-title {
  font-size: 3.8rem;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-game-categories-slots-game-details__hero-subtitle {
  font-size: 1.6rem;
  color: #e5dfd3;
  margin-bottom: 40px;
  font-weight: 300;
}

.page-game-categories-slots-game-details__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-game-categories-slots-game-details__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px);
  transform: scale(1.05);
}

/* Buttons */
.page-game-categories-slots-game-details__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  cursor: pointer;
}

.page-game-categories-slots-game-details__btn--primary {
  background-color: #FFD700;
  color: #1A202C; /* Dark text on gold button */
  border: 2px solid #FFD700;
}

.page-game-categories-slots-game-details__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-game-categories-slots-game-details__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-categories-slots-game-details__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-game-categories-slots-game-details__btn--outline {
  background-color: transparent;
  color: #e5dfd3;
  border: 2px solid #e5dfd3;
  margin-left: 20px;
}

.page-game-categories-slots-game-details__btn--outline:hover {
  background-color: #e5dfd3;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-game-categories-slots-game-details__btn--small {
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 6px;
}

.page-game-categories-slots-game-details__btn--large {
  padding: 18px 40px;
  font-size: 1.2rem;
  border-radius: 10px;
}

/* Overview Section */
.page-game-categories-slots-game-details__overview {
  padding: 60px 0;
  background-color: #1A202C;
}

.page-game-categories-slots-game-details__grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-game-categories-slots-game-details__grid-item {
  flex: 1;
}

.page-game-categories-slots-game-details__grid-item p {
  margin-bottom: 15px;
  color: #cccccc;
  font-size: 1.05rem;
}

.page-game-categories-slots-game-details__image-inline {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Game Features Section */
.page-game-categories-slots-game-details__game-features {
  padding: 60px 0;
  background-color: #2a3342;
}

.page-game-categories-slots-game-details__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-game-categories-slots-game-details__feature-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-categories-slots-game-details__feature-item:hover {
  transform: translateY(-5px);
}

.page-game-categories-slots-game-details__feature-title {
  font-size: 1.5rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-categories-slots-game-details__feature-item p {
  color: #cccccc;
  font-size: 1rem;
}

/* Popular Games Section */
.page-game-categories-slots-game-details__popular-games {
  padding: 60px 0;
  background-color: #1A202C;
}

.page-game-categories-slots-game-details__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-game-categories-slots-game-details__game-card {
  background-color: #2a3342;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-game-categories-slots-game-details__game-card:hover {
  transform: translateY(-5px);
}

.page-game-categories-slots-game-details__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-game-categories-slots-game-details__game-name {
  font-size: 1.6rem;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-categories-slots-game-details__game-desc {
  font-size: 0.95rem;
  color: #cccccc;
  padding: 0 15px;
  margin-bottom: 20px;
}

/* How to Play Section */
.page-game-categories-slots-game-details__how-to-play {
  padding: 60px 0;
  background-color: #2a3342;
}

.page-game-categories-slots-game-details__steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-game-categories-slots-game-details__steps li {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-game-categories-slots-game-details__step-title {
  font-size: 1.8rem;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-categories-slots-game-details__steps li p {
  color: #cccccc;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.page-game-categories-slots-game-details__link-cta {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.1rem;
}

.page-game-categories-slots-game-details__link-cta:hover {
  color: #e6c200;
}

.page-game-categories-slots-game-details__cta-text {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 40px;
  color: #e5dfd3;
}

/* Tips Section */
.page-game-categories-slots-game-details__tips {
  padding: 60px 0;
  background-color: #1A202C;
}

.page-game-categories-slots-game-details__tips-list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 30px;
}

.page-game-categories-slots-game-details__tips-list li {
  margin-bottom: 10px;
  color: #cccccc;
  font-size: 1.05rem;
}

.page-game-categories-slots-game-details__tips-list li strong {
  color: #FFD700;
}

/* Responsible Gaming Section */
.page-game-categories-slots-game-details__responsible-gaming {
  padding: 60px 0;
  background-color: #2a3342;
  text-align: center;
}

.page-game-categories-slots-game-details__responsible-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: inline-block;
  text-align: left;
}

.page-game-categories-slots-game-details__responsible-list li {
  background-color: #1A202C;
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 8px;
  color: #e5dfd3;
  font-size: 1.05rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Final CTA Section */
.page-game-categories-slots-game-details__cta-final {
  padding: 80px 0;
  background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
  text-align: center;
  color: #1A202C; /* Dark text on gold background */
}

.page-game-categories-slots-game-details__cta-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #1A202C;
  font-weight: 700;
}

.page-game-categories-slots-game-details__cta-description {
  font-size: 1.4rem;
  margin-bottom: 40px;
  color: #333333;
}

.page-game-categories-slots-game-details__cta-buttons .page-game-categories-slots-game-details__btn {
  margin: 0 15px;
}

.page-game-categories-slots-game-details__cta-buttons .page-game-categories-slots-game-details__btn--primary {
  background-color: #1A202C;
  color: #FFD700;
  border-color: #1A202C;
}

.page-game-categories-slots-game-details__cta-buttons .page-game-categories-slots-game-details__btn--primary:hover {
  background-color: #3a455a;
  border-color: #3a455a;
}

.page-game-categories-slots-game-details__cta-buttons .page-game-categories-slots-game-details__btn--outline {
  background-color: transparent;
  color: #1A202C;
  border-color: #1A202C;
}

.page-game-categories-slots-game-details__cta-buttons .page-game-categories-slots-game-details__btn--outline:hover {
  background-color: #1A202C;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-categories-slots-game-details__hero-title {
    font-size: 3rem;
  }
  .page-game-categories-slots-game-details__hero-subtitle {
    font-size: 1.4rem;
  }
  .page-game-categories-slots-game-details__section-title {
    font-size: 2rem;
  }
  .page-game-categories-slots-game-details__grid {
    flex-direction: column;
  }
  .page-game-categories-slots-game-details__cta-title {
    font-size: 2.5rem;
  }
  .page-game-categories-slots-game-details__cta-description {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .page-game-categories-slots-game-details__hero {
    padding: 60px 15px;
  }
  .page-game-categories-slots-game-details__hero-title {
    font-size: 2.5rem;
  }
  .page-game-categories-slots-game-details__hero-subtitle {
    font-size: 1.2rem;
  }
  .page-game-categories-slots-game-details__btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-game-categories-slots-game-details__btn--outline {
    margin-left: 10px;
  }
  .page-game-categories-slots-game-details__section-title {
    font-size: 1.8rem;
  }
  .page-game-categories-slots-game-details__features-grid,
  .page-game-categories-slots-game-details__game-cards {
    grid-template-columns: 1fr;
  }
  .page-game-categories-slots-game-details__steps li {
    padding: 20px;
  }
  .page-game-categories-slots-game-details__step-title {
    font-size: 1.5rem;
  }
  .page-game-categories-slots-game-details__cta-title {
    font-size: 2rem;
  }
  .page-game-categories-slots-game-details__cta-description {
    font-size: 1rem;
  }
  .page-game-categories-slots-game-details__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-categories-slots-game-details__cta-buttons .page-game-categories-slots-game-details__btn {
    margin: 0;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-game-categories-slots-game-details__hero-title {
    font-size: 2rem;
  }
  .page-game-categories-slots-game-details__hero-subtitle {
    font-size: 1rem;
  }
  .page-game-categories-slots-game-details__btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .page-game-categories-slots-game-details__btn--primary,
  .page-game-categories-slots-game-details__btn--outline {
    margin: 5px 0;
  }
  .page-game-categories-slots-game-details__section-title {
    font-size: 1.5rem;
  }
  .page-game-categories-slots-game-details__feature-title {
    font-size: 1.3rem;
  }
  .page-game-categories-slots-game-details__game-name {
    font-size: 1.4rem;
  }
  .page-game-categories-slots-game-details__step-title {
    font-size: 1.3rem;
  }
  .page-game-categories-slots-game-details__cta-title {
    font-size: 1.8rem;
  }
  .page-game-categories-slots-game-details__cta-description {
    font-size: 0.95rem;
  }
}