/* style/casino.css */
.page-casino {
  background-color: #08160F; /* Nền chính của trang */
  color: #F2FFF6; /* Màu chữ chính */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-casino__dark-section, .page-casino__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-casino__section-title {
  font-size: clamp(2em, 4vw, 2.8em);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-casino__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8; /* Text Secondary */
}

/* Buttons */
.page-casino__btn-primary, .page-casino__btn-secondary, .page-casino__btn-link {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%; /* Ensure responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
}

.page-casino__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-casino__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-casino__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Lighter shade of primary green */
  border: 2px solid #2AD16F;
}

.page-casino__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6;
}

.page-casino__btn-link {
  background: none;
  border: none;
  color: #57E38D; /* Glow */
  padding: 0;
  margin-top: 15px;
  font-size: 1em;
}

.page-casino__btn-link:hover {
  text-decoration: underline;
  color: #F2C14E; /* Gold */
}

/* Hero Section */
.page-casino__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  min-height: 600px;
}

.page-casino__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-casino__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-casino__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

.page-casino__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.1;
}

.page-casino__hero-description {
  font-size: clamp(1.1em, 2vw, 1.4em);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
}

.page-casino__hero-cta {
  font-size: 1.2em;
  padding: 15px 35px;
}

/* Video Section */
.page-casino__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  box-sizing: border-box;
}

.page-casino__video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-casino__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background-color: #000;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-casino__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-casino__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

.page-casino__video-cta {
  font-size: 1.1em;
  padding: 12px 30px;
}

/* Game Types Section */
.page-casino__game-types {
  padding: 80px 0;
}

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

.page-casino__game-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

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

.page-casino__game-title {
  font-size: 1.6em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-casino__game-description {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Promotions Section */
.page-casino__promotions-section {
  padding: 80px 0;
}

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

.page-casino__promo-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-casino__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-casino__promo-title {
  font-size: 1.6em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-casino__promo-description {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Why Choose Us Section */
.page-casino__why-choose-us {
  padding: 80px 0;
}

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

.page-casino__feature-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-casino__feature-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-casino__feature-title {
  font-size: 1.4em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-casino__feature-description {
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1;
}

/* How To Join Section */
.page-casino__how-to-join {
  padding: 80px 0;
}

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

.page-casino__step-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-casino__step-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-casino__step-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-casino__step-description {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

/* FAQ Section */
.page-casino__faq-section {
  padding: 80px 0;
}

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

.page-casino__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-casino__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-casino__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-casino__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-casino__faq-qtext {
  flex-grow: 1;
}

.page-casino__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-casino__faq-item[open] .page-casino__faq-toggle {
  content: '−';
}

.page-casino__faq-answer {
  padding: 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05em;
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-casino__faq-answer p {
  margin: 0;
}

/* Conclusion Section */
.page-casino__conclusion {
  padding: 80px 20px;
  text-align: center;
}

.page-casino__conclusion-cta {
  font-size: 1.3em;
  padding: 15px 40px;
  margin-top: 30px;
}

/* Responsive Design */
/* All images and containers must be responsive */
.page-casino img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-casino video, .page-casino__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-casino__video-section,
.page-casino__video-container,
.page-casino__video-wrapper,
.page-casino__hero-section,
.page-casino__game-types,
.page-casino__promotions-section,
.page-casino__why-choose-us,
.page-casino__how-to-join,
.page-casino__faq-section,
.page-casino__conclusion,
.page-casino__container,
.page-casino__game-card,
.page-casino__promo-card,
.page-casino__feature-card,
.page-casino__step-card {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .page-casino__main-title {
    font-size: clamp(2.2em, 4.5vw, 3.5em);
  }

  .page-casino__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
  }

  .page-casino__game-grid, .page-casino__promo-grid, .page-casino__feature-grid, .page-casino__step-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-casino img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-casino video, .page-casino__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-casino__section,
  .page-casino__card,
  .page-casino__container,
  .page-casino__hero-section,
  .page-casino__video-section,
  .page-casino__game-types,
  .page-casino__promotions-section,
  .page-casino__why-choose-us,
  .page-casino__how-to-join,
  .page-casino__faq-section,
  .page-casino__conclusion,
  .page-casino__video-container,
  .page-casino__video-wrapper,
  .page-casino__game-grid,
  .page-casino__promo-grid,
  .page-casino__feature-grid,
  .page-casino__step-grid,
  .page-casino__cta-button,
  .page-casino__btn-primary,
  .page-casino__btn-secondary,
  .page-casino a[class*="button"],
  .page-casino a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-casino__hero-section,
  .page-casino__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
    padding-bottom: 40px !important;
  }

  .page-casino__hero-content {
    padding: 10px;
  }

  .page-casino__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

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

  .page-casino__hero-cta, .page-casino__video-cta, .page-casino__conclusion-cta {
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-casino__game-grid, .page-casino__promo-grid, .page-casino__feature-grid, .page-casino__step-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-casino__game-card, .page-casino__promo-card, .page-casino__feature-card, .page-casino__step-card {
    padding: 20px;
  }

  .page-casino__faq-item summary {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-casino__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  .page-casino__btn-primary, .page-casino__btn-secondary, .page-casino__btn-link {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-casino__main-title {
    font-size: clamp(1.6em, 8vw, 2.2em);
  }

  .page-casino__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }

  .page-casino__hero-section, .page-casino__video-section, .page-casino__game-types, .page-casino__promotions-section, .page-casino__why-choose-us, .page-casino__how-to-join, .page-casino__faq-section, .page-casino__conclusion {
    padding-left: 10px;
    padding-right: 10px;
  }
}