/* style/casino.css */
/* 
  Màu sắc chính: #0A192F (Xanh đậm)
  Màu phụ: #FFD700 (Vàng kim)
  Màu chữ trên nền tối: #ffffff
  Màu chữ trên nền sáng: #333333
*/

/* --- General Page Styling --- */
.page-casino {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #f0f2f5; /* Light background for the overall page */
}

/* Ensure content is below the fixed header */
.page-casino__hero-section {
  padding-top: var(--header-offset, 120px); /* Desktop default, overridden by shared.css on mobile */
}

.page-casino__dark-bg {
  background-color: #0A192F;
  color: #ffffff;
}

.page-casino__light-bg {
  background-color: #ffffff;
  color: #333333;
}

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

.page-casino__section-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #0A192F;
}

.page-casino__dark-bg .page-casino__section-title {
  color: #FFD700;
}

.page-casino__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.8;
}

/* --- Buttons --- */
.page-casino__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: none;
}

.page-casino__btn-primary {
  background-color: #FFD700;
  color: #0A192F; /* Dark text on gold button for contrast */
}

.page-casino__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

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

.page-casino__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}