/* style/casino.css */
.page-casino {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A202C; /* Dark blue/black background */
}

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

.page-casino__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a4252 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-casino__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-casino__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #CCCCCC; /* Slightly lighter grey for description */
}

.page-casino__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-casino__btn {
  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.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-casino__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
}

.page-casino__btn--primary:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-casino__btn--secondary {
  background-color: #3a4252; /* Darker background for secondary */
  color: #FFD700; /* Gold text on dark */
  border: 2px solid #FFD700;
}

.page-casino__btn--secondary:hover {
  background-color: #4a5366; /* Slightly lighter dark on hover */
  transform: translateY(-3px);
}

.page-casino__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #1A202C;
}

.page-casino__btn--small:hover {
  background-color: #e6c200;
}

.page-casino__section {
  padding: 80px 0;
  text-align: center;
}

.page-casino__section:nth-of-type(even) {
  background-color: #242B38; /* Slightly lighter dark background for contrast */
}

.page-casino__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-casino__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
  color: #B0B0B0;
}

/* Why Choose Section */
.page-casino__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-casino__feature-item {
  background-color: #2D3440;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-casino__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  /* No filter property to change image color */
}

.page-casino__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-casino__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #CCCCCC;
}

/* Games Overview Section */
.page-casino__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-casino__game-card {
  background-color: #2D3440;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-casino__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-casino__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  /* No filter property to change image color */
}

.page-casino__game-title {
  font-size: 1.7em;
  color: #FFD700;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-casino__game-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #B0B0B0;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-casino__game-card .page-casino__btn--small {
  margin: 0 15px 20px;
  width: calc(100% - 30px);
}

.page-casino__more-games-cta {
  margin-top: 60px;
}

/* Live Experience Section */
.page-casino__live-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  text-align: left;
}

.page-casino__live-image {
  flex: 1 1 500px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  /* No filter property to change image color */
}

.page-casino__live-text-content {
  flex: 1 1 400px;
}

.page-casino__live-text-content p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #CCCCCC;
}

.page-casino__live-text-content .page-casino__btn--primary {
  margin-top: 20px;
}

/* Promotions Section */
.page-casino__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-casino__promo-item {
  background-color: #2D3440;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-casino__promo-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  /* No filter property to change image color */
}

.page-casino__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-casino__promo-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #B0B0B0;
}

.page-casino__view-all-promos-cta {
  margin-top: 60px;
}

/* Get Started Section */
.page-casino__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-casino__step-item {
  background-color: #2D3440;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-casino__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  line-height: 1;
}

.page-casino__step-number::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #FFD700;
  margin: 10px auto 0;
}

.page-casino__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-casino__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #CCCCCC;
  margin-bottom: 20px;
}

.page-casino__step-item .page-casino__btn--small {
  margin-top: auto;
}

/* Detail Pages Section */
.page-casino__detail-list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-casino__detail-card {
  background-color: #2D3440;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-casino__detail-title {
  font-size: 1.7em;
  margin-bottom: 15px;
}

.page-casino__detail-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino__detail-title a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-casino__detail-description {
  font-size: 1em;
  line-height: 1.6;
  color: #B0B0B0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-casino__detail-card .page-casino__btn--small {
  align-self: flex-start;
}

/* FAQ Section */
.page-casino__faq-list {
  margin-top: 50px;
  text-align: left;
}

.page-casino__faq-item {
  background-color: #2D3440;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-casino__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  padding: 20px 30px;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: background-color 0.3s ease;
}

.page-casino__faq-question:hover {
  background-color: #3a4252;
}

.page-casino__faq-question::after {
  content: '+';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-casino__faq-item.active .page-casino__faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.page-casino__faq-answer {
  padding: 0 30px 20px;
  font-size: 1em;
  line-height: 1.7;
  color: #CCCCCC;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-casino__faq-item.active .page-casino__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 10px;
}

/* Final CTA Section */
.page-casino__cta-final {
  background-color: #FFD700; /* Gold background */
  padding: 80px 0;
  text-align: center;
  color: #1A202C; /* Dark text on gold */
}

.page-casino__cta-title {
  font-size: 3em;
  color: #1A202C;
  margin-bottom: 20px;
  text-shadow: none;
}

.page-casino__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #333333; /* Darker text for better contrast on gold */
}

.page-casino__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-casino__cta-actions .page-casino__btn--primary {
  background-color: #1A202C; /* Dark button on gold background */
  color: #FFD700;
  border: 2px solid #1A202C;
}

.page-casino__cta-actions .page-casino__btn--primary:hover {
  background-color: #3a4252;
  color: #FFD700;
}

.page-casino__cta-actions .page-casino__btn--secondary {
  background-color: transparent;
  color: #1A202C;
  border: 2px solid #1A202C;
}

.page-casino__cta-actions .page-casino__btn--secondary:hover {
  background-color: #1A202C;
  color: #FFD700;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .page-casino__hero-title {
    font-size: 2.8em;
  }
  .page-casino__section-title {
    font-size: 2.2em;
  }
  .page-casino__live-content {
    flex-direction: column;
    text-align: center;
  }
  .page-casino__live-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-casino__hero {
    padding: 80px 0;
  }
  .page-casino__hero-title {
    font-size: 2.2em;
  }
  .page-casino__hero-description {
    font-size: 1em;
  }
  .page-casino__hero-actions, .page-casino__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-casino__section {
    padding: 60px 0;
  }
  .page-casino__section-title {
    font-size: 1.8em;
  }
  .page-casino__section-description {
    font-size: 0.95em;
  }
  .page-casino__feature-title, .page-casino__game-title, .page-casino__promo-title, .page-casino__step-title, .page-casino__detail-title {
    font-size: 1.5em;
  }
  .page-casino__faq-question {
    font-size: 1.2em;
    padding: 15px 25px;
  }
  .page-casino__faq-question::after {
    right: 25px;
  }
  .page-casino__cta-title {
    font-size: 2.2em;
  }
  .page-casino__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-casino__hero-title {
    font-size: 1.8em;
  }
  .page-casino__section-title {
    font-size: 1.6em;
  }
  .page-casino__btn {
    width: 90%;
  }
  .page-casino__live-image {
    max-width: 95%;
  }
  .page-casino__cta-title {
    font-size: 1.8em;
  }
}