.page-casino {
  color: #333333; /* Dark text for light body background #f4f4f4 */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
}

.page-casino__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, #1A202C 0%, #333d4d 100%); /* Dark gradient background */
  color: #ffffff;
  overflow: hidden;
}

.page-casino__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-casino__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary gold for highlight */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-casino__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__hero-buttons {
  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: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-casino__button--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

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

.page-casino__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

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

.page-casino__button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-casino__button--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

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

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

.page-casino__section-title {
  font-size: 2.8em;
  color: #1A202C;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-casino__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-casino__games-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.page-casino__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-casino__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-casino__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-casino__game-card-title {
  font-size: 1.8em;
  color: #1A202C;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-casino__game-card-title a {
  color: #1A202C;
  text-decoration: none;
}

.page-casino__game-card-title a:hover {
  color: #FFD700;
}

.page-casino__game-card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  padding: 0 20px;
  flex-grow: 1;
}

.page-casino__promotions-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 80px 20px;
  background-color: #1A202C;
  color: #ffffff;
}

.page-casino__promotions-content {
  max-width: 600px;
}

.page-casino__promotions-section .page-casino__section-title {
  color: #FFD700;
  text-align: left;
}

.page-casino__promotions-section .page-casino__section-intro {
  color: #e0e0e0;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 30px;
}

.page-casino__promo-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-casino__promo-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-casino__promo-item::before {
  content: '★';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1;
}

.page-casino__promotions-image-wrapper {
  flex-shrink: 0;
}

.page-casino__promotions-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-casino__why-choose-section {
  padding: 80px 20px;
  background-color: #f4f4f4;
}

.page-casino__why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto;
}

.page-casino__why-choose-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.page-casino__why-choose-heading {
  font-size: 1.6em;
  color: #1A202C;
  margin-bottom: 15px;
}

.page-casino__why-choose-description {
  font-size: 1em;
  color: #666666;
}

.page-casino__why-choose-image-wrapper {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: center;
}

.page-casino__why-choose-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-casino__responsible-gaming-section {
  padding: 80px 20px;
  background-color: #e8e8e8;
  display: flex;
  flex-direction: row-reverse; /* Image on right, text on left */
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.page-casino__responsible-gaming-content {
  max-width: 600px;
}

.page-casino__responsible-gaming-section .page-casino__section-title {
  text-align: left;
}

.page-casino__responsible-gaming-section .page-casino__section-intro {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 30px;
}

.page-casino__responsible-gaming-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-casino__responsible-gaming-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: #333333;
}

.page-casino__responsible-gaming-item::before {
  content: '✓';
  color: #1A202C;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1;
  font-weight: bold;
}

.page-casino__responsible-gaming-image-wrapper {
  flex-shrink: 0;
}

.page-casino__responsible-gaming-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.page-casino__cta-section {
  background-color: #FFD700;
  padding: 80px 20px;
  text-align: center;
  color: #1A202C;
}

.page-casino__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-casino__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino__hero-title {
    font-size: 3em;
  }
  .page-casino__section-title {
    font-size: 2.2em;
  }
  .page-casino__promotions-section, .page-casino__responsible-gaming-section {
    flex-direction: column;
    text-align: center;
  }
  .page-casino__promotions-section .page-casino__section-title,
  .page-casino__promotions-section .page-casino__section-intro,
  .page-casino__responsible-gaming-section .page-casino__section-title,
  .page-casino__responsible-gaming-section .page-casino__section-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page-casino {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }
  .page-casino__hero-title {
    font-size: 2.5em;
  }
  .page-casino__hero-description {
    font-size: 1.2em;
  }
  .page-casino__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino__button {
    width: 100%;
  }
  .page-casino__section-title {
    font-size: 1.8em;
  }
  .page-casino__section-intro {
    font-size: 1em;
  }
  .page-casino__game-categories {
    grid-template-columns: 1fr;
  }
  .page-casino__game-card-image {
    height: 200px;
  }
  .page-casino__promotions-section, .page-casino__responsible-gaming-section {
    padding: 50px 15px;
  }
  .page-casino__cta-title {
    font-size: 2.2em;
  }
  .page-casino__cta-description {
    font-size: 1em;
  }
  /* CRITICAL: Mobile content images must not overflow */
  .page-casino img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure content area does not cause horizontal scroll */
  .page-casino {
    max-width: 100%;
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-casino__hero-title {
    font-size: 2em;
  }
  .page-casino__hero-description {
    font-size: 1em;
  }
  .page-casino__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-casino__section-title {
    font-size: 1.5em;
  }
  .page-casino__cta-title {
    font-size: 1.8em;
  }
}