.page-casino-slot-games-deep-dive {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-casino-slot-games-deep-dive__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-casino-slot-games-deep-dive__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  color: #FFFFFF;
  text-align: center;
}

.page-casino-slot-games-deep-dive__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-casino-slot-games-deep-dive__hero-container {
  position: relative;
  z-index: 1;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  max-width: 900px;
}

.page-casino-slot-games-deep-dive__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-casino-slot-games-deep-dive__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-slot-games-deep-dive__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-casino-slot-games-deep-dive__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-casino-slot-games-deep-dive__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-casino-slot-games-deep-dive__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-casino-slot-games-deep-dive__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-casino-slot-games-deep-dive__button--login:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-casino-slot-games-deep-dive__button--cta {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 40px;
}

.page-casino-slot-games-deep-dive__button--cta:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-casino-slot-games-deep-dive__button--secondary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-top: 30px;
}

.page-casino-slot-games-deep-dive__button--secondary:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-casino-slot-games-deep-dive__button--tertiary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 30px;
}

.page-casino-slot-games-deep-dive__button--tertiary:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-casino-slot-games-deep-dive__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.page-casino-slot-games-deep-dive__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-casino-slot-games-deep-dive__section-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-casino-slot-games-deep-dive__game-card,
.page-casino-slot-games-deep-dive__strategy-card,
.page-casino-slot-games-deep-dive__bonus-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-casino-slot-games-deep-dive__game-card:hover,
.page-casino-slot-games-deep-dive__strategy-card:hover,
.page-casino-slot-games-deep-dive__bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-casino-slot-games-deep-dive__game-card-image,
.page-casino-slot-games-deep-dive__bonus-card-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-casino-slot-games-deep-dive__game-card-title,
.page-casino-slot-games-deep-dive__strategy-card-title,
.page-casino-slot-games-deep-dive__bonus-card-title,
.page-casino-slot-games-deep-dive__feature-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-casino-slot-games-deep-dive__game-card-description,
.page-casino-slot-games-deep-dive__strategy-card-description,
.page-casino-slot-games-deep-dive__bonus-card-description,
.page-casino-slot-games-deep-dive__feature-description {
  font-size: 1em;
  color: #555555;
}

.page-casino-slot-games-deep-dive__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-casino-slot-games-deep-dive__feature-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FCBC45;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-casino-slot-games-deep-dive__content-image {
  width: 100%;
  max-width: 1000px; /* Ensure images are not too small */
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-casino-slot-games-deep-dive__strategy-card {
  min-height: 200px;
}

.page-casino-slot-games-deep-dive__strategy-card a,
.page-casino-slot-games-deep-dive__bonus-card-description a,
.page-casino-slot-games-deep-dive__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-casino-slot-games-deep-dive__strategy-card a:hover,
.page-casino-slot-games-deep-dive__bonus-card-description a:hover,
.page-casino-slot-games-deep-dive__faq-answer a:hover {
  text-decoration: underline;
}

.page-casino-slot-games-deep-dive__responsible-list {
  list-style: disc;
  margin-left: 20px;
  margin-top: 20px;
  font-size: 1.1em;
  color: #555555;
}

.page-casino-slot-games-deep-dive__responsible-item {
  margin-bottom: 10px;
}

.page-casino-slot-games-deep-dive__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.page-casino-slot-games-deep-dive__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-casino-slot-games-deep-dive__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-casino-slot-games-deep-dive__final-cta {
  margin-top: 50px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino-slot-games-deep-dive__hero-title {
    font-size: 2.8em;
  }
  .page-casino-slot-games-deep-dive__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-casino-slot-games-deep-dive__hero-title {
    font-size: 2.2em;
  }
  .page-casino-slot-games-deep-dive__hero-description {
    font-size: 1.1em;
  }
  .page-casino-slot-games-deep-dive__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino-slot-games-deep-dive__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-casino-slot-games-deep-dive__section-title {
    font-size: 1.8em;
  }
  .page-casino-slot-games-deep-dive__content-wrapper {
    padding: 20px 15px;
  }
  .page-casino-slot-games-deep-dive__game-grid,
  .page-casino-slot-games-deep-dive__strategy-grid,
  .page-casino-slot-games-deep-dive__bonus-grid {
    grid-template-columns: 1fr;
  }
  .page-casino-slot-games-deep-dive__content-image,
  .page-casino-slot-games-deep-dive__game-card-image,
  .page-casino-slot-games-deep-dive__bonus-card-image {
    max-width: 100%;
    height: auto;
  }
  .page-casino-slot-games-deep-dive__game-card,
  .page-casino-slot-games-deep-dive__strategy-card,
  .page-casino-slot-games-deep-dive__bonus-card {
    padding: 20px;
  }
  .page-casino-slot-games-deep-dive__game-card-image, .page-casino-slot-games-deep-dive__bonus-card-image {
    max-width: 100%;
    height: auto;
  }
  /* Ensure all content area images are responsive and don't overflow */
  .page-casino-slot-games-deep-dive img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-casino-slot-games-deep-dive__hero-title {
    font-size: 1.8em;
  }
  .page-casino-slot-games-deep-dive__section-title {
    font-size: 1.5em;
  }
  .page-casino-slot-games-deep-dive__hero-container {
    padding: 15px;
  }
  .page-casino-slot-games-deep-dive__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-casino-slot-games-deep-dive__faq-question {
    font-size: 1.2em;
  }
}