.page-casino {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0d0d0d; /* Inherited from shared, but for context */
}

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

.page-casino__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-casino__dark-bg {
  background-color: #002060; /* Main brand color */
  color: #ffffff;
}

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

.page-casino__main-title {
  font-size: 38px;
  font-weight: 700;
  color: #FFD700; /* Gold accent for main title */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-casino__description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__heading {
  font-size: 32px;
  font-weight: 700;
  color: #FFD700; /* Gold accent for headings */
  text-align: center;
  margin-bottom: 30px;
}

.page-casino__sub-heading {
  font-size: 24px;
  font-weight: 600;
  color: #FFD700; /* Gold accent for sub-headings */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-casino__content-block {
  margin-bottom: 30px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for content blocks */
  border-radius: 8px;
  color: #f0f0f0;
}

.page-casino__content-block p {
  margin-bottom: 15px;
}

.page-casino__list {
  list-style: disc inside;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-casino__list li {
  margin-bottom: 10px;
}

.page-casino__btn-primary,
.page-casino__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.page-casino__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #002060; /* Dark blue */
  border-color: #FFD700;
}

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

.page-casino__btn-secondary {
  background-color: #002060; /* Dark blue */
  color: #FFD700; /* Gold */
  border-color: #FFD700;
}

.page-casino__btn-secondary:hover {
  background-color: #001a4d;
  border-color: #FFD700;
}

.page-casino__btn-center {
  display: block;
  margin: 30px auto 0 auto;
  max-width: 300px;
}

.page-casino__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-casino__text-center {
  text-align: center;
}

/* HERO Section */
.page-casino__hero-section {
  position: relative;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; /* shared already handles body padding-top */
  margin-top: 0;
  overflow: hidden;
}

.page-casino__hero-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.page-casino__hero-image {
  width: 100%;
  margin: 0;
}

.page-casino__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* Product/Gameshow Display */
.page-casino__products-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #0d0d0d;
  box-sizing: border-box;
}

.page-casino__products-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4fr 2fr;
  gap: 20px;
}

.page-casino__products-grid {
  display: grid;
  gap: 20px;
}

.page-casino__products-grid--small {
  grid-template-columns: repeat(4, 1fr);
}

.page-casino__products-grid--large {
  grid-template-columns: repeat(2, 1fr);
}

.page-casino__product-card {
  width: 100%;
  max-width: 300px; /* Max width for product card */
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.page-casino__product-card:hover {
  transform: translateY(-3px);
}

.page-casino__product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-casino__product-card-image {
  width: 100%;
  max-width: 300px;
  overflow: hidden;
}

.page-casino__product-card-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

/* Games Section */
.page-casino__games-section {
  background-color: #0d0d0d;
  color: #ffffff;
}

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

.page-casino__game-card {
  background-color: #1a1a1a; /* Darker background for game cards */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-casino__game-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-casino__game-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 10px;
}