.page-casino {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Light text on dark body background */
  background-color: #121212; /* Inherited from shared, but ensuring contrast */
  line-height: 1.6;
}

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

.page-casino__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #0A2342;
  color: #ffffff;
  overflow: hidden;
  min-height: 600px;
}

.page-casino__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-casino__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E0B500; /* Gold for emphasis */
  line-height: 1.2;
}

.page-casino__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-casino__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-casino__btn-primary,
.page-casino__btn-secondary,
.page-casino__btn-play,
.page-casino__btn-view-promo {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-casino__btn-primary {
  background-color: #E0B500;
  color: #0A2342;
  border: 2px solid #E0B500;
}

.page-casino__btn-primary:hover {
  background-color: #ffc800;
  border-color: #ffc800;
}

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

.page-casino__btn-secondary:hover {
  background-color: #E0B500;
  color: #0A2342;
}

.page-casino__btn-play {
  background-color: #0A2342;
  color: #E0B500;
  border: 1px solid #E0B500;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-casino__btn-play:hover {
  background-color: #E0B500;
  color: #0A2342;
}

.page-casino__btn-view-promo {
  background-color: #0A2342;
  color: #E0B500;
  border: 1px solid #E0B500;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-casino__btn-view-promo:hover {
  background-color: #E0B500;
  color: #0A2342;
}

.page-casino__btn-full-width {
  width: 100%;
  max-width: 400px;
  margin: 30px auto 0 auto;
  display: block;
}

.page-casino__section-title {
  font-size: 2.5em;
  color: #E0B500;
  text-align: center;
  margin-bottom: 40px;
  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: #E0B500;
  border-radius: 2px;
}

.page-casino__introduction-section {
  background-color: #1a1a1a; /* Slightly lighter dark background */
  color: #ffffff;
  padding: 60px 0;
}

.page-casino__introduction-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-casino__games-section {
  background-color: #0A2342;
  color: #ffffff;
  padding: 60px 0;
}

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

.page-casino__game-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-casino__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}