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

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

.page-casino__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-casino__section-description {
  font-size: clamp(16px, 2vw, 20px);
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__btn-primary,
.page-casino__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-casino__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* White text for contrast */
  border: 2px solid transparent;
}

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

.page-casino__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F; /* Brighter green for contrast */
  border: 2px solid #2E7A4E; /* Border */
}

.page-casino__btn-secondary:hover {
  background: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  border-color: #57E38D; /* Glow */
  transform: translateY(-2px);
}

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

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

/* Hero Section */
.page-casino__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles top padding, small top padding here */
  overflow: hidden;
}

.page-casino__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-height: 700px; /* Limit max height for large screens */
}

.page-casino__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly with image for visual flow */
  background-color: rgba(8, 22, 15, 0.85); /* Slightly transparent dark background */
  border-radius: 15px;
  backdrop-filter: blur(5px);
  z-index: 10; /* Ensure content is above image */
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.page-casino__main-title {
  font-size: clamp(32px, 5vw, 50px);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.page-casino__hero-description {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

/* About Section */
.page-casino__about-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-casino__about-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-casino__about-text {
  flex: 1;
}

.page-casino__about-text p {
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
  font-size: 18px;
}

.page-casino__about-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-casino__about-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  display: block;
}

/* Games Section */
.page-casino__games-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

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

.page-casino__game-card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  color: #F2FFF6; /* Text Main */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

.page-casino__game-title {
  font-size: 24px;
  padding: 20px 20px 10px 20px;
  margin: 0;
  color: #57E38D; /* Glow */
}

.page-casino__game-text {
  font-size: 16px;
  padding: 0 20px 20px 20px;
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1;
}

/* Promotions Section */
.page-casino__promotions-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-casino__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  color: #F2FFF6; /* Text Main */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

.page-casino__promo-content {
  padding: 20px;
  flex-grow: 1;
}

.page-casino__promo-title {
  font-size: 22px;
  margin-bottom: 10px;
  color: #F2C14E; /* Gold */
}

.page-casino__promo-text {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

/* Security Section */
.page-casino__security-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

.page-casino__security-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-casino__security-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-casino__security-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  display: block;
}

.page-casino__security-features {
  flex: 1;
}

.page-casino__feature-title {
  font-size: 28px;
  color: #57E38D; /* Glow */
  margin-bottom: 15px;
  margin-top: 30px;
}

.page-casino__feature-title:first-of-type {
  margin-top: 0;
}

.page-casino__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-casino__feature-list li {
  color: #A7D9B8; /* Text Secondary */
  font-size: 17px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-casino__feature-list li::before {
  content: '✓';
  color: #2AD16F; /* Button green */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

/* Payment Section */
.page-casino__payment-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-casino__payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center;
}

.page-casino__payment-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 250px;
  box-sizing: border-box;
}

.page-casino__payment-item:hover {
  transform: translateY(-5px);
}

.page-casino__payment-icon {
  width: 100px;
  height: 75px;
  object-fit: contain;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__payment-name {
  font-size: 18px;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
}

/* Support Section */
.page-casino__support-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

.page-casino__support-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-casino__support-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-casino__support-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  display: block;
}

.page-casino__support-channels {
  flex: 1;
}

.page-casino__channel-title {
  font-size: 28px;
  color: #57E38D; /* Glow */
  margin-bottom: 20px;
}

.page-casino__channel-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-casino__channel-list li {
  color: #A7D9B8; /* Text Secondary */
  font-size: 17px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-casino__channel-list li::before {
  content: '▶';
  color: #F2C14E; /* Gold */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
}

/* FAQ Section */
.page-casino__faq-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-casino__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-casino__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #11271B; /* Card BG */
}

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

.page-casino__faq-item[open] summary {
  color: #57E38D; /* Glow */
}

.page-casino__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
}

.page-casino__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 17px;
  color: #A7D9B8; /* Text Secondary */
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .page-casino__about-grid,
  .page-casino__security-content,
  .page-casino__support-content {
    flex-direction: column;
    text-align: center;
  }

  .page-casino__about-text, .page-casino__security-features, .page-casino__support-channels {
    order: 2;
  }

  .page-casino__about-image-wrapper, .page-casino__security-image-wrapper, .page-casino__support-image-wrapper {
    order: 1;
    margin-bottom: 30px;
  }

  .page-casino__feature-title, .page-casino__channel-title {
    margin-top: 0;
  }

  .page-casino__hero-content {
    margin-top: -40px;
    padding: 30px 15px;
  }
}

@media (max-width: 768px) {
  .page-casino {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-casino__section-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .page-casino__section-description {
    font-size: clamp(15px, 3vw, 18px);
  }

  .page-casino__main-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .page-casino__hero-description {
    font-size: clamp(16px, 3.5vw, 20px);
  }

  .page-casino__btn-primary,
  .page-casino__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px 20px;
    font-size: 18px;
  }

  .page-casino__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-casino__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-casino img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-casino__hero-section,
  .page-casino__about-section,
  .page-casino__games-section,
  .page-casino__promotions-section,
  .page-casino__security-section,
  .page-casino__payment-section,
  .page-casino__support-section,
  .page-casino__faq-section,
  .page-casino__cta-final-section {
    padding: 40px 0 !important;
  }

  .page-casino__game-card,
  .page-casino__promo-card,
  .page-casino__payment-item,
  .page-casino__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-casino__hero-content {
    margin-top: -20px;
  }

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

  .page-casino__game-title {
    font-size: 20px;
  }

  .page-casino__promo-title {
    font-size: 18px;
  }

  .page-casino__faq-item summary {
    font-size: 18px;
  }

  .page-casino__faq-answer {
    font-size: 16px;
  }

  .page-casino__payment-methods-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .page-casino__feature-list li,
  .page-casino__channel-list li {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .page-casino__games-grid,
  .page-casino__promotions-grid {
    grid-template-columns: 1fr;
  }

  .page-casino__payment-methods-grid {
    grid-template-columns: 1fr;
  }
}

.page-casino__dark-section {
  background-color: #0A4B2C; /* Deep Green */
}