/* style/casino-games.css */
.page-casino-games {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-casino-games .section-padding {
  padding: 60px 0;
}

.page-casino-games .bg-dark {
  background-color: #1A2E4C;
  color: white;
}

.page-casino-games .bg-gold-gradient {
  background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
  color: #1A2E4C;
}

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

.page-casino-games__section-title {
  font-size: 2.5em;
  color: #1A2E4C;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-casino-games .text-white {
  color: white;
}

.page-casino-games .text-white-light {
  color: rgba(255, 255, 255, 0.9);
}

.page-casino-games .text-dark {
  color: #1A2E4C;
}

.page-casino-games .highlight-text {
  color: #FFD700;
}

.page-casino-games__text {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

.page-casino-games__center-content {
  text-align: center;
}

.page-casino-games__mt-4 {
  margin-top: 20px;
}

/* Hero Section */
.page-casino-games__hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

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

.page-casino-games__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-casino-games__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-casino-games__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.page-casino-games__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  font-weight: 300;
}

.page-casino-games__hero-actions .page-casino-games__btn {
  margin: 0 10px;
}

/* Buttons */
.page-casino-games__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.page-casino-games__btn--primary {
  background-color: #FFD700;
  color: #1A2E4C;
}

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

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

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

.page-casino-games__btn--link {
  background-color: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 8px 18px;
  font-size: 0.95em;
}

.page-casino-games__btn--link:hover {
  background-color: #FFD700;
  color: #1A2E4C;
}

.page-casino-games__btn--dark {
  background-color: #1A2E4C;
  color: #FFD700;
}

.page-casino-games__btn--dark:hover {
  background-color: #0d1a2e;
  color: #FFD700;
}

/* Game Categories */
.page-casino-games__game-categories .page-casino-games__section-title {
  color: white;
}

.page-casino-games__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-games__category-item {
  background-color: #2a416a; /* Lighter shade of main color */
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-games__category-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-casino-games__category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-casino-games__category-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-casino-games__category-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95em;
  margin-bottom: 20px;
  padding: 0 15px;
}

/* clb88 Advantage */
.page-casino-games__advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-games__advantage-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-casino-games__advantage-item:hover {
  transform: translateY(-5px);
}

.page-casino-games__advantage-title {
  font-size: 1.4em;
  color: #1A2E4C;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-casino-games__advantage-description {
  font-size: 1em;
  color: #555;
}

/* Getting Started */
.page-casino-games__getting-started .page-casino-games__section-title {
  color: white;
}

.page-casino-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-games__step-item {
  text-align: center;
  padding: 25px;
  background-color: #2a416a;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-casino-games__step-icon {
  background-color: #FFD700;
  color: #1A2E4C;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-casino-games__step-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-casino-games__step-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95em;
}

/* Responsible Gaming */
.page-casino-games__responsible-gaming .page-casino-games__text {
  max-width: 900px;
}

/* Promo Banner */
.page-casino-games__promo-banner {
  padding: 80px 0;
  text-align: center;
}

.page-casino-games__promo-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-casino-games__promo-content {
  max-width: 700px;
  margin-bottom: 30px;
}

.page-casino-games__promo-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: 700;
  color: #1A2E4C;
}

.page-casino-games__promo-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #444;
}

.page-casino-games__promo-image-wrapper {
  max-width: 500px;
  margin-top: 30px;
}

.page-casino-games__promo-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-casino-games__hero-title {
    font-size: 4.5em;
  }
  .page-casino-games__hero-description {
    font-size: 1.6em;
  }
  .page-casino-games__section-title {
    font-size: 3em;
  }
  .page-casino-games__promo-flex {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
  .page-casino-games__promo-content {
    margin-bottom: 0;
    margin-right: 50px;
    flex: 1;
  }
  .page-casino-games__promo-image-wrapper {
    margin-top: 0;
    flex: 0 0 400px;
  }
}

@media (max-width: 767px) {
  .page-casino-games__hero {
    height: 500px;
  }
  .page-casino-games__hero-title {
    font-size: 2.5em;
  }
  .page-casino-games__hero-description {
    font-size: 1.1em;
  }
  .page-casino-games__section-title {
    font-size: 2em;
  }
  .page-casino-games__text {
    font-size: 1em;
  }
  .page-casino-games__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-casino-games__hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-casino-games__hero-actions .page-casino-games__btn {
    margin: 0;
  }
  .page-casino-games__promo-title {
    font-size: 2em;
  }
  .page-casino-games__promo-description {
    font-size: 1em;
  }
}