/* style/casino-games.css */
.page-casino-games {
  font-family: 'Arial', sans-serif;
  color: #e5d1b1; /* Light text for dark background */
  background-color: #1A2E4E; /* Main dark blue background */
}

.page-casino-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-casino-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-casino-games__section:nth-of-type(even) {
  background-color: rgba(255, 215, 0, 0.05); /* Slight gold tint for alternating sections */
}

.page-casino-games__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-casino-games__section-subtitle {
  font-size: 1.2em;
  color: #e5d1b1;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-games p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e5d1b1;
}

/* Buttons */
.page-casino-games__button {
  display: inline-block;
  padding: 14px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-casino-games__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2E4E; /* Dark blue text */
  margin: 10px;
}

.page-casino-games__button--primary:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

.page-casino-games__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin: 10px;
}

.page-casino-games__button--secondary:hover {
  background-color: #FFD700;
  color: #1A2E4E;
  transform: translateY(-2px);
}

.page-casino-games__button--small {
  padding: 8px 20px;
  font-size: 0.95em;
  margin-top: 15px;
}

.page-casino-games__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* Hero Section */
.page-casino-games__hero-section {
  background: linear-gradient(135deg, #1A2E4E 0%, #2a4a75 100%);
  padding: 100px 0;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-casino-games__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-casino-games__hero-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e5d1b1;
}

.page-casino-games__hero-actions {
  margin-top: 30px;
}

.page-casino-games__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  opacity: 0.2;
}

.page-casino-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

/* Game Grid */
.page-casino-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-casino-games__game-card {
  background-color: #1A2E4E;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-casino-games__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.15);
}

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

.page-casino-games__game-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-casino-games__game-card-description {
  font-size: 1em;
  color: #e5d1b1;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Features Grid */
.page-casino-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-casino-games__feature-item {
  background-color: #1A2E4E;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-casino-games__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-casino-games__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

/* CTA Banner */
.page-casino-games__cta-banner {
  background: linear-gradient(90deg, #1A2E4E, #3b5a86);
  border-radius: 15px;
  padding: 40px;
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-casino-games__cta-banner-image {
  width: 250px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-casino-games__cta-banner-content h3 {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-casino-games__cta-banner-content p {
  font-size: 1.1em;
  color: #e5d1b1;
  margin-bottom: 25px;
}

/* Guide List */
.page-casino-games__guide-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-casino-games__guide-item {
  background-color: #1A2E4E;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-casino-games__guide-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1);
}

.page-casino-games__guide-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-casino-games__guide-title a {
  color: #FFD700; /* Gold for link titles */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino-games__guide-title a:hover {
  color: #e5c100;
}

.page-casino-games__guide-description {
  font-size: 0.95em;
  color: #e5d1b1;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Promotions */
.page-casino-games__promotions p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-games__promotion-banner {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin-top: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsible Gambling */
.page-casino-games__responsible-gambling-icon {
  width: 120px;
  height: auto;
  margin-top: 30px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

/* Call to Action */
.page-casino-games__call-to-action {
  background-color: #0d1e3a; /* Slightly darker background for emphasis */
  padding: 80px 0;
}

.page-casino-games__call-to-action .page-casino-games__section-title {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino-games__hero-title {
    font-size: 3em;
  }
  .page-casino-games__hero-description {
    font-size: 1.1em;
  }
  .page-casino-games__hero-image-wrapper {
    width: 60%;
  }
  .page-casino-games__section-title {
    font-size: 2.2em;
  }
  .page-casino-games__cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .page-casino-games__cta-banner-image {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-casino-games__hero-title {
    font-size: 2.5em;
  }
  .page-casino-games__hero-description {
    font-size: 1em;
  }
  .page-casino-games__hero-image-wrapper {
    width: 80%;
    height: 80%;
    top: auto;
    bottom: 0;
    right: -10%;
    opacity: 0.1;
  }
  .page-casino-games__section {
    padding: 40px 0;
  }
  .page-casino-games__section-title {
    font-size: 1.8em;
  }
  .page-casino-games__section-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-casino-games p {
    font-size: 0.95em;
  }
  .page-casino-games__game-grid, .page-casino-games__features-grid, .page-casino-games__guide-list {
    grid-template-columns: 1fr;
  }
  .page-casino-games__cta-banner-image {
    width: 200px;
  }
  .page-casino-games__cta-banner-content h3 {
    font-size: 1.8em;
  }
  .page-casino-games__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-casino-games__hero-title {
    font-size: 2em;
  }
  .page-casino-games__hero-description {
    font-size: 0.9em;
  }
  .page-casino-games__hero-actions .page-casino-games__button {
    display: block;
    width: 80%;
    margin: 10px auto;
  }
  .page-casino-games__section-title {
    font-size: 1.6em;
  }
  .page-casino-games__game-card-title {
    font-size: 1.5em;
  }
  .page-casino-games__feature-title {
    font-size: 1.4em;
  }
  .page-casino-games__guide-title {
    font-size: 1.3em;
  }
  .page-casino-games__cta-banner-content h3 {
    font-size: 1.5em;
  }
}