.page-casino {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Body Background */
}

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

.page-casino__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding */
  background-color: #7A0E0E; /* Deep Red */
  color: #FFF5E1;
  overflow: hidden;
}

.page-casino__hero-image-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-casino__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 300px;
}

.page-casino__hero-content {
  text-align: center;
  padding: 40px 20px;
}

.page-casino__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFD86A; /* Gold-like from button gradient */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-casino__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__hero-cta-buttons,
.page-casino__cta-buttons-final {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-casino__btn-primary,
.page-casino__btn-secondary,
.page-casino__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-casino__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red for contrast */
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-casino__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
}

.page-casino__btn-secondary {
  background: #B71C1C; /* Background color */
  color: #FFD86A; /* Gold */
  border: 2px solid #FFD86A; /* Gold border */
}

.page-casino__btn-secondary:hover {
  background: #FFD86A; /* Gold */
  color: #B71C1C; /* Background color */
}

.page-casino__btn-link {
  background: none;
  color: #FFD86A; /* Gold */
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: underline;
}

.page-casino__btn-link:hover {
  color: #F4D34D; /* Gold */
}

.page-casino__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #FFD86A; /* Gold */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-casino__section-description,
.page-casino__text-block {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #FFF5E1;
}

.page-casino__introduction-section,
.page-casino__live-experience-section,
.page-casino__promotions-section,
.page-casino__security-section,
.page-casino__faq-section,
.page-casino__cta-final-section {
  padding: 60px 0;
}

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

.page-casino__game-card,
.page-casino__promo-card {
  background: #D32F2F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #FFF5E1;
}

.page-casino__game-card-image,
.page-casino__promo-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-casino__game-card-content,
.page-casino__promo-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-casino__game-card-title,
.page-casino__promo-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFD86A; /* Gold */
}

.page-casino__game-card-text,
.page-casino__promo-card-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #FFF5E1;
  text-align: left;
}

.page-casino__all-games-cta,
.page-casino__all-promos-cta {
  text-align: center;
  margin-top: 50px;
}

.page-casino__two-column-layout {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.page-casino__two-column-layout:nth-child(even) {
  flex-direction: row-reverse;
}

.page-casino__text-content {
  flex: 1;
  text-align: left;
}

.page-casino__text-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #FFF5E1;
  text-align: left;
}

.page-casino__text-content .page-casino__btn-primary,
.page-casino__text-content .page-casino__btn-secondary {
  margin-top: 20px;
}

.page-casino__image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-casino__responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-casino__dark-section {
  background-color: #7A0E0E; /* Deep Red */
  color: #FFF5E1;
}

.page-casino__dark-section .page-casino__section-title {
  color: #FFD86A; /* Gold */
}

.page-casino__dark-section .page-casino__text-content p {
  color: #FFF5E1;
}

/* FAQ Section */
details.page-casino__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #F2B544; /* Border color */
  overflow: hidden;
  background: #D32F2F; /* Card BG */
  color: #FFF5E1;
}
details.page-casino__faq-item summary.page-casino__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFD86A; /* Gold */
}
details.page-casino__faq-item summary.page-casino__faq-question::-webkit-details-marker {
  display: none;
}
details.page-casino__faq-item summary.page-casino__faq-question:hover {
  background: rgba(255, 255, 255, 0.1); /* Slightly lighter hover for dark background */
}
.page-casino__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFD86A; /* Gold */
}
.page-casino__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD86A; /* Gold */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-casino__faq-item .page-casino__faq-answer {
  padding: 0 20px 20px;
  background: rgba(255, 255, 255, 0.05); /* Slightly lighter background for answer */
  border-radius: 0 0 5px 5px;
  color: #FFF5E1;
}
.page-casino__faq-answer p {
  margin: 0;
  color: #FFF5E1;
  text-align: left;
}

.page-casino__copyright-info {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
  color: #FFF5E1;
  background-color: #7A0E0E; /* Deep Red */
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-casino__container {
    padding: 15px;
  }

  .page-casino__hero-section {
    padding-top: 10px;
  }

  .page-casino__hero-image {
    object-fit: contain !important; /* HERO 主图区域 */
    aspect-ratio: unset !important;
    min-height: 200px;
  }

  .page-casino__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-casino__hero-description {
    font-size: 1rem;
  }

  .page-casino__hero-cta-buttons,
  .page-casino__cta-buttons-final {
    flex-direction: column;
    gap: 15px;
  }

  .page-casino__btn-primary,
  .page-casino__btn-secondary,
  .page-casino__btn-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-casino__hero-cta-buttons,
  .page-casino__cta-buttons-final {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-casino__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 20px;
  }
}