/* style/index-mcw-casino-88-popular-games.css */

/* --- General Page Styles --- */
.page-index-mcw-casino-88-popular-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a2e; /* Inherited from shared, but explicit for clarity */
}

.page-index-mcw-casino-88-popular-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Video Section --- */
.page-index-mcw-casino-88-popular-games__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  background: linear-gradient(135deg, #017439, #00562a); /* Gradient background for visual appeal */
}

.page-index-mcw-casino-88-popular-games__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-mcw-casino-88-popular-games__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.page-index-mcw-casino-88-popular-games__video-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-mcw-casino-88-popular-games__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-index-mcw-casino-88-popular-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none; /* Prevent video controls from blocking click event on parent <a> */
}

.page-index-mcw-casino-88-popular-games__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-index-mcw-casino-88-popular-games__video-link:hover .page-index-mcw-casino-88-popular-games__video-overlay {
  opacity: 1;
}

.page-index-mcw-casino-88-popular-games__video-click-hint {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding: 12px 25px;
  background: rgba(195, 8, 8, 0.8); /* Using register/login color for high contrast */
  border-radius: 5px;
  white-space: nowrap;
}

.page-index-mcw-casino-88-popular-games__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-index-mcw-casino-88-popular-games__play-now-button {
  display: inline-block;
  padding: 18px 50px;
  background: #C30808; /* Login/Register color */
  color: #FFFF00; /* Login/Register font color */
  text-decoration: none;
  border-radius: 10px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-index-mcw-casino-88-popular-games__play-now-button:hover {
  background: #a30606;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-index-mcw-casino-88-popular-games__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* --- H1 Title + CTA Section --- */
.page-index-mcw-casino-88-popular-games__title-section {
  padding: 80px 20px;
  text-align: center;
  background: #1a1a2e; /* Dark background from body */
  color: #ffffff; /* Light text for contrast */
}

.page-index-mcw-casino-88-popular-games__title-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-mcw-casino-88-popular-games__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFFF00; /* Yellow for prominence */
  line-height: 1.2;
}

.page-index-mcw-casino-88-popular-games__title-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-mcw-casino-88-popular-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-mcw-casino-88-popular-games__cta-button {
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-index-mcw-casino-88-popular-games__btn-register {
  background: #C30808; /* Register color */
  color: #FFFF00; /* Register font color */
}

.page-index-mcw-casino-88-popular-games__btn-register:hover {
  background: #a30606;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index-mcw-casino-88-popular-games__btn-login {
  background: #017439; /* Primary color */
  color: #ffffff;
}

.page-index-mcw-casino-88-popular-games__btn-login:hover {
  background: #00562a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* --- FAQ Section --- */
.page-index-mcw-casino-88-popular-games__faq-section {
  padding: 80px 20px;
  background: #FFFFFF; /* Light background */
  color: #333333; /* Dark text for contrast */
}

.page-index-mcw-casino-88-popular-games__faq-main-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  color: #017439; /* Primary color for title */
}