/* style/casino-game-guides.css */
.page-casino-game-guides {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Default background for main content */
}

.page-casino-game-guides__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-casino-game-guides__section-title {
  font-size: 2.5em;
  color: #017439;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-casino-game-guides__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-casino-game-guides__btn-primary,
.page-casino-game-guides__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-casino-game-guides__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
}

.page-casino-game-guides__btn-primary:hover {
  background-color: #a30606;
  transform: translateY(-2px);
}

.page-casino-game-guides__btn-secondary {
  background-color: #017439;
  color: #FFFFFF;
  border: 2px solid #017439;
}

.page-casino-game-guides__btn-secondary:hover {
  background-color: #005a2e;
  transform: translateY(-2px);
}

/* Hero Section */
.page-casino-game-guides__hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background-color: #017439; /* Dark background for hero */
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-casino-game-guides__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.page-casino-game-guides__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-casino-game-guides__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFF00; /* Yellow for main title */
}

.page-casino-game-guides__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-casino-game-guides__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Why Choose Us Section */
.page-casino-game-guides__why-choose-us {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-casino-game-guides__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-casino-game-guides__feature-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-casino-game-guides__feature-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
}

/* Games Showcase Section */
.page-casino-game-guides__games-showcase {
  padding: 80px 0;
  background-color: #017439;
  color: #ffffff;
}

.page-casino-game-guides__games-showcase .page-casino-game-guides__section-title {
  color: #ffffff;
}

.page-casino-game-guides__games-showcase .page-casino-game-guides__section-intro {
  color: #f0f0f0;
}

.page-casino-game-guides__game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-casino-game-guides__game-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-casino-game-guides__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-casino-game-guides__game-title {
  font-size: 1.4em;
  margin: 20px 0 10px;
  color: #FFFF00; /* Yellow for game titles */
}

.page-casino-game-guides__game-title a {
  color: #FFFF00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino-game-guides__game-title a:hover {
  color: #f0f0f0;
}

.page-casino-game-guides__game-card p {
  padding: 0 20px 20px;
  color: #f0f0f0;
  flex-grow: 1;
}

/* How To Play Section */
.page-casino-game-guides__how-to-play {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-casino-game-guides__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-casino-game-guides__step-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-casino-game-guides__step-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-casino-game-guides__step-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
}

.page-casino-game-guides__cta-center {
  text-align: center;
  margin-top: 50px;
}

/* Tips and Strategies Section */
.page-casino-game-guides__tips-strategies {
  padding: 80px 0;
  background-color: #017439;
  color: #ffffff;
}

.page-casino-game-guides__tips-strategies .page-casino-game-guides__section-title {
  color: #ffffff;
}

.page-casino-game-guides__tips-strategies .page-casino-game-guides__section-intro {
  color: #f0f0f0;
}

.page-casino-game-guides__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-casino-game-guides__tip-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-casino-game-guides__tip-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-casino-game-guides__tip-title {
  font-size: 1.5em;
  color: #FFFF00; /* Yellow for tip titles */
  margin-bottom: 15px;
}

/* Promotions Section */
.page-casino-game-guides__promotions {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-casino-game-guides__promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-casino-game-guides__promo-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
}