.page-casino {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main for dark body background */
  background-color: #08160F; /* Background color from palette */
}

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

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

.page-casino__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-casino__light-bg {
  background-color: #11271B; /* Card BG as light background for contrast */
  color: #F2FFF6;
}

.page-casino__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold for titles */
  letter-spacing: 1.5px;
}

.page-casino__text {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__text-main {
  color: #F2FFF6;
}

.page-casino__text-secondary {
  color: #A7D9B8;
}

/* 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: 10px; /* Small top padding as body handles header offset */
  background-color: #08160F;
}

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

.page-casino__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-casino__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-casino__hero-description {
  font-size: 18px;
  color: #A7D9B8;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-casino__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-casino__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Introduction Section */
.page-casino__introduction-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-casino__feature-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-casino__feature-item img {
  
  
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #57E38D; /* Glow */
}

.page-casino__feature-title {
  font-size: 22px;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

/* Quick Access Section */
.page-casino__quick-access-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-casino__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-casino__btn-primary {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  text-align: center;
  min-width: 180px;
}

.page-casino__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Games Section */
.page-casino__games-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-casino__game-category-title {
  font-size: 28px;
  font-weight: 700;
  color: #57E38D; /* Glow */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-casino__game-category-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #F2C14E; /* Gold */
  border-radius: 2px;
}

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

.page-casino__game-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.page-casino__game-card-title {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 20px 10px 20px;
}

.page-casino__game-card-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino__game-card-title a:hover {
  color: #F2C14E; /* Gold */
}

.page-casino__game-card p {
  padding: 0 20px 20px;
  color: #A7D9B8;
  font-size: 15px;
  text-align: left;
}

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

/* Promotions Section */
.page-casino__promotions-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-casino__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-casino__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-casino__promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-casino__blog-card-content { /* Reused for promo cards to share padding */
  padding: 20px;
}

.page-casino__promo-title {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 20px 10px 20px;
}

.page-casino__promo-title a {
  color: #F2C14E; /* Gold */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino__promo-title a:hover {
  color: #57E38D; /* Glow */
}

.page-casino__promo-card p {
  padding: 0 20px 20px;
  color: #A7D9B8;
  font-size: 15px;
  text-align: center;
}

/* Security & Support Section */
.page-casino__security-support-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-casino__security-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-casino__security-item img {
  
  
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #57E38D; /* Glow */
}

.page-casino__security-title {
  font-size: 22px;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

/* FAQ Section */
.page-casino__faq-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-casino__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

details.page-casino__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border */
  overflow: hidden;
  background: #11271B; /* Card BG */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

details.page-casino__faq-item summary.page-casino__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-casino__faq-item summary.page-casino__faq-question::-webkit-details-marker {
  display: none;
}

details.page-casino__faq-item summary.page-casino__faq-question:hover {
  background: #0A4B2C; /* Deep Green for hover */
}

.page-casino__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2FFF6; /* Text Main */
}

.page-casino__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #57E38D; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-casino__faq-item .page-casino__faq-answer {
  padding: 0 25px 25px;
  background: #0A4B2C; /* Deep Green */
  border-radius: 0 0 12px 12px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 16px;
}

/* Latest Blog Section */
.page-casino__latest-blog-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-casino__blog-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-casino__blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-casino__blog-card-content {
  padding: 20px;
}

.page-casino__blog-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-casino__blog-card-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino__blog-card-title a:hover {
  color: #F2C14E; /* Gold */
}

.page-casino__blog-card-meta {
  font-size: 14px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-casino__read-more {
  display: inline-block;
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.page-casino__read-more:hover {
  color: #F2C14E; /* Gold */
}

/* Footer Copyright */
.page-casino__copyright {
  text-align: center;
  padding: 30px 20px;
  background-color: #0A4B2C; /* Deep Green */
  color: #A7D9B8;
  font-size: 14px;
  margin-top: 60px;
  border-top: 1px solid #1E3A2A; /* Divider */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino__section-title {
    font-size: 32px;
  }
  .page-casino__hero-image img {
    border-radius: 8px;
  }
  .page-casino__main-title {
    font-size: clamp(24px, 5vw, 40px);
  }
  .page-casino__hero-description {
    font-size: 16px;
  }
  .page-casino__cta-button {
    padding: 12px 30px;
    font-size: 18px;
  }
  .page-casino__game-cards-grid,
  .page-casino__promotions-grid,
  .page-casino__security-support-grid,
  .page-casino__blog-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-casino__container {
    padding: 20px 15px;
  }
  .page-casino__section {
    padding: 40px 0;
  }
  .page-casino__section-title {
    font-size: 28px;
  }
  .page-casino__text {
    font-size: 15px;
    margin-bottom: 30px;
  }

  /* HERO Section Mobile */
  .page-casino__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-casino__hero-image img {
    border-radius: 6px;
  }
  .page-casino__main-title {
    font-size: clamp(22px, 6vw, 36px);
  }
  .page-casino__hero-description {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .page-casino__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Quick Access Buttons Mobile */
  .page-casino__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-casino__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Image Responsive */
  .page-casino img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-casino__section .page-casino__container,
  .page-casino__card,
  .page-casino__feature-item,
  .page-casino__game-card,
  .page-casino__promo-card,
  .page-casino__security-item,
  .page-casino__blog-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Games Section Mobile */
  .page-casino__game-category-title {
    font-size: 24px;
  }
  .page-casino__game-card-title {
    font-size: 20px;
  }
  .page-casino__game-card img {
    
  }

  /* Promotions Section Mobile */
  .page-casino__promo-title {
    font-size: 18px;
  }
  .page-casino__promo-card img {
    
  }

  /* FAQ Mobile */
  details.page-casino__faq-item summary.page-casino__faq-question {
    padding: 15px 20px;
  }
  .page-casino__faq-qtext {
    font-size: 16px;
  }
  .page-casino__faq-toggle {
    font-size: 24px;
  }
  details.page-casino__faq-item .page-casino__faq-answer {
    padding: 0 20px 20px;
  }

  /* Blog Section Mobile */
  .page-casino__blog-card-title {
    font-size: 18px;
  }
  .page-casino__blog-card img {
    
  }
}

@media (max-width: 480px) {
  .page-casino__section-title {
    font-size: 24px;
  }
  .page-casino__hero-section {
    padding-bottom: 20px;
  }
  .page-casino__main-title {
    font-size: clamp(20px, 7vw, 32px);
  }
  .page-casino__hero-description {
    font-size: 14px;
  }
  .page-casino__cta-button {
    font-size: 15px;
    padding: 10px 20px;
  }
  .page-casino__feature-item {
    padding: 20px;
  }
  .page-casino__feature-title {
    font-size: 20px;
  }
  .page-casino__game-card img {
    
  }
  .page-casino__promo-card img {
    
  }
  .page-casino__blog-card img {
    
  }
}