/* style/casino.css */

/* General Styling */
.page-casino {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Main text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css #0A0A0A */
  line-height: 1.6;
}

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

.page-casino__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Primary brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-casino__section-description {
  font-size: 1.1em;
  color: #FFF6D6;
  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__category-link,
.page-casino__read-more,
.page-casino__feature-link {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-casino__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Custom button color */
  color: #111111; /* Dark text for bright button */
  border: none;
}

.page-casino__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 216, 106, 0.4);
}

.page-casino__btn-secondary {
  background: #111111; /* Card BG color */
  color: #F2C14E; /* Primary brand color for text */
  border: 2px solid #F2C14E; /* Primary brand color for border */
}

.page-casino__btn-secondary:hover {
  background: #F2C14E; /* Primary brand color */
  color: #111111; /* Dark text for bright button */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-casino__category-link,
.page-casino__read-more,
.page-casino__feature-link {
  background: #3A2A12; /* Border color for subtle link buttons */
  color: #FFD36B; /* Auxiliary brand color */
  border: 1px solid #3A2A12;
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-casino__category-link:hover,
.page-casino__read-more:hover,
.page-casino__feature-link:hover {
  background: #FFD36B; /* Auxiliary brand color */
  color: #111111; /* Dark text */
}

/* Dark background sections */
.page-casino__dark-bg {
  background-color: #0A0A0A; /* Page background color */
  padding: 60px 0;
}

/* Hero Section */
.page-casino__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above, text below */
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden; /* Ensure content doesn't overflow */
}

.page-casino__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-casino__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-casino__hero-content {
  max-width: 900px;
  margin: 40px auto 0; /* Space between image and text */
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-casino__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
  color: #F2C14E;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-casino__tagline {
  font-size: 1.2em;
  color: #FFF6D6;
  margin-bottom: 40px;
}

.page-casino__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Games Section */
.page-casino__games-section {
  padding: 60px 0;
}

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

.page-casino__category-card {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12; /* Border color */
}

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

.page-casino__category-icon {
  width: 30px; /* Allowed small size */
  height: 30px; /* Allowed small size */
  margin-bottom: 15px;
  object-fit: contain;
}

.page-casino__category-title {
  font-size: 1.5em;
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-casino__category-card p {
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1; /* Ensure paragraphs take available space */
}

/* Promotions Section */
.page-casino__promo-section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Ensure consistent background */
}

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

.page-casino__promo-card {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12; /* Border color */
}

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

.page-casino__promo-image {
  width: 100%;
  height: 300px; /* Recommended height for content images */
  object-fit: cover;
  margin-bottom: 20px;
}

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

.page-casino__promo-card p {
  color: #FFF6D6;
  margin-bottom: 25px;
  padding: 0 20px;
}

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

/* Access Section */
.page-casino__access-section {
  padding: 60px 0;
}

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

.page-casino__access-card {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12; /* Border color */
}

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

.page-casino__access-image {
  width: 100%;
  height: 300px; /* Recommended height for content images */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-casino__access-card-title {
  font-size: 1.8em;
  color: #F2C14E;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-casino__access-card p {
  color: #FFF6D6;
  margin-bottom: 25px;
  padding: 0 20px;
}

.page-casino__access-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 0 20px;
}

/* Why Choose Us Section */
.page-casino__why-choose-us {
  padding: 60px 0;
  background-color: #0A0A0A; /* Ensure consistent background */
}

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

.page-casino__feature-item {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12; /* Border color */
}

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

.page-casino__feature-icon {
  width: 200px; /* Min size */
  height: 150px; /* Min size */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-casino__feature-title {
  font-size: 1.6em;
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-casino__feature-item p {
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Blog Section */
.page-casino__blog-section {
  padding: 60px 0;
}

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

.page-casino__blog-card {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12; /* Border color */
}

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

.page-casino__blog-image {
  width: 100%;
  height: 225px; /* Aspect ratio 16:9 for blog images */
  object-fit: cover;
}

.page-casino__blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.page-casino__blog-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-casino__blog-title a {
  color: #F2C14E;
  text-decoration: none;
  font-weight: bold;
}

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

.page-casino__blog-date {
  font-size: 0.9em;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-casino__blog-excerpt {
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

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

.page-casino__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}