.page-casino {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #0d0d0d;
  color: #f0f0f0; /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-casino__section {
  padding: 60px 0;
  text-align: center;
}

.page-casino__section:nth-of-type(even) {
  background-color: #1a1a1a;
}

.page-casino__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold primary color */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-casino__section-intro {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #cccccc;
}

/* Hero Section */
.page-casino__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background-color: #0d0d0d;
  position: relative;
  overflow: hidden;
}

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

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

.page-casino__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  color: #f0f0f0;
}

.page-casino__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-casino__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

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

.page-casino__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-casino__button--primary {
  background-color: #FFD700;
  color: #8B0000; /* Dark red text for gold button */
}

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

.page-casino__button--secondary {
  background-color: #8B0000;
  color: #FFD700; /* Gold text for dark red button */
  border: 2px solid #FFD700;
}

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

.page-casino__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #8B0000;
}

.page-casino__button--small:hover {
  background-color: #e6c200;
}

/* Why Choose Section */
.page-casino__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-casino__feature-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-casino__feature-description {
  color: #cccccc;
  font-size: 1em;
}

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

.page-casino__category-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-casino__category-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-casino__category-card h3 {
  padding: 15px 20px 5px;
}

.page-casino__category-title a {
  font-size: 1.6em;
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino__category-title a:hover {
  color: #e6c200;
}

.page-casino__category-description {
  padding: 0 20px 15px;
  color: #cccccc;
  font-size: 0.95em;
}

.page-casino__category-card .page-casino__button {
  margin: 0 20px 20px;
}

/* Promotions Section */
.page-casino__promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-casino__promo-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-casino__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-casino__promo-card h3 {
  padding: 15px 20px 5px;
}

.page-casino__promo-title a {
  font-size: 1.6em;
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino__promo-title a:hover {
  color: #e6c200;
}

.page-casino__promo-description {
  padding: 0 20px 15px;
  color: #cccccc;
  font-size: 0.95em;
}

.page-casino__promo-card .page-casino__button {
  margin: 0 20px 20px;
}

.page-casino__full-promo-link {
  margin-top: 40px;
}

/* Responsible Gaming Section */
.page-casino__responsible-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
  text-align: left;
  align-items: center;
}

.page-casino__responsible-image {
  flex: 1 1 400px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-casino__responsible-text {
  flex: 2 1 500px;
}

.page-casino__responsible-subtitle {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-casino__responsible-text p {
  color: #cccccc;
  margin-bottom: 15px;
}

.page-casino__responsible-text .page-casino__button {
  margin-top: 20px;
}

/* Banking & Support Section */
.page-casino__banking-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-casino__info-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-casino__info-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-casino__info-description {
  color: #cccccc;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-casino__cta-banking {
  margin-top: 40px;
}

/* Why Stand Out Section */
.page-casino__stand-out-points {
  text-align: left;
  max-width: 900px;
  margin: 50px auto 0;
}

.page-casino__stand-out-points p {
  margin-bottom: 15px;
  color: #cccccc;
}

.page-casino__stand-out-points strong {
  color: #FFD700;
}

/* Final CTA Section */
.page-casino__cta-final {
  padding-bottom: 80px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino__hero-title {
    font-size: 3em;
  }
  .page-casino__hero-description {
    font-size: 1.1em;
  }
  .page-casino__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-casino__hero-section {
    padding: 60px 20px;
  }
  .page-casino__hero-title {
    font-size: 2.5em;
  }
  .page-casino__hero-description {
    font-size: 1em;
  }
  .page-casino__hero-actions {
    flex-direction: column;
  }
  .page-casino__button {
    width: 100%;
    max-width: 300px;
  }
  .page-casino__section-title {
    font-size: 2em;
  }
  .page-casino__responsible-content {
    flex-direction: column;
  }
  .page-casino__responsible-image {
    width: 100%;
    height: auto; /* Ensure images don't overflow */
    max-width: 100%; /* Important for preventing horizontal scroll */
  }
  .page-casino__responsible-text {
    width: 100%;
  }
  .page-casino__game-categories-grid, .page-casino__promo-cards-grid, .page-casino__banking-support-grid, .page-casino__features-grid {
    grid-template-columns: 1fr;
  }
  /* Mobile content area image constraint */
  .page-casino img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-casino__hero-title {
    font-size: 2em;
  }
  .page-casino__section-title {
    font-size: 1.8em;
  }
  .page-casino__section-intro {
    font-size: 0.9em;
  }
  .page-casino__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-casino__feature-title, .page-casino__category-title a, .page-casino__promo-title a, .page-casino__responsible-subtitle, .page-casino__info-title {
    font-size: 1.5em;
  }
}