.page-casino {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  background-color: var(--deep-navy-color); /* Body background from shared */
}

.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, body handles header offset */
  background-color: #08162B;
}

.page-casino__hero-container {
  position: relative;
  max-width: 1400px;
  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: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-casino__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.6);
}

.page-casino__description {
  font-size: 1.15rem;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-casino__cta-button--center {
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: fit-content;
}

.page-casino__section {
  padding: 60px 20px;
  text-align: center;
  background-color: #08162B; /* Deep Navy */
}

.page-casino__dark-section {
  background-color: #10233F; /* Card BG */
}

.page-casino__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.page-casino__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-casino__text-block {
  font-size: 1rem;
  color: #AFC4E8; /* Text Secondary */
  max-width: 900px;
  margin: 0 auto 25px auto;
  text-align: justify;
}

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

.page-casino__grid-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-casino__feature-card {
  background-color: #10233F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #244D84; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-casino__feature-card p {
  color: #AFC4E8; /* Text Secondary */
  font-size: 1rem;
  line-height: 1.5;
}

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

.page-casino__game-card {
  background-color: #10233F; /* Card BG */
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #244D84; /* Border */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-casino__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-casino__game-card p {
  color: #AFC4E8; /* Text Secondary */
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-casino__btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Gold */
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.95rem;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-casino__btn-secondary:hover {
  background: #F2C14E;
  color: #10233F; /* Card BG */
  box-shadow: 0 3px 10px rgba(242, 193, 78, 0.5);
}

.page-casino__promo-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.page-casino__promo-list li {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: #AFC4E8; /* Text Secondary */
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-casino__promo-list li strong {
  color: #F3F8FF; /* Text Main */
}

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

.page-casino__step-card {
  background-color: #08162B; /* Deep Navy */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #1B3357; /* Divider */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-casino__step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(79, 168, 255, 0.7); /* Glow */
}

.page-casino__step-card .page-casino__card-title {
  color: #F3F8FF; /* Text Main */
  margin-top: 0;
  margin-bottom: 10px;
}

.page-casino__step-card p {
  color: #AFC4E8; /* Text Secondary */
  font-size: 0.95rem;
}

.page-casino__faq-section {
  background-color: #08162B; /* Deep Navy */
}

.page-casino__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

details.page-casino__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #244D84; /* Border */
  overflow: hidden;
  background: #10233F; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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: #1B3357; /* Divider */
}

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

.page-casino__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}

details.page-casino__faq-item[open] .page-casino__faq-toggle {
  transform: rotate(45deg);
}

details.page-casino__faq-item .page-casino__faq-answer {
  padding: 0 25px 20px;
  background: #08162B; /* Deep Navy */
  border-radius: 0 0 10px 10px;
  color: #AFC4E8; /* Text Secondary */
  font-size: 1rem;
  text-align: justify;
}

.page-casino__cta-final {
  padding: 80px 20px;
  background: linear-gradient(to right, #113B7A, #1D5FD1); /* Main and Aux colors */
  color: #F3F8FF;
}

.page-casino__cta-final .page-casino__section-title {
  color: #F3F8FF; /* Text Main */
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.page-casino__cta-final .page-casino__section-title::after {
  background-color: #F2C14E; /* Gold */
}

.page-casino__cta-final .page-casino__description {
  color: #F3F8FF;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-casino__hero-image img {
    border-radius: 6px;
  }

  .page-casino__main-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
  }

  .page-casino__description {
    font-size: 1.05rem;
  }

  .page-casino__section-title {
    font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-casino__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-casino__hero-image img {
    border-radius: 4px;
  }
  
  .page-casino__cta-button {
    padding: 12px 30px;
    font-size: 1rem;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-casino__cta-button--center {
    max-width: 100%;
  }

  .page-casino__section {
    padding: 40px 15px;
  }

  .page-casino__container {
    padding-left: 0;
    padding-right: 0;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-casino__text-block {
    text-align: left;
  }

  .page-casino__image-grid,
  .page-casino__features-grid,
  .page-casino__game-cards-grid,
  .page-casino__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-casino__feature-card,
  .page-casino__game-card,
  .page-casino__step-card {
    padding: 20px;
  }

  .page-casino__card-title {
    font-size: 1.3rem;
  }

  .page-casino__promo-list li {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  details.page-casino__faq-item summary.page-casino__faq-question {
    padding: 15px;
  }
  .page-casino__faq-qtext {
    font-size: 1rem;
  }
  .page-casino__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  details.page-casino__faq-item .page-casino__faq-answer {
    padding: 0 15px 15px;
  }

  /* Image responsive enforcement */
  .page-casino img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-casino__section,
  .page-casino__card,
  .page-casino__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-casino__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-casino__game-card .page-casino__btn-secondary {
    margin-top: auto;
  }
}