/* style/blog-666win-official-site-2024-deep-dive.css */

/* Base styles */
.page-blog-666win-official-site-2024-deep-dive {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #08160F; /* Custom Background */
  color: #F2FFF6; /* Custom Text Main */
}

.page-blog-666win-official-site-2024-deep-dive__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-666win-official-site-2024-deep-dive__section {
  padding: 80px 0;
}

.page-blog-666win-official-site-2024-deep-dive__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #F2C14E; /* Custom Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.page-blog-666win-official-site-2024-deep-dive__section-description {
  font-size: 1.125rem;
  color: #A7D9B8; /* Custom Text Secondary */
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-666win-official-site-2024-deep-dive__sub-title {
  font-size: 1.75rem;
  color: #F2FFF6; /* Custom Text Main */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-666win-official-site-2024-deep-dive__content-area {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-666win-official-site-2024-deep-dive__content-area p {
  color: #F2FFF6; /* Custom Text Main */
  margin-bottom: 15px;
}

.page-blog-666win-official-site-2024-deep-dive__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 30px auto;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-blog-666win-official-site-2024-deep-dive__center-cta {
  text-align: center;
  margin-top: 40px;
}

/* Hero Section */
.page-blog-666win-official-site-2024-deep-dive__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* body already handles --header-offset */
  background: #08160F; /* Custom Background */
}

.page-blog-666win-official-site-2024-deep-dive__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 40px;
}

.page-blog-666win-official-site-2024-deep-dive__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-666win-official-site-2024-deep-dive__hero-content {
  max-width: 800px;
}

.page-blog-666win-official-site-2024-deep-dive__main-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #F2C14E; /* Custom Gold */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-666win-official-site-2024-deep-dive__hero-description {
  font-size: 1.125rem;
  color: #A7D9B8; /* Custom Text Secondary */
  margin-bottom: 40px;
}

.page-blog-666win-official-site-2024-deep-dive__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Buttons */
.page-blog-666win-official-site-2024-deep-dive__btn-primary,
.page-blog-666win-official-site-2024-deep-dive__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-666win-official-site-2024-deep-dive__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom Button */
  color: #F2FFF6; /* Custom Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-666win-official-site-2024-deep-dive__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-blog-666win-official-site-2024-deep-dive__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Custom Gold */
  border: 2px solid #F2C14E; /* Custom Gold */
}

.page-blog-666win-official-site-2024-deep-dive__btn-secondary:hover {
  background: #F2C14E;
  color: #08160F;
}

/* Game Grid Section */
.page-blog-666win-official-site-2024-deep-dive__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-666win-official-site-2024-deep-dive__card {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-666win-official-site-2024-deep-dive__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-666win-official-site-2024-deep-dive__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-666win-official-site-2024-deep-dive__card-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Custom Text Main */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-666win-official-site-2024-deep-dive__card-text {
  color: #A7D9B8; /* Custom Text Secondary */
  margin-bottom: 20px;
}

/* Promotions Section */
.page-blog-666win-official-site-2024-deep-dive__promo-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  color: #F2FFF6; /* Custom Text Main */
}

.page-blog-666win-official-site-2024-deep-dive__promo-list li {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom Border */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1.1rem;
  color: #F2FFF6;
}

.page-blog-666win-official-site-2024-deep-dive__promo-list li strong {
  color: #F2C14E; /* Custom Gold */
}

/* Guide Section */
.page-blog-666win-official-site-2024-deep-dive__guide-list {
  list-style: decimal;
  padding-left: 25px;
  margin-top: 20px;
  margin-bottom: 30px;
  color: #F2FFF6; /* Custom Text Main */
}

.page-blog-666win-official-site-2024-deep-dive__guide-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #A7D9B8; /* Custom Text Secondary */
}

.page-blog-666win-official-site-2024-deep-dive__guide-list li strong {
  color: #F2FFF6;
}

/* FAQ Section */
.page-blog-666win-official-site-2024-deep-dive__faq-list {
  margin-top: 40px;
}

.page-blog-666win-official-site-2024-deep-dive__faq-item {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-666win-official-site-2024-deep-dive__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #F2FFF6; /* Custom Text Main */
  font-weight: 600;
  font-size: 1.15rem;
}

.page-blog-666win-official-site-2024-deep-dive__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #F2C14E; /* Custom Gold */
  margin-left: 15px;
}

.page-blog-666win-official-site-2024-deep-dive__faq-answer {
  padding: 0 20px 20px;
  color: #A7D9B8; /* Custom Text Secondary */
  max-height: 0;
  transition: max-height 0.3s ease-out;
  overflow: hidden;
}

.page-blog-666win-official-site-2024-deep-dive__faq-item[open] .page-blog-666win-official-site-2024-deep-dive__faq-answer {
  max-height: 500px; /* Adjust as needed */
  transition: max-height 0.5s ease-in;
}

.page-blog-666win-official-site-2024-deep-dive__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-666win-official-site-2024-deep-dive__faq-item summary {
  list-style: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-blog-666win-official-site-2024-deep-dive__section {
    padding: 40px 0;
  }

  .page-blog-666win-official-site-2024-deep-dive__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-blog-666win-official-site-2024-deep-dive__main-title {
    font-size: clamp(2rem, 8vw, 3rem) !important;
  }

  .page-blog-666win-official-site-2024-deep-dive__hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-blog-666win-official-site-2024-deep-dive__cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .page-blog-666win-official-site-2024-deep-dive__btn-primary,
  .page-blog-666win-official-site-2024-deep-dive__btn-secondary,
  .page-blog-666win-official-site-2024-deep-dive a[class*="button"],
  .page-blog-666win-official-site-2024-deep-dive 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-666win-official-site-2024-deep-dive__cta-buttons,
  .page-blog-666win-official-site-2024-deep-dive__button-group,
  .page-blog-666win-official-site-2024-deep-dive__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-blog-666win-official-site-2024-deep-dive img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-666win-official-site-2024-deep-dive__section,
  .page-blog-666win-official-site-2024-deep-dive__card,
  .page-blog-666win-official-site-2024-deep-dive__container,
  .page-blog-666win-official-site-2024-deep-dive__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }

  .page-blog-666win-official-site-2024-deep-dive__card-image {
    height: auto; /* Allow height to adjust on mobile */
  }

  .page-blog-666win-official-site-2024-deep-dive__section-title {
    margin-bottom: 20px;
  }

  .page-blog-666win-official-site-2024-deep-dive__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
}