/* style/blog-2024-latest-slot-promotions.css */

/* Base styles for the page content */
.page-blog-2024-latest-slot-promotions {
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.page-blog-2024-latest-slot-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  background-color: #0D0E12;
}

.page-blog-2024-latest-slot-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Ensure image wrapper doesn't exceed common large desktop width */
  margin-bottom: 30px;
  overflow: hidden;
}

.page-blog-2024-latest-slot-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-blog-2024-latest-slot-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-2024-latest-slot-promotions__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFB04D; /* Glow */
  text-shadow: 0 0 10px rgba(255, 176, 77, 0.5);
}

.page-blog-2024-latest-slot-promotions__intro-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #FFF3E6;
}

/* Content Area */
.page-blog-2024-latest-slot-promotions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #0D0E12;
}

.page-blog-2024-latest-slot-promotions__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 25px;
  color: #FFA53A; /* Auxiliary color */
  text-align: center;
  position: relative;
}

.page-blog-2024-latest-slot-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFA53A, #FF8C1A);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-blog-2024-latest-slot-promotions p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #FFF3E6;
}

/* Feature List */
.page-blog-2024-latest-slot-promotions__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-2024-latest-slot-promotions__feature-card {
  background-color: #17191F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #A84F0C; /* Border */
}

.page-blog-2024-latest-slot-promotions__feature-title {
  font-size: 1.5rem;
  color: #FF8C1A; /* Primary color */
  margin-bottom: 15px;
}

/* Promo Types */
.page-blog-2024-latest-slot-promotions__promo-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-2024-latest-slot-promotions__promo-card {
  background-color: #17191F; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-blog-2024-latest-slot-promotions__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-2024-latest-slot-promotions__promo-title {
  font-size: 1.6rem;
  color: #FFB04D; /* Glow */
  margin-bottom: 15px;
}

.page-blog-2024-latest-slot-promotions__promo-card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  margin-bottom: 20px;
  text-align: left;
}

.page-blog-2024-latest-slot-promotions__promo-card ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
  color: #FFF3E6;
}

.page-blog-2024-latest-slot-promotions__promo-card ul li::before {
  content: '⚡'; /* Unicode lightning bolt */
  position: absolute;
  left: 0;
  color: #FF8C1A;
}

/* Platform List */
.page-blog-2024-latest-slot-promotions__platform-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-2024-latest-slot-promotions__platform-card {
  background-color: #17191F; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C; /* Border */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-2024-latest-slot-promotions__platform-logo {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-blog-2024-latest-slot-promotions__platform-name {
  font-size: 1.4rem;
  color: #FF8C1A; /* Primary color */
  margin-bottom: 10px;
}

/* Guide List */
.page-blog-2024-latest-slot-promotions__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 40px;
}

.page-blog-2024-latest-slot-promotions__guide-list li {
  background-color: #17191F; /* Card BG */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid #FFA53A;
  font-size: 1.1rem;
  color: #FFF3E6;
}

/* Terms List */
.page-blog-2024-latest-slot-promotions__terms-list {
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-2024-latest-slot-promotions__term-item {
  background-color: #17191F; /* Card BG */
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid #A84F0C; /* Border */
}

.page-blog-2024-latest-slot-promotions__term-title {
  font-size: 1.3rem;
  color: #FF8C1A; /* Primary color */
  margin-bottom: 10px;
}

/* FAQ Section */
.page-blog-2024-latest-slot-promotions__faq-list {
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-2024-latest-slot-promotions__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-2024-latest-slot-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFB04D; /* Glow */
  cursor: pointer;
  background-color: #17191F;
  transition: background-color 0.3s ease;
}

.page-blog-2024-latest-slot-promotions__faq-question:hover {
  background-color: rgba(255, 139, 26, 0.1);
}

.page-blog-2024-latest-slot-promotions__faq-question::-webkit-details-marker, /* Hide default marker for Chrome */
.page-blog-2024-latest-slot-promotions__faq-item summary::marker { /* Hide default marker for Firefox */
  display: none;
}

.page-blog-2024-latest-slot-promotions__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #FF8C1A;
  margin-left: 15px;
  pointer-events: none; /* Ensure click on summary expands, not just on + */
}

.page-blog-2024-latest-slot-promotions__faq-item[open] .page-blog-2024-latest-slot-promotions__faq-toggle {
  content: '−';
}

.page-blog-2024-latest-slot-promotions__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1.05rem;
  color: #FFF3E6;
  background-color: #0D0E12;
}

/* Conclusion CTA */
.page-blog-2024-latest-slot-promotions__conclusion-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 60px;
}

/* Buttons */
.page-blog-2024-latest-slot-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-2024-latest-slot-promotions__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 139, 26, 0.4);
}

.page-blog-2024-latest-slot-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #FF8C1A 0%, #FFA53A 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 139, 26, 0.6);
}

.page-blog-2024-latest-slot-promotions__btn-secondary {
  background: transparent;
  color: #FF8C1A;
  border: 2px solid #FF8C1A;
  box-shadow: 0 4px 10px rgba(255, 139, 26, 0.2);
}

.page-blog-2024-latest-slot-promotions__btn-secondary:hover {
  background-color: #FF8C1A;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 139, 26, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-2024-latest-slot-promotions__hero-section {
    padding: 40px 15px;
  }

  .page-blog-2024-latest-slot-promotions__main-title {
    font-size: 2.8rem;
  }

  .page-blog-2024-latest-slot-promotions__intro-text {
    font-size: 1.1rem;
  }

  .page-blog-2024-latest-slot-promotions__content-area {
    padding: 30px 15px;
  }

  .page-blog-2024-latest-slot-promotions__section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .page-blog-2024-latest-slot-promotions__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }

  .page-blog-2024-latest-slot-promotions__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-blog-2024-latest-slot-promotions__main-title {
    font-size: 2.2rem;
  }

  .page-blog-2024-latest-slot-promotions__intro-text {
    font-size: 1rem;
  }

  .page-blog-2024-latest-slot-promotions__section-title {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-2024-latest-slot-promotions p {
    font-size: 1rem;
  }

  /* Mobile image responsiveness */
  .page-blog-2024-latest-slot-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-2024-latest-slot-promotions__hero-image-wrapper,
  .page-blog-2024-latest-slot-promotions__promo-card,
  .page-blog-2024-latest-slot-promotions__platform-card,
  .page-blog-2024-latest-slot-promotions__feature-card,
  .page-blog-2024-latest-slot-promotions__content-area,
  .page-blog-2024-latest-slot-promotions__conclusion-cta,
  .page-blog-2024-latest-slot-promotions__faq-list,
  .page-blog-2024-latest-slot-promotions__terms-list,
  .page-blog-2024-latest-slot-promotions__guide-list,
  .page-blog-2024-latest-slot-promotions__platform-list,
  .page-blog-2024-latest-slot-promotions__promo-types,
  .page-blog-2024-latest-slot-promotions__feature-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Mobile button responsiveness */
  .page-blog-2024-latest-slot-promotions__cta-button,
  .page-blog-2024-latest-slot-promotions__btn-primary,
  .page-blog-2024-latest-slot-promotions__btn-secondary,
  .page-blog-2024-latest-slot-promotions a[class*="button"],
  .page-blog-2024-latest-slot-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: 12px 20px !important;
    font-size: 1rem !important;
  }
  
  .page-blog-2024-latest-slot-promotions__conclusion-cta {
    flex-direction: column !important;
    gap: 15px !important;
  }

  .page-blog-2024-latest-slot-promotions__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

  .page-blog-2024-latest-slot-promotions__faq-answer {
    font-size: 0.95rem;
    padding: 10px 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-2024-latest-slot-promotions__main-title {
    font-size: 1.8rem;
  }

  .page-blog-2024-latest-slot-promotions__section-title {
    font-size: 1.6rem;
  }

  .page-blog-2024-latest-slot-promotions__feature-title,
  .page-blog-2024-latest-slot-promotions__promo-title,
  .page-blog-2024-latest-slot-promotions__platform-name {
    font-size: 1.3rem;
  }
}