.page-casino {
  color: #FFF5E1; /* Text Main for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Body background handled by shared.css */
}

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

.page-casino__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #FFF5E1; /* Text Main color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-casino__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFD86A, #E6B800); /* Gold gradient */
  border-radius: 2px;
}

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

/* Buttons */
.page-casino__btn-primary,
.page-casino__btn-secondary,
.page-casino__btn-small,
.page-casino__btn-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap; /* Prevent text wrapping by default */
  word-wrap: normal;
  box-sizing: border-box;
}

.page-casino__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button Gold */
  color: #7A0E0E; /* Deep Red for text on gold */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-casino__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
}

.page-casino__btn-secondary {
  background: #7A0E0E; /* Deep Red */
  color: #FFF5E1; /* Text Main */
  border: 2px solid #F4D34D; /* Gold border */
}

.page-casino__btn-secondary:hover {
  background: #C91F17; /* Main color */
  border-color: #FFCC66; /* Glow */
}

.page-casino__btn-small {
  padding: 8px 18px;
  font-size: 14px;
  background: #D32F2F; /* Card BG */
  color: #FFF5E1; /* Text Main */
  border: 1px solid #F2B544; /* Border */
  border-radius: 5px;
  text-transform: uppercase;
}

.page-casino__btn-small:hover {
  background: #C91F17; /* Main color */
  border-color: #FFD86A;
}

.page-casino__btn-text-link {
  color: #FFD86A; /* Gold */
  text-decoration: underline;
  padding: 0;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
}

.page-casino__btn-text-link:hover {
  color: #E6B800; /* Darker Gold */
}

/* Hero Section */
.page-casino__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 50px;
  background-color: #7A0E0E; /* Deep Red background for hero section */
}

.page-casino__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Max height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-casino__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Cover by default for desktop */
  min-height: 400px; /* Ensure a minimum height */
}

.page-casino__hero-content {
  position: relative;
  z-index: 2;
  padding: 30px 15px 0;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly with the image for visual effect, but not text on image */
  background: rgba(122, 14, 14, 0.7); /* Deep Red semi-transparent background for content */
  border-radius: 10px;
  padding-bottom: 30px;
}

.page-casino__hero-title {
  font-size: clamp(32px, 5vw, 48px); /* Responsive font size */
  color: #FFD86A; /* Gold for main title */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-casino__hero-description {
  font-size: 18px;
  color: #FFF5E1;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Introduction Section */
.page-casino__introduction-section {
  background-color: #D32F2F; /* Card BG */
  padding: 60px 0;
}

.page-casino__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-casino__text-block p {
  margin-bottom: 15px;
  color: #FFF5E1;
}

.page-casino__image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

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

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

.page-casino__game-card {
  background: #D32F2F; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  color: #FFF5E1;
  text-align: center;
}

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

.page-casino__game-title {
  font-size: 22px;
  font-weight: 700;
  margin: 15px 10px 10px;
  color: #FFD86A; /* Gold for titles */
}

.page-casino__game-title a {
  color: #FFD86A;
  text-decoration: none;
}

.page-casino__game-title a:hover {
  text-decoration: underline;
}

.page-casino__game-text {
  font-size: 15px;
  padding: 0 15px 15px;
  flex-grow: 1;
}

.page-casino__game-card .page-casino__btn-small {
  margin: 0 15px 20px;
  align-self: center;
  width: calc(100% - 30px);
}

/* Why Choose Us Section */
.page-casino__why-choose-us-section {
  padding: 60px 0;
  background-color: #7A0E0E; /* Deep Red */
}

.page-casino__dark-section .page-casino__section-title {
  color: #FFF5E1; /* Text Main for dark background */
}

.page-casino__dark-section .page-casino__section-title::after {
  background: linear-gradient(90deg, #FFD86A, #E6B800);
}

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

.page-casino__feature-item {
  background: rgba(255, 255, 255, 0.1); /* Slightly transparent white on deep red */
  border: 1px solid #F2B544; /* Gold border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  color: #FFF5E1;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-casino__feature-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 8px;
  object-fit: contain;
}

.page-casino__feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFD86A; /* Gold */
  margin-bottom: 10px;
}

.page-casino__feature-item p {
  font-size: 15px;
  color: #FFF5E1;
}

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

/* SEO Article Section */
.page-casino__seo-article-section {
  background-color: #D32F2F; /* Card BG */
  padding: 60px 0;
}

.page-casino__article-body {
  max-width: 900px;
  margin: 0 auto;
  color: #FFF5E1;
  font-size: 16px;
  line-height: 1.8;
}

.page-casino__article-body h2,
.page-casino__article-body h3 {
  color: #FFD86A; /* Gold for article titles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-casino__article-body h2 {
  font-size: 28px;
}

.page-casino__article-body h3 {
  font-size: 24px;
}

.page-casino__article-body p {
  margin-bottom: 1em;
}

.page-casino__article-body strong {
  color: #FFD86A; /* Highlight keywords in gold */
}

.page-casino__article-body a {
  color: #FFD86A;
  text-decoration: underline;
}

.page-casino__article-body a:hover {
  color: #E6B800;
}

.page-casino__article-figure {
  margin: 30px 0;
  text-align: center;
}

.page-casino__article-figure img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.page-casino__article-figure figcaption {
  font-size: 14px;
  color: #FFF5E1;
  margin-top: 10px;
}

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

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

details.page-casino__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #F2B544; /* Border Gold */
  overflow: hidden;
  background: #D32F2F; /* Card BG */
  color: #FFF5E1;
}
details.page-casino__faq-item summary.page-casino__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  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: #C91F17; /* Main Color */
}
.page-casino__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFD86A; /* Gold for question text */
}
.page-casino__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD86A; /* Gold for toggle icon */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-casino__faq-item .page-casino__faq-answer {
  padding: 0 20px 20px;
  background: #C91F17; /* Main Color for answer background */
  border-radius: 0 0 5px 5px;
  color: #FFF5E1;
}
.page-casino__faq-answer p {
  margin-bottom: 0;
}


/* Global image responsive rules for main content */
.page-casino img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-casino__container {
    padding: 15px 10px;
  }
  .page-casino__hero-title {
    font-size: clamp(30px, 4.5vw, 42px);
  }
  .page-casino__section-title {
    font-size: 32px;
  }
  .page-casino__games-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  /* 1. HERO Main Image Area */
  .page-casino__hero-section {
    padding-top: 10px;
    padding-bottom: 30px;
  }
  .page-casino__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important;
    min-height: 250px;
  }
  .page-casino__hero-content {
    margin-top: -50px;
    padding: 20px 10px;
  }
  .page-casino__hero-title {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 10px;
  }
  .page-casino__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-casino__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
  }

  /* 2. Product Display Area (__games-grid) */
  .page-casino__games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    overflow-x: hidden;
  }
  .page-casino__game-image {
    height: 150px;
  }
  .page-casino__game-title {
    font-size: 18px;
  }
  .page-casino__game-text {
    font-size: 14px;
  }

  /* 3. Decorative Main Title + Long Text SEO Area */
  .page-casino__section-title {
    font-size: clamp(24px, 7vw, 30px);
    margin-bottom: 25px;
  }
  .page-casino__section-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-casino__content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-casino__text-block p {
    font-size: 15px;
  }
  .page-casino__article-body {
    padding: 0 10px;
    font-size: 15px;
  }
  .page-casino__article-body h2 {
    font-size: 24px;
  }
  .page-casino__article-body h3 {
    font-size: 20px;
  }
  .page-casino__article-figure {
    margin: 20px 0;
  }
  .page-casino__article-figure img {
    max-width: 100%;
    width: 100%;
  }

  /* 4. General Images and Containers */
  .page-casino img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-casino__section,
  .page-casino__card,
  .page-casino__container,
  .page-casino__feature-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-casino__feature-icon {
    max-width: 100px;
  }

  /* 5. Buttons and Button Containers */
  .page-casino__btn-primary,
  .page-casino__btn-secondary,
  .page-casino__btn-small,
  .page-casino a[class*="button"],
  .page-casino a[class*="btn"] {
    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__cta-buttons,
  .page-casino__button-group,
  .page-casino__btn-container,
  .page-casino__hero-cta-buttons--centered {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }

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