.page-casino {
  color: #333333; /* Dark text for default light body background */
}

.page-casino__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background: linear-gradient(135deg, #003366, #1a4d80); /* Blend of primary color */
  color: #ffffff;
  text-align: center;
  padding-bottom: 80px;
  overflow: hidden;
}

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

.page-casino__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
}

.page-casino__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-casino__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-casino__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

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

.page-casino__button--primary {
  background-color: #FFD700; /* Gold */
  color: #003366; /* Royal Blue */
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-casino__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-casino__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-casino__button--secondary:hover {
  background-color: #FFD700;
  color: #003366;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-casino__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 6px;
}

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

.page-casino__section-title {
  font-size: 2.8em;
  color: #003366; /* Royal Blue */
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.page-casino__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold accent */
  margin: 15px auto 0;
  border-radius: 2px;
}

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

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

.page-casino__category-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.page-casino__category-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-casino__category-title {
  font-size: 1.8em;
  color: #003366; /* Royal Blue */
  margin: 25px 20px 15px;
}

.page-casino__category-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.page-casino__category-title a:hover {
  color: #FFD700; /* Gold */
}

.page-casino__category-description {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
  padding: 0 25px;
  margin-bottom: 25px;
}

.page-casino__why-choose {
  background-color: #f9f9f9;
  padding: 80px 0;
}

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

.page-casino__feature-item {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-casino__feature-icon {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  min-width: 200px;
  min-height: 200px;
}

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

.page-casino__feature-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666666;
}

.page-casino__jackpot-showcase {
  padding: 80px 0;
}

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

.page-casino__jackpot-card {
  background: linear-gradient(145deg, #003366, #1a4d80);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__jackpot-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.page-casino__jackpot-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-casino__jackpot-title {
  font-size: 1.8em;
  color: #FFD700;
  margin: 25px 20px 10px;
}

.page-casino__jackpot-current {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-casino__jackpot-amount {
  font-size: 1.6em;
  font-weight: bold;
  color: #FFD700;
}

.page-casino__responsible-gaming {
  background-color: #f0f8ff;
  padding: 80px 0;
}

.page-casino__call-to-action {
  background: linear-gradient(90deg, #003366, #336699);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-casino__call-to-action .page-casino__section-title {
  color: #FFD700;
}

.page-casino__call-to-action .page-casino__section-intro {
  color: #f0f0f0;
}

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

.page-casino__faq {
  padding: 80px 0;
}

.page-casino__faq-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-casino__faq-question {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-casino__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-casino__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-casino__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  display: none;
  padding-top: 10px;
}

.page-casino__faq-answer.open {
  display: block;
}

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

@media (max-width: 768px) {
  .page-casino__hero-section {
    padding-top: var(--header-offset, 120px);
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-casino__hero-title {
    font-size: 2.2em;
  }
  .page-casino__hero-description {
    font-size: 1em;
  }
  .page-casino__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino__button {
    width: 100%;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-casino__content-area {
    padding: 40px 15px;
  }
  .page-casino__section-title {
    font-size: 1.8em;
  }
  .page-casino__section-intro {
    font-size: 1em;
  }
  .page-casino__category-image, .page-casino__jackpot-image {
    height: 180px;
  }
  .page-casino__feature-icon {
    min-width: 200px;
    min-height: 200px;
    width: 150px; /* Adjust for better mobile display without going below 200px effective area */
    height: auto;
  }
  /* Mobile content area image constraints */
  .page-casino img {
    max-width: 100%;
    height: auto;
  }
  .page-casino__cta-buttons {
    flex-direction: column;
  }
  .page-casino__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-casino__hero-title {
    font-size: 1.8em;
  }
  .page-casino__section-title {
    font-size: 1.6em;
  }
  .page-casino__category-title, .page-casino__jackpot-title {
    font-size: 1.5em;
  }
  .page-casino__feature-title {
    font-size: 1.3em;
  }
  .page-casino__jackpot-amount {
    font-size: 1.4em;
  }
  .page-casino__feature-icon {
    width: 120px; /* Keep minimum width for display, rely on max-width: 100% */
  }
}