.page-casino {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

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

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

.page-casino__sub-title {
  font-size: 28px;
  font-weight: bold;
  color: #FFD700; /* Gold for sub titles */
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-casino__text-block {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #f0f0f0; /* Slightly off-white for body text */
  text-align: justify;
}

.page-casino__btn-primary,
.page-casino__cta-button--primary {
  display: inline-block;
  padding: 15px 30px;
  background: #FFD700; /* Primary brand color */
  color: #000000; /* Black text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-casino__btn-primary:hover,
.page-casino__cta-button--primary:hover {
  background: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-casino__btn-secondary,
.page-casino__cta-button--secondary {
  display: inline-block;
  padding: 15px 30px;
  background: #8B0000; /* Secondary brand color */
  color: #ffffff; /* White text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-casino__btn-secondary:hover,
.page-casino__cta-button--secondary:hover {
  background: #6a0000; /* Slightly darker red on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-casino__btn-text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-casino__btn-text-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Hero Section */
.page-casino__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Blend of brand colors */
  overflow: hidden;
}

.page-casino__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-casino__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-casino__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-casino__hero-title {
  font-size: 52px;
  font-weight: 900;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-casino__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Ensure buttons wrap on small screens */
}

/* Introduction Section */
.page-casino__introduction-section {
  padding: 80px 0;
  background-color: #0d0d0d; /* Dark background */
}

/* Games Section */
.page-casino__games-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background */
}

.page-casino__game-category {
  margin-bottom: 60px;
}

.page-casino__game-category:last-child {
  margin-bottom: 0;
}

.page-casino__game-title {
  font-size: 32px;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-casino__game-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(255, 255, 255, 0.05); /* Semi-transparent white */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-casino__game-card--reverse {
  flex-direction: row-reverse;
}

.page-casino__game-card img {
  width: 50%;
  height: auto;
  max-width: 100%; /* Ensure image is responsive */
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-casino__card-content {
  width: 50%;
  color: #f0f0f0;
}

.page-casino__card-content p {
  margin-bottom: 20px;
}

/* Promotions Section */
.page-casino__promotions-section {
  padding: 80px 0;
  background-color: #0d0d0d; /* Dark background */
}

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

.page-casino__promo-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
}

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

.page-casino__promo-item img {
  width: 100%;
  height: 200px; /* Fixed height for promo images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-casino__promo-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-casino__promo-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Security & Support Section */
.page-casino__security-support-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-casino__flex-wrapper {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.page-casino__security-info,
.page-casino__support-info {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
}

.page-casino__security-info img,
.page-casino__support-info img {
  width: 100%;
  height: auto;
  max-width: 100%; /* Ensure image is responsive */
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

/* Guide Section */
.page-casino__guide-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

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

.page-casino__step-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
}

.page-casino__step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

.page-casino__step-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-casino__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-casino__faq-list {
  margin-top: 40px;
}

.page-casino__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05); /* Semi-transparent white for dark background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}