/* style/slot-games.css */
/* 
  Màu sắc chính: #017439 (Xanh lá đậm)
  Màu sắc phụ: #FFFFFF (Trắng)
  Màu đăng ký/đăng nhập: #C30808 (Đỏ đậm)
  Màu chữ đăng ký/đăng nhập: #FFFF00 (Vàng)
  Màu nền: #FFFFFF (Trắng)
*/

.page-slot-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for default light body background */
  background-color: #FFFFFF;
}

/* --- Fixed Header Offset --- */
.page-slot-games__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-slot-games__video-section {
  padding-top: 60px; /* Adjust as needed, but ensure it doesn't double offset if hero already has it */
}

/* --- General Section & Container Styles --- */
.page-slot-games__section-title {
  font-size: 2.5em;
  color: #017439;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-slot-games__sub-title {
  font-size: 1.8em;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-slot-games__text-block {
  font-size: 1em;
  margin-bottom: 15px;
  color: #333333;
}

.page-slot-games__highlight {
  font-weight: bold;
  color: #017439; /* Using brand color for highlights */
}

.page-slot-games__link {
  color: #017439;
  text-decoration: underline;
}

.page-slot-games__link:hover {
  color: #005f2e;
}

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

/* --- Background Colors for Contrast --- */
.page-slot-games__dark-bg {
  background-color: #017439; /* Brand primary color */
  color: #FFFFFF; /* White text for dark background */
}

.page-slot-games__light-bg {
  background-color: #FFFFFF; /* White background */
  color: #333333; /* Dark text for light background */
}

/* --- Hero Section --- */
.page-slot-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px; /* Add some padding at the bottom */
}

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

.page-slot-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability, no color change */
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  color: #FFFFFF;
}

.page-slot-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #FFFF00; /* Use specific color for title for impact, ensure contrast */
}

.page-slot-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-slot-games__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box; /* Ensure padding is included in width */
  max-width: 100%; /* Ensure responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
}

.page-slot-games__btn-primary {
  background-color: #C30808; /* Specific color for register/login */
  color: #FFFF00; /* Specific font color for register/login */
  border: 2px solid #C30808;
}

.page-slot-games__btn-primary:hover {
  background-color: #a30606;
  border-color: #a30606;
}

.page-slot-games__btn-secondary {
  background-color: #017439; /* Brand primary color */
  color: #FFFFFF; /* White text */
  border: 2px solid #017439;
}