/* style/blog-m33win-top-games-2024.css */

/* Body background is var(--black-color), which is dark. Use light text. */
.page-blog-m33win-top-games-2024 {
  color: #ffffff; /* Default text color for the page content */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-m33win-top-games-2024__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-m33win-top-games-2024__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #000000; /* Dark background for hero section */
  color: #ffffff;
}

.page-blog-m33win-top-games-2024__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
  position: relative;
}

.page-blog-m33win-top-games-2024__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-m33win-top-games-2024__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly with image for visual effect, but not text on image */
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent dark background for text */
  border-radius: 8px;
  padding: 30px;
}

.page-blog-m33win-top-games-2024__main-title {
  color: #ffffff;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin: 0 auto 20px auto;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-blog-m33win-top-games-2024__subtitle {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-m33win-top-games-2024__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-m33win-top-games-2024__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-m33win-top-games-2024__btn-primary:hover {
  background-color: #1a8cc2;
  transform: translateY(-2px);
}

.page-blog-m33win-top-games-2024__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin-left: 15px;
}

.page-blog-m33win-top-games-2024__btn-secondary:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-blog-m33win-top-games-2024__content-area {
  padding: 60px 0;
}

.page-blog-m33win-top-games-2024__dark-bg {
  background-color: #1a1a1a; /* Darker background for text sections */
  color: #ffffff;
}

.page-blog-m33win-top-games-2024__light-bg {
  background-color: #ffffff; /* Light background for contrast */
  color: #333333;
}

.page-blog-m33win-top-games-2024__dark-section {
  background-color: #26A9E0; /* Brand color as background */
  color: #ffffff;
}

.page-blog-m33win-top-games-2024__section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  color: inherit; /* Inherit color from parent section */
}

.page-blog-m33win-top-games-2024__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-m33win-top-games-2024__highlight {
  color: #EA7C07; /* Login color for highlights */
  font-weight: bold;
}

.page-blog-m33win-top-games-2024__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-m33win-top-games-2024__game-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  color: #333333;
}

.page-blog-m33win-top-games-2024__game-card:hover {
  transform: translateY(-5px);
}

.page-blog-m33win-top-games-2024__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-m33win-top-games-2024__game-title {
  font-size: 1.5rem;
  margin: 20px 20px 10px 20px;
  color: #26A9E0;
}

.page-blog-m33win-top-games-2024__game-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-blog-m33win-top-games-2024__game-title a:hover {
  text-decoration: underline;
}

.page-blog-m33win-top-games-2024__game-description {
  font-size: 0.95rem;
  margin: 0 20px 20px 20px;
}

.page-blog-m33win-top-games-2024__promo-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-m33win-top-games-2024__promo-list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.page-blog-m33win-top-games-2024__promo-list li {
  margin-bottom: 10px;
}

.page-blog-m33win-top-games-2024__guide-list {
  list-style: decimal inside;
  margin-left: 20px;
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #333333;
}

.page-blog-m33win-top-games-2024__guide-list li {
  margin-bottom: 10px;
}

.page-blog-m33win-top-games-2024__guide-list a {
  color: #26A9E0;
  text-decoration: none;
}

.page-blog-m33win-top-games-2024__guide-list a:hover {
  text-decoration: underline;
}

.page-blog-m33win-top-games-2024__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-blog-m33win-top-games-2024__app-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-blog-m33win-top-games-2024__faq-list {
  margin-top: 40px;
}

.page-blog-m33win-top-games-2024__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-blog-m33win-top-games-2024__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  background-color: #eaf7ff; /* Light blue background for summary */
  color: #26A9E0;
}

.page-blog-m33win-top-games-2024__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-m33win-top-games-2024__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-blog-m33win-top-games-2024__faq-qtext {
  flex-grow: 1;
}

.page-blog-m33win-top-games-2024__faq-toggle {
  margin-left: 15px;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-m33win-top-games-2024__faq-item[open] .page-blog-m33win-top-games-2024__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-m33win-top-games-2024__faq-answer {
  padding: 20px;
  font-size: 1rem;
  line-height: 1.7;
  background-color: #ffffff;
  color: #333333;
  border-top: 1px solid #e0e0e0;
}

.page-blog-m33win-top-games-2024__faq-answer p {
  margin-bottom: 10px;
}

.page-blog-m33win-top-games-2024__faq-answer a {
  color: #26A9E0;
  text-decoration: none;
}

.page-blog-m33win-top-games-2024__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-m33win-top-games-2024__main-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .page-blog-m33win-top-games-2024__section-title {
    font-size: 2rem;
  }

  .page-blog-m33win-top-games-2024__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-m33win-top-games-2024__hero-content {
    margin-top: -60px;
    padding: 20px;
  }

  .page-blog-m33win-top-games-2024__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-m33win-top-games-2024__subtitle,
  .page-blog-m33win-top-games-2024__text-block,
  .page-blog-m33win-top-games-2024__promo-list,
  .page-blog-m33win-top-games-2024__guide-list,
  .page-blog-m33win-top-games-2024__faq-answer {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  .page-blog-m33win-top-games-2024__cta-button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .page-blog-m33win-top-games-2024__btn-secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-blog-m33win-top-games-2024__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-m33win-top-games-2024__section-title {
    font-size: 1.8rem;
  }

  .page-blog-m33win-top-games-2024__game-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-m33win-top-games-2024__game-title {
    font-size: 1.3rem;
  }

  .page-blog-m33win-top-games-2024__faq-item summary {
    font-size: 1rem;
    padding: 15px;
  }

  /* Mobile image responsiveness */
  .page-blog-m33win-top-games-2024 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-m33win-top-games-2024__hero-image-wrapper,
  .page-blog-m33win-top-games-2024__content-area,
  .page-blog-m33win-top-games-2024__game-card,
  .page-blog-m33win-top-games-2024__promo-image,
  .page-blog-m33win-top-games-2024__app-image,
  .page-blog-m33win-top-games-2024__faq-list,
  .page-blog-m33win-top-games-2024__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  /* Ensure no top padding conflict with shared header */
  .page-blog-m33win-top-games-2024__hero-section {
    padding-top: 10px !important;
  }

  /* Buttons in mobile */
  .page-blog-m33win-top-games-2024__cta-button,
  .page-blog-m33win-top-games-2024__btn-primary,
  .page-blog-m33win-top-games-2024__btn-secondary,
  .page-blog-m33win-top-games-2024 a[class*="button"],
  .page-blog-m33win-top-games-2024 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-blog-m33win-top-games-2024__button-group {
    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;
  }
}