/* Base Styles for page-blog-latest-promotions */
.page-blog-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
}

.page-blog-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-blog-latest-promotions__section {
  padding: 40px 0;
}

.page-blog-latest-promotions__section-title {
  font-size: 32px;
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 30px;
}

.page-blog-latest-promotions__sub-title {
  font-size: 24px;
  font-weight: 600;
  color: #1F2D3D; /* Text Main */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-latest-promotions__paragraph,
.page-blog-latest-promotions__list-item {
  font-size: 16px;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 10px;
}

.page-blog-latest-promotions__list,
.page-blog-latest-promotions__numbered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-blog-latest-promotions__numbered-list {
  list-style-type: decimal;
}

/* Hero Section */
.page-blog-latest-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 60px 0;
  overflow: hidden;
}

.page-blog-latest-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-blog-latest-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog-latest-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-blog-latest-promotions__main-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-blog-latest-promotions__intro-text {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* CTA Buttons */
.page-blog-latest-promotions__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-latest-promotions__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #ffffff;
  border: none;
}

.page-blog-latest-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
}

.page-blog-latest-promotions__btn-secondary {
  background: #ffffff; /* Card BG */
  color: #2F6BFF; /* Main color for text */
  border: 2px solid #2F6BFF;
}

.page-blog-latest-promotions__btn-secondary:hover {
  background: #f0f0f0;
  color: #2F6BFF;
  transform: translateY(-2px);
}

.page-blog-latest-promotions__inline-link {
  color: #2F6BFF; /* Main color */
  text-decoration: underline;
  font-weight: 600;
}

.page-blog-latest-promotions__inline-link:hover {
  color: #6FA3FF; /* Auxiliary color */
}

/* Promo Card Layout */
.page-blog-latest-promotions__promo-card {
  display: flex;
  background: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-blog-latest-promotions__promo-card-image {
  width: 50%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-blog-latest-promotions__promo-card-content {
  width: 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-blog-latest-promotions__promo-card--reverse {
  flex-direction: row-reverse;
}

/* Dark Section */
.page-blog-latest-promotions__dark-section {
  background: #2F6BFF; /* Main Color */
  color: #ffffff;
}

.page-blog-latest-promotions__dark-section .page-blog-latest-promotions__section-title,
.page-blog-latest-promotions__dark-section .page-blog-latest-promotions__sub-title,
.page-blog-latest-promotions__dark-section .page-blog-latest-promotions__paragraph,
.page-blog-latest-promotions__dark-section .page-blog-latest-promotions__list-item {
  color: #ffffff;
}

.page-blog-latest-promotions__dark-section .page-blog-latest-promotions__cta-button {
  background: #ffffff;
  color: #2F6BFF;
  border: none;
}

.page-blog-latest-promotions__dark-section .page-blog-latest-promotions__cta-button:hover {
  background: #f0f0f0;
  color: #2F6BFF;
}

/* FAQ Section */
details.page-blog-latest-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #D6E2FF; /* Border */
  overflow: hidden;
  background: #FFFFFF; /* Card BG */
}
details.page-blog-latest-promotions__faq-item summary.page-blog-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-blog-latest-promotions__faq-item summary.page-blog-latest-promotions__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-latest-promotions__faq-item summary.page-blog-latest-promotions__faq-question:hover {
  background: #f5f5f5;
}
.page-blog-latest-promotions__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #1F2D3D; /* Text Main */
}
.page-blog-latest-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-latest-promotions__faq-item .page-blog-latest-promotions__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #1F2D3D; /* Text Main */
}

/* General Image styles */
.page-blog-latest-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Homepage-specific CSS blocks (included as per strict instruction) --- */
/* These blocks are kept for compliance, though their elements might not be present on this inner page. */
@media (max-width: 1023px) {
  .page-blog-latest-promotions__home-hero {
    display: block !important;
    grid-template-columns: none !important;
    height: auto !important;
    max-height: none !important;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  .page-blog-latest-promotions__hero-brand,
  .page-blog-latest-promotions__hero-jackpot {
    display: none !important;
  }
  .page-blog-latest-promotions__game-trial {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    overflow: hidden !important;
    margin: 0 auto;
    padding: 0 0 12px !important;
    box-sizing: border-box;
  }
  .page-blog-latest-promotions__game-trial-shell {
    height: auto !important;
    max-height: none !important;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }
  .page-blog-latest-promotions__game-trial-topbar,
  .page-blog-latest-promotions__game-trial-bottombar {
    display: none !important;
  }
  .page-blog-latest-promotions__game-trial-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 1024 / 768;
    flex: none !important;
    min-height: 240px;
    max-height: none !important;
    overflow: hidden;
    box-sizing: border-box;
  }
  .page-blog-latest-promotions__game-trial-frame {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    max-width: 100%;
    border: none;
    z-index: 1;
    overflow: hidden;
  }
  .page-blog-latest-promotions__game-trial-overlay {
    z-index: 5 !important;
    pointer-events: auto !important;
  }
  .page-blog-latest-promotions__game-trial-start {
    z-index: 6 !important;
    pointer-events: auto !important;
    touch-action: manipulation;
  }
}

@media (min-width: 1024px) {
  .page-blog-latest-promotions__home-hero {
    display: grid;
    grid-template-columns: 26% 48% 26%;
    gap: 16px;
    align-items: stretch;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 16px 24px;
    box-sizing: border-box;
  }
  .page-blog-latest-promotions__hero-brand,
  .page-blog-latest-promotions__hero-jackpot,
  .page-blog-latest-promotions__game-trial {
    height: 300px;
    max-height: 300px;
    overflow: hidden;
    box-sizing: border-box;
  }
  .page-blog-latest-promotions__game-trial {
    max-width: none !important;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .page-blog-latest-promotions__game-trial-shell {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 300px;
    box-sizing: border-box;
  }
  .page-blog-latest-promotions__game-trial-viewport {
    flex: 1;
    min-height: 0;
    position: relative;
    width: 100%;
  }
  .page-blog-latest-promotions__game-trial-frame {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    border: none;
  }
  .page-blog-latest-promotions__hero-jackpot-claim {
    background: #c62828 !important;
    color: #fff !important;
  }
}

/* --- End Homepage-specific CSS blocks --- */

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .page-blog-latest-promotions {
    padding-top: 0; /* Adjust for mobile, body padding-top should handle header offset */
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-latest-promotions__hero-section {
    padding: 30px 0;
  }

  .page-blog-latest-promotions__hero-content {
    padding: 15px;
  }

  .page-blog-latest-promotions__main-title {
    font-size: 28px;
  }

  .page-blog-latest-promotions__intro-text {
    font-size: 16px;
  }

  .page-blog-latest-promotions__section-title {
    font-size: 26px;
  }

  .page-blog-latest-promotions__sub-title {
    font-size: 20px;
  }

  /* Image and Container Responsive */
  .page-blog-latest-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-latest-promotions__container,
  .page-blog-latest-promotions__section,
  .page-blog-latest-promotions__promo-card,
  .page-blog-latest-promotions__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden;
  }

  /* Promo Card Responsive */
  .page-blog-latest-promotions__promo-card {
    flex-direction: column;
  }

  .page-blog-latest-promotions__promo-card-image,
  .page-blog-latest-promotions__promo-card-content {
    width: 100%;
    padding: 20px;
  }

  .page-blog-latest-promotions__promo-card--reverse {
    flex-direction: column;
  }

  /* Button Responsive */
  .page-blog-latest-promotions__cta-button,
  .page-blog-latest-promotions__btn-primary,
  .page-blog-latest-promotions__btn-secondary,
  .page-blog-latest-promotions a[class*="button"],
  .page-blog-latest-promotions 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;
    margin-bottom: 10px; /* Add some space between stacked buttons */
  }

  .page-blog-latest-promotions__button-group,
  .page-blog-latest-promotions__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; /* Space between buttons if they wrap */
    display: flex; /* Ensure flex context for wrapping */
    flex-direction: column; /* Stack buttons vertically by default on mobile */
  }

  /* FAQ Responsive */
  details.page-blog-latest-promotions__faq-item summary.page-blog-latest-promotions__faq-question { padding: 15px; }
  .page-blog-latest-promotions__faq-qtext { font-size: 15px; }
  details.page-blog-latest-promotions__faq-item .page-blog-latest-promotions__faq-answer { padding: 0 15px 15px; }

  /* Homepage-specific elements for 768px, if they were present */
  /* As per instruction, these are included even if not present in HTML for this inner page. */
  .page-blog-latest-promotions__promo-strip-track {
    grid-template-columns: repeat(2, 1fr) !important; /* Example for a 2-column layout */
    overflow-x: hidden;
    gap: 15px;
  }
  .page-blog-latest-promotions__hot-games-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px;
  }
  .page-blog-latest-promotions__brand-intro {
    display: block !important;
    padding: 20px 15px;
  }
  .page-blog-latest-promotions__winner-ticker {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 10px 0;
    display: block;
  }
  body {
    padding-bottom: 50px; /* Example for ticker height */
  }
}

/* Common styles for game trial overlay/modal (if present, for compliance) */
.page-blog-latest-promotions__game-trial-overlay{
  z-index:5;
  pointer-events:auto;
}
.page-blog-latest-promotions__game-trial-overlay.is-hidden{
  display:none!important;
  pointer-events:none!important;
}
.page-blog-latest-promotions__game-trial-start{
  z-index:6;
  pointer-events:auto;
  touch-action:manipulation;
}
.page-blog-latest-promotions__game-trial-shell{
  border:1px solid rgba(212,175,55,.45);
  border-radius:10px;
  overflow:hidden;
}
.page-blog-latest-promotions__reward-modal{
  position:fixed;
  inset:0;
  z-index:10000;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.page-blog-latest-promotions__reward-modal:not([hidden]) {
  opacity: 1;
  visibility: visible;
}
.page-blog-latest-promotions__reward-modal-content {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.page-blog-latest-promotions__reward-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}