/* style/resources-mcw-casino-67-latest-promotions-analysis.css */

/* Base Styles for the Page Content */
.page-resources-mcw-casino-67-latest-promotions-analysis {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #FFFFFF; /* Default light background */
}

/* Fixed Header Spacing - applied to the main content wrapper */
.page-resources-mcw-casino-67-latest-promotions-analysis {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

/* Container for consistent content width */
.page-resources-mcw-casino-67-latest-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Section Titles */
.page-resources-mcw-casino-67-latest-promotions-analysis__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

/* Text Blocks */
.page-resources-mcw-casino-67-latest-promotions-analysis__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

/* Highlighted Text */
.page-resources-mcw-casino-67-latest-promotions-analysis__highlight {
  color: #26A9E0;
  font-weight: bold;
}

/* Buttons */
.page-resources-mcw-casino-67-latest-promotions-analysis__btn-primary,
.page-resources-mcw-casino-67-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  box-sizing: border-box; /* Ensure padding doesn't cause overflow */
  max-width: 100%; /* Ensure buttons are responsive */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow long words to break */
}

.page-resources-mcw-casino-67-latest-promotions-analysis__btn-primary {
  background-color: #26A9E0; /* Brand color */
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__btn-primary:hover {
  background-color: #1e87b7; /* Darker shade for hover */
  border-color: #1e87b7;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0; /* Brand color */
  border: 2px solid #26A9E0;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1e87b7;
  border-color: #1e87b7;
}

/* CTA Buttons Container */
.page-resources-mcw-casino-67-latest-promotions-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Hero Section */
.page-resources-mcw-casino-67-latest-promotions-analysis__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #f8f8f8;
  position: relative;
  overflow: hidden;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__hero-content {
  max-width: 800px;
  z-index: 1;
  position: relative;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__hero-title {
  font-size: 3.5em;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__hero-description {
  font-size: 1.3em;
  color: #555555;
  margin-bottom: 30px;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1; /* Subtle background image */
  filter: none; /* Ensure no CSS filter changes color */
}

/* Introduction Section */
.page-resources-mcw-casino-67-latest-promotions-analysis__introduction-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

/* Promotion Types Section */
.page-resources-mcw-casino-67-latest-promotions-analysis__promo-types-section {
  padding: 60px 0;
  background-color: #f0f7fa; /* Light blue tint */
}

.page-resources-mcw-casino-67-latest-promotions-analysis__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333; /* Ensure dark text on light card background */
}

.page-resources-mcw-casino-67-latest-promotions-analysis__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-mcw-casino-67-latest-promotions-analysis__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: none; /* Ensure no CSS filter changes color */
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
  object-fit: cover;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__card-description {
  font-size: 1em;
  color: #555555;
}

/* How to Claim Section */
.page-resources-mcw-casino-67-latest-promotions-analysis__how-to-claim-section {
  padding: 60px 0;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__dark-section {
  background-color: #26A9E0; /* Brand color as background */
  color: #FFFFFF; /* White text on dark background */
}

.page-resources-mcw-casino-67-latest-promotions-analysis__dark-section .page-resources-mcw-casino-67-latest-promotions-analysis__section-title {
  color: #FFFFFF; /* White title */
}

.page-resources-mcw-casino-67-latest-promotions-analysis__dark-section .page-resources-mcw-casino-67-latest-promotions-analysis__text-block {
  color: #f0f0f0; /* Light grey text */
}

.page-resources-mcw-casino-67-latest-promotions-analysis__dark-section .page-resources-mcw-casino-67-latest-promotions-analysis__text-block a {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__numbered-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__numbered-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__numbered-list li strong {
  color: #FFFFFF;
}

/* Why Choose Section */
.page-resources-mcw-casino-67-latest-promotions-analysis__why-choose-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__feature-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: #fcfcfc;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__feature-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  filter: none; /* Ensure no CSS filter changes color */
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
  object-fit: cover;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__feature-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__feature-description {
  color: #555555;
}

/* Video Section */
.page-resources-mcw-casino-67-latest-promotions-analysis__video-section {
  padding: 60px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-mcw-casino-67-latest-promotions-analysis__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: none; /* Ensure no CSS filter changes color */
}

.page-resources-mcw-casino-67-latest-promotions-analysis__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  z-index: 1;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__video-wrapper:hover .page-resources-mcw-casino-67-latest-promotions-analysis__video-overlay {
  opacity: 1;
}


/* FAQ Section */
.page-resources-mcw-casino-67-latest-promotions-analysis__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__faq-list {
  margin-top: 40px;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #eaf6fc; /* Light background for question */
  color: #26A9E0; /* Brand color for question text */
  transition: background-color 0.3s ease;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__faq-question:hover {
  background-color: #dbeaf3;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__faq-item.active .page-resources-mcw-casino-67-latest-promotions-analysis__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

.page-resources-mcw-casino-67-latest-promotions-analysis__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #FFFFFF;
  color: #555555;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__faq-item.active .page-resources-mcw-casino-67-latest-promotions-analysis__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 15px 25px;
}

.page-resources-mcw-casino-67-latest-promotions-analysis__faq-answer p {
  margin-bottom: 10px;
}

/* Call to Action Section */
.page-resources-mcw-casino-67-latest-promotions-analysis__cta-section {
  padding: 80px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-mcw-casino-67-latest-promotions-analysis__hero-title {
    font-size: 2.8em;
  }
  .page-resources-mcw-casino-67-latest-promotions-analysis__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  /* Mobile general styles */
  .page-resources-mcw-casino-67-latest-promotions-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Fixed header spacing for mobile, important for safety */
  .page-resources-mcw-casino-67-latest-promotions-analysis__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  /* Ensure content containers don't overflow */
  .page-resources-mcw-casino-67-latest-promotions-analysis__container,
  .page-resources-mcw-casino-67-latest-promotions-analysis__hero-section,
  .page-resources-mcw-casino-67-latest-promotions-analysis__introduction-section,
  .page-resources-mcw-casino-67-latest-promotions-analysis__promo-types-section,
  .page-resources-mcw-casino-67-latest-promotions-analysis__how-to-claim-section,
  .page-resources-mcw-casino-67-latest-promotions-analysis__why-choose-section,
  .page-resources-mcw-casino-67-latest-promotions-analysis__video-section,
  .page-resources-mcw-casino-67-latest-promotions-analysis__faq-section,
  .page-resources-mcw-casino-67-latest-promotions-analysis__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  /* Hero Section */
  .page-resources-mcw-casino-67-latest-promotions-analysis__hero-title {
    font-size: 2em;
  }
  .page-resources-mcw-casino-67-latest-promotions-analysis__hero-description {
    font-size: 1.1em;
  }

  /* Section Titles */
  .page-resources-mcw-casino-67-latest-promotions-analysis__section-title {
    font-size: 1.8em;
  }

  /* Images responsive */
  .page-resources-mcw-casino-67-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important; /* Ensure content images take full width */
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Enforce min size for content images */
    min-height: 200px !important; /* Enforce min size for content images */
  }

  /* Video responsive */
  .page-resources-mcw-casino-67-latest-promotions-analysis video,
  .page-resources-mcw-casino-67-latest-promotions-analysis__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-mcw-casino-67-latest-promotions-analysis__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0 !important; /* Remove container padding if applied */
    padding-right: 0 !important;
  }


  /* Buttons responsive */
  .page-resources-mcw-casino-67-latest-promotions-analysis__btn-primary,
  .page-resources-mcw-casino-67-latest-promotions-analysis__btn-secondary,
  .page-resources-mcw-casino-67-latest-promotions-analysis a[class*="button"],
  .page-resources-mcw-casino-67-latest-promotions-analysis 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: 12px 20px !important; /* Adjust padding for mobile buttons */
  }

  .page-resources-mcw-casino-67-latest-promotions-analysis__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically on mobile */
    gap: 15px !important; /* Adjust gap */
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Card and Feature items */
  .page-resources-mcw-casino-67-latest-promotions-analysis__card,
  .page-resources-mcw-casino-67-latest-promotions-analysis__feature-item {
    padding: 20px !important;
  }

  .page-resources-mcw-casino-67-latest-promotions-analysis__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-resources-mcw-casino-67-latest-promotions-analysis__faq-answer {
    padding: 0 20px;
  }
  .page-resources-mcw-casino-67-latest-promotions-analysis__faq-item.active .page-resources-mcw-casino-67-latest-promotions-analysis__faq-answer {
    padding: 15px 20px;
  }
}