.page-casino {
  font-family: Arial, sans-serif;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #FFFFFF; /* Overall page content background */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

/* Hero Section */
.page-casino__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero to contrast with image */
  color: #FFFFFF;
  padding: 80px 20px 40px; /* Adjusted padding */
  text-align: center;
}

.page-casino__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.page-casino__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-casino__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-casino__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-casino__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-casino__button--register {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Register text color */
  border: 2px solid #FFFFFF;
}

.page-casino__button--register:hover {
  background-color: #FFFFFF;
  color: #000000;
  transform: translateY(-3px);
}

.page-casino__button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-casino__button--login:hover {
  background-color: #FFF;
  color: #000000;
  transform: translateY(-3px);
}

.page-casino__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.2; /* Subtle background */
}

/* General Content Sections */
.page-casino__content-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* White background for content */
}

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

.page-casino__section-title {
  font-size: 2.5em;
  color: #000000; /* Main text color */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-casino__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45; /* Accent color */
  border-radius: 2px;
}

.page-casino__section-intro {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-casino__keyword {
  font-weight: bold;
  color: #000000;
}

.page-casino__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-casino__link:hover {
  text-decoration: underline;
}

/* Why Choose Section */
.page-casino__why-choose {
  background-color: #f8f8f8;
}

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

.page-casino__feature-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-casino__feature-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-casino__feature-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.5;
}

/* Game Categories Section */
.page-casino__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino__game-card {
  background-color: #000000; /* Dark background for game cards */
  color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-casino__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-casino__game-card h3,
.page-casino__game-card p,
.page-casino__game-card a {
  padding: 0 20px;
}

.page-casino__game-title {
  font-size: 1.4em;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #FCBC45;
}

.page-casino__game-description {
  font-size: 0.95em;
  color: #CCCCCC;
  line-height: 1.5;
  flex-grow: 1; /* Ensures button is at the bottom */
}

.page-casino__button--small {
  display: inline-block;
  padding: 10px 20px;
  margin: 20px;
  border-radius: 5px;
  background-color: #FCBC45;
  color: #000000;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start; /* Aligns button to start within card */
}

.page-casino__button--small:hover {
  background-color: #FFFFFF;
  transform: translateY(-2px);
}

/* How to Start Section */
.page-casino__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino__step-card {
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-casino__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-casino__step-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.5;
  flex-grow: 1;
}

.page-casino__button--register-small,
.page-casino__button--login-small,
.page-casino__button--deposit {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-casino__button--register-small {
  background-color: #000000;
  color: #FFFFFF;
}
.page-casino__button--register-small:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-casino__button--login-small {
  background-color: #FCBC45;
  color: #000000;
}
.page-casino__button--login-small:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-casino__button--deposit {
  background-color: #000000;
  color: #FCBC45;
  border: 1px solid #FCBC45;
}
.page-casino__button--deposit:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-2px);
}

/* Promotions Section */
.page-casino__promotions {
  background-color: #000000; /* Dark background for promotions */
  color: #FFFFFF;
}

.page-casino__promotions .page-casino__section-title,
.page-casino__promotions .page-casino__section-intro {
  color: #FFFFFF;
}

.page-casino__promotions .page-casino__section-title::after {
  background-color: #FCBC45;
}

.page-casino__promotions .page-casino__keyword {
  color: #FCBC45;
}

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

.page-casino__promo-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white on black */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}