/* General page styles */
.page-casino {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

/* Section padding for desktop */
.page-casino__section-padding {
  padding: 80px 20px;
}

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

.page-casino__section-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700; /* Gold for main titles */
}

.page-casino__title-gold {
  color: #FFD700;
}

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

/* Buttons */
.page-casino__btn-primary,
.page-casino__btn-secondary,
.page-casino__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
  box-sizing: border-box;
  white-space: nowrap;
  word-wrap: normal;
  max-width: 100%; /* Ensure buttons don't overflow */
}

.page-casino__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #0a0a0a; /* Dark text for gold background */
}

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

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

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

.page-casino__btn-tertiary {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  white-space: normal; /* Allow text wrap for smaller buttons */
}

.page-casino__btn-tertiary:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

/* Card styles */
.page-casino__card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark background */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

.page-casino__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-casino__card h3 {
  color: #FFD700; /* Gold for card titles */
  font-size: 22px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-casino__card p {
  font-size: 15px;
  line-height: 1.7;
  color: #e0e0e0;
}

/* Images general */
.page-casino img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Hero Section */
.page-casino__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Apply header offset here if shared doesn't set it on body */
  padding-bottom: 80px;
  background-color: #0a0a0a;
}

.page-casino__hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.page-casino__hero-content {
  flex: 1;
  max-width: 55%;
}

.page-casino__hero-title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #FFD700;
}

.page-casino__hero-description {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-casino__hero-cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-casino__hero-image-wrapper {
  flex: 1;
  max-width: 45%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-casino__hero-image-wrapper img {
  width: 100%;
  height: auto;
}

/* Intro Section */
.page-casino__intro-section {
  background-color: #1a1a1a; /* Slightly lighter dark background */
}

.page-casino__intro-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.page-casino__intro-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0;
}