.page-casino {
  color: #ffffff; /* Sửa màu chữ cho phù hợp với nền tối #121212 */
}

.page-casino__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Đảm bảo khoảng cách với header cố định */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

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

.page-casino__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-casino__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Nền tối để chữ nổi bật */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.page-casino__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.5;
}

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

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

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

.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 {
  font-size: 1.2em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-casino__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

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

.page-casino__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

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

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

.page-casino__btn--tertiary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #f0f0f0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-casino__btn--tertiary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #FFD700;
}

.page-casino__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-casino__about-section,
.page-casino__game-types-section,
.page-casino__live-experience-section,
.page-casino__promotions-section,
.page-casino__advantages-section,
.page-casino__guide-section,
.page-casino__cta-section,
.page-casino__responsible-gaming-section {
  padding: 60px 0;
}

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

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

.page-casino__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-casino__game-card-image {
  width: 100%;
  height: 250px; /* Đảm bảo kích thước tối thiểu 200px */
  object-fit: cover;
  margin-bottom: 20px;
}

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

.page-casino__game-card-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-casino__live-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-casino__live-image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  height: auto; /* Đảm bảo kích thước tối thiểu 200px */
}

.page-casino__live-text {
  flex: 2;
  min-width: 300px;
}

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

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

.page-casino__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-casino__promo-image {
  width: 100%;
  height: 200px; /* Đảm bảo kích thước tối thiểu 200px */
  object-fit: cover;
  margin-bottom: 20px;
}

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

.page-casino__promo-card-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-casino__view-all-promos {
  text-align: center;
  margin-top: 40px;
}

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

.page-casino__advantage-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.page-casino__advantage-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.page-casino__advantage-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
}

.page-casino__guide-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-casino__guide-item {
  background: #1A202C;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-casino__guide-item-title {
  font-size: 1.8em;
  margin-bottom: 10px;
}

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

.page-casino__guide-item-title a:hover {
  color: #e6c200;
}

.page-casino__guide-item-description {
  font-size: 1.1em;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-casino__cta-section {
  background: linear-gradient(45deg, #1A202C, #3a475a);
  padding: 80px 20px;
  text-align: center;
  border-radius: 10px;
  margin: 60px auto;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-casino__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

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

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

.page-casino__responsible-gaming-section {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 20px;
  border-radius: 10px;
  margin: 60px auto;
  max-width: 1200px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-casino__hero-title {
    font-size: 2.8em;
  }
  .page-casino__hero-description {
    font-size: 1.1em;
  }
  .page-casino__section-title {
    font-size: 2.2em;
  }
  .page-casino__cta-title {
    font-size: 2.5em;
  }
  .page-casino__cta-description {
    font-size: 1.1em;
  }
  .page-casino__live-content {
    flex-direction: column;
  }
  .page-casino__live-image {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-casino__hero-section {
    min-height: 400px;
    padding: 20px;
  }
  .page-casino__hero-content {
    padding: 20px;
  }
  .page-casino__hero-title {
    font-size: 2em;
  }
  .page-casino__hero-description {
    font-size: 1em;
  }
  .page-casino__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino__btn {
    width: 100%;
  }
  .page-casino__section-title {
    font-size: 1.8em;
  }
  .page-casino__section-description,
  .page-casino__text-content,
  .page-casino__game-card-description,
  .page-casino__promo-card-description,
  .page-casino__advantage-description,
  .page-casino__guide-item-description {
    font-size: 0.95em;
  }
  .page-casino__game-grid,
  .page-casino__promo-grid,
  .page-casino__advantages-grid {
    grid-template-columns: 1fr;
  }
  .page-casino__game-card-image,
  .page-casino__promo-image {
    height: 200px; /* Đảm bảo kích thước tối thiểu 200px */
  }
  .page-casino__live-image {
    max-width: 100%;
    height: auto; /* Dùng max-width: 100%; height: auto; cho hình ảnh nội dung */
  }
  .page-casino__cta-title {
    font-size: 2em;
  }
  .page-casino__cta-description {
    font-size: 1em;
  }
  .page-casino__cta-actions {
    flex-direction: column;
  }
  .page-casino__container {
    padding: 20px 15px;
  }
  /* Constraint for all images within .page-casino to prevent overflow */
  .page-casino img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-casino__hero-title {
    font-size: 1.8em;
  }
  .page-casino__hero-description {
    font-size: 0.9em;
  }
  .page-casino__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-casino__section-title {
    font-size: 1.6em;
  }
  .page-casino__cta-title {
    font-size: 1.8em;
  }
}