.page-casino {
  color: #333333;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

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

.page-casino__section-title {
  font-size: 2.5em;
  color: #0A2E36;
  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: #FFD700;
  border-radius: 2px;
}

.page-casino__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__text-content {
  font-size: 1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-casino__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-casino__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-casino__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6);
}

.page-casino__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-casino__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-casino__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-casino__hero-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;
}

.page-casino__hero-button--primary {
  background-color: #FFD700;
  color: #0A2E36;
}

.page-casino__hero-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-casino__hero-button--secondary {
  background-color: #0A2E36;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-casino__hero-button--secondary:hover {
  background-color: #1a4d5c;
  transform: translateY(-3px);
}

/* About Section */
.page-casino__about-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

/* Game Categories Section */
.page-casino__game-categories-section {
  padding: 60px 0;
}

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

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

.page-casino__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

.page-casino__game-card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2E36;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-casino__game-card-button:hover {
  background-color: #e6c200;
}

/* Promotions Section */
.page-casino__promotions-section {
  background-color: #0A2E36;
  padding: 60px 0;
  color: #ffffff;
}

.page-casino__promotions-section .page-casino__section-title,
.page-casino__promotions-section .page-casino__section-description {
  color: #ffffff;
}

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

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

.page-casino__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-casino__promo-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

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

.page-casino__promo-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-casino__promo-card-description {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-casino__promo-card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2E36;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-casino__promo-card-button:hover {
  background-color: #e6c200;
}

/* Why Choose Section */
.page-casino__why-choose-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-casino__feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

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

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

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

.page-casino__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-casino__cta-button {
  display: inline-block;
  background-color: #0A2E36;
  color: #FFD700;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-casino__cta-button:hover {
  background-color: #1a4d5c;
  transform: translateY(-3px);
}

/* Responsible Gaming Section */
.page-casino__responsible-gaming-section {
  padding: 60px 0;
  background-color: #e8f5e9;
  text-align: center;
}

.page-casino__responsible-gaming-link {
  display: inline-block;
  margin-top: 20px;
  background-color: #FFD700;
  color: #0A2E36;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-casino__responsible-gaming-link:hover {
  background-color: #e6c200;
}

/* Detail Pages Section */
.page-casino__detail-pages-section {
  padding: 60px 0;
}

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

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

.page-casino__detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-casino__detail-card-title {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-casino__detail-card-title a {
  color: #0A2E36;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-casino__detail-card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-casino__detail-card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2E36;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-casino__detail-card-button:hover {
  background-color: #e6c200;
}

/* FAQ Section */
.page-casino__faq-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-casino__faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.page-casino__faq-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-casino__faq-question {
  font-size: 1.2em;
  color: #0A2E36;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f0f0;
  margin: 0;
}

.page-casino__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-casino__faq-item.active .page-casino__faq-question::after {
  transform: rotate(45deg);
}

.page-casino__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-casino__faq-item.active .page-casino__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 20px;
}

.page-casino__faq-answer p {
  margin: 0;
  color: #666666;
}

/* Final CTA Section */
.page-casino__cta-section {
  background-color: #0A2E36;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-casino__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

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

.page-casino__cta-button--large {
  background-color: #FFD700;
  color: #0A2E36;
  padding: 18px 45px;
  font-size: 1.4em;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-casino__cta-button--large:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
}

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

  .page-casino__hero-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-casino__section-title {
    font-size: 2em;
  }

  .page-casino__hero-title {
    font-size: 2.5em;
  }

  .page-casino__hero-description {
    font-size: 1em;
  }

  .page-casino__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-casino__hero-button {
    width: 80%;
    margin: 0 auto;
  }

  .page-casino__game-card-image,
  .page-casino__promo-card-image {
    height: 200px;
  }

  .page-casino__game-card-title,
  .page-casino__promo-card-title {
    font-size: 1.5em;
  }

  .page-casino__feature-title {
    font-size: 1.4em;
  }

  .page-casino__cta-title {
    font-size: 2em;
  }

  .page-casino__cta-button--large {
    font-size: 1.2em;
    padding: 15px 35px;
  }

  /* Mobile image scaling */
  .page-casino img {
    max-width: 100%;
    height: auto;
  }

  .page-casino__game-card-image,
  .page-casino__promo-card-image {
    max-width: 100%;
    height: auto;
  }
  .page-casino__faq-item.active .page-casino__faq-answer {
    max-height: 400px; /* Adjust for more content on mobile */
  }
}

@media (max-width: 480px) {
  .page-casino__hero-title {
    font-size: 2em;
  }

  .page-casino__hero-description {
    font-size: 0.9em;
  }

  .page-casino__section-title {
    font-size: 1.8em;
  }

  .page-casino__section-description {
    font-size: 0.9em;
  }

  .page-casino__hero-button {
    width: 90%;
  }

  .page-casino__cta-title {
    font-size: 1.8em;
  }
}