/* style/casino.css */
.page-casino {
  font-family: 'Arial', sans-serif;
  color: #e5d4b3; /* Light text on dark background for contrast */
  background-color: #1A2B4C;
  line-height: 1.6;
}

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

.page-casino__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-casino__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-casino__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-casino__section-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 60px;
  color: #ccc;
}

.page-casino__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.page-casino__btn--primary {
  background-color: #FFD700;
  color: #1A2B4C;
  border: 2px solid #FFD700;
}

.page-casino__btn--primary:hover {
  background-color: #e5d4b3;
  color: #1A2B4C;
  border-color: #e5d4b3;
}

.page-casino__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-casino__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
}

.page-casino__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

/* Hero Section */
.page-casino__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #1A2B4C 0%, #0c1a33 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-casino__hero-content {
  max-width: 900px;
  z-index: 1;
  margin-bottom: 40px;
}

.page-casino__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-casino__hero-description {
  font-size: 1.3em;
  color: #ccc;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-casino__hero-image {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin-top: 40px;
}

.page-casino__hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
}

/* About Section */
.page-casino__about {
  padding: 80px 0;
  background-color: #0c1a33;
}

.page-casino__about .page-casino__container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-casino__about .page-casino__image-left,
.page-casino__about .page-casino__content-right {
  flex: 1;
}

.page-casino__about .page-casino__image-left img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-casino__about .page-casino__content-right h2 {
  text-align: left;
  margin-bottom: 20px;
}

.page-casino__about .page-casino__content-right p {
  margin-bottom: 20px;
  color: #ccc;
}

/* Games Section */
.page-casino__games {
  padding: 80px 0;
  background-color: #1A2B4C;
}

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

.page-casino__game-card {
  background-color: #0c1a33;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-casino__game-card:hover {
  transform: translateY(-10px);
}

.page-casino__game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

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

.page-casino__game-text {
  color: #ccc;
  padding: 0 20px;
  margin-bottom: 20px;
}

/* Advantages Section */
.page-casino__advantages {
  padding: 80px 0;
  background-color: #0c1a33;
}

.page-casino__advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-casino__advantage-item {
  background-color: #1A2B4C;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.page-casino__advantage-item:hover {
  transform: translateY(-10px);
}

.page-casino__advantage-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-casino__advantage-item h3 {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-casino__advantage-item p {
  color: #ccc;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-casino__promotions {
  padding: 80px 0;
  background-color: #1A2B4C;
}

.page-casino__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-casino__promo-card {
  background-color: #0c1a33;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease;
}

.page-casino__promo-card:hover {
  transform: translateY(-10px);
}

.page-casino__promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-casino__promo-card h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-casino__promo-card p {
  color: #ccc;
  padding: 0 20px;
}

.page-casino__promo-action {
  text-align: center;
}

/* Guide Section */
.page-casino__guide {
  padding: 80px 0;
  background-color: #0c1a33;
}

.page-casino__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-casino__step-item {
  background-color: #1A2B4C;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.page-casino__step-item:hover {
  transform: translateY(-10px);
}

.page-casino__step-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.page-casino__step-item h3 {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-casino__step-item p {
  color: #ccc;
}

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

/* FAQ Section */
.page-casino__faq {
  padding: 80px 0;
  background-color: #1A2B4C;
}

.page-casino__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-casino__faq-item {
  background-color: #0c1a33;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.page-casino__faq-item h3 {
  margin: 0;
}

.page-casino__faq-question {
  display: block;
  padding: 20px 25px;
  color: #FFD700;
  font-size: 1.3em;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-casino__faq-question:hover {
  background-color: #1A2B4C;
}

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

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

.page-casino__faq-answer {
  padding: 0 25px 20px;
  color: #ccc;
  font-size: 1.1em;
  display: none;
}

.page-casino__faq-item.active .page-casino__faq-answer {
  display: block;
}

.page-casino__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-casino__faq-answer a:hover {
  color: #e5d4b3;
}

/* CTA Section */
.page-casino__cta {
  padding: 80px 0;
  background-color: #0c1a33;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-casino__hero-title {
    font-size: 3em;
  }
  .page-casino__hero-description {
    font-size: 1.1em;
  }
  .page-casino__section-title {
    font-size: 2em;
  }
  .page-casino__about .page-casino__container {
    flex-direction: column;
  }
  .page-casino__about .page-casino__content-right h2 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-casino__hero {
    padding: 60px 0;
  }
  .page-casino__hero-title {
    font-size: 2.5em;
  }
  .page-casino__hero-description {
    font-size: 1em;
  }
  .page-casino__hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .page-casino__btn--secondary {
    margin-left: 0;
  }
  .page-casino__game-grid,
  .page-casino__advantage-grid,
  .page-casino__promo-grid,
  .page-casino__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-casino__section-title {
    font-size: 1.8em;
  }
  .page-casino__section-description {
    font-size: 0.95em;
  }
  .page-casino__guide-actions {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-casino__hero-title {
    font-size: 2em;
  }
  .page-casino__hero-description {
    font-size: 0.9em;
  }
  .page-casino__btn {
    padding: 10px 20px;
  }
  .page-casino__section-title {
    font-size: 1.5em;
  }
  .page-casino__faq-question {
    font-size: 1.1em;
  }
  .page-casino__faq-answer {
    font-size: 0.95em;
  }
}