/* style/blog-deep-dive-spintime.css */

/* Root variables for colors */
:root {
  --spintime-primary: #F2C14E;
  --spintime-secondary: #FFD36B;
  --spintime-card-bg: #111111;
  --spintime-bg: #0A0A0A;
  --spintime-text-main: #FFF6D6;
  --spintime-border: #3A2A12;
  --spintime-glow: #FFD36B;
  --spintime-btn-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-blog-deep-dive-spintime {
  background-color: var(--spintime-bg); /* Inherited from body, but ensures consistency */
  color: var(--spintime-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.page-blog-deep-dive-spintime__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
  background-color: var(--spintime-bg);
}

.page-blog-deep-dive-spintime__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-deep-dive-spintime__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-deep-dive-spintime__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  position: relative; /* Ensure content is above image if any overlap */
  z-index: 10;
  color: var(--spintime-text-main);
}

.page-blog-deep-dive-spintime__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--spintime-secondary);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-blog-deep-dive-spintime__hero-description {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #FFF6D6; /* Text Main */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-deep-dive-spintime__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-deep-dive-spintime__cta-buttons--centered {
  margin-top: 40px;
}

.page-blog-deep-dive-spintime__btn-primary,
.page-blog-deep-dive-spintime__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-deep-dive-spintime__btn-primary {
  background: var(--spintime-btn-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-deep-dive-spintime__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-blog-deep-dive-spintime__btn-secondary {
  background: transparent;
  color: var(--spintime-secondary);
  border: 2px solid var(--spintime-secondary);
}

.page-blog-deep-dive-spintime__btn-secondary:hover {
  background: var(--spintime-secondary);
  color: var(--spintime-bg);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.2);
}

.page-blog-deep-dive-spintime__content-section {
  padding: 60px 20px;
  background-color: var(--spintime-bg);
  color: var(--spintime-text-main);
}

.page-blog-deep-dive-spintime__dark-section {
  background-color: var(--spintime-card-bg);
}

.page-blog-deep-dive-spintime__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-deep-dive-spintime__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--spintime-secondary);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.page-blog-deep-dive-spintime__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--spintime-text-main);
  text-align: justify;
}

.page-blog-deep-dive-spintime__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px 0;
  border-radius: 10px;
  object-fit: cover;
}

.page-blog-deep-dive-spintime__game-categories,
.page-blog-deep-dive-spintime__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-deep-dive-spintime__card {
  background-color: var(--spintime-card-bg);
  border: 1px solid var(--spintime-border);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--spintime-text-main);
}

.page-blog-deep-dive-spintime__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-deep-dive-spintime__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-deep-dive-spintime__card-title {
  font-size: 1.5rem;
  color: var(--spintime-secondary);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-deep-dive-spintime__card-text {
  font-size: 1rem;
  color: var(--spintime-text-main);
  margin-bottom: 20px;
}

.page-blog-deep-dive-spintime__feature-grid,
.page-blog-deep-dive-spintime__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-deep-dive-spintime__feature-item {
  background-color: var(--spintime-card-bg);
  border: 1px solid var(--spintime-border);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--spintime-text-main);
}

.page-blog-deep-dive-spintime__feature-title {
  font-size: 1.6rem;
  color: var(--spintime-secondary);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-deep-dive-spintime__feature-text {
  font-size: 1rem;
  color: var(--spintime-text-main);
}

.page-blog-deep-dive-spintime__faq-list {
  margin-top: 40px;
}

.page-blog-deep-dive-spintime__faq-item {
  background-color: var(--spintime-card-bg);
  border: 1px solid var(--spintime-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-deep-dive-spintime__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #1a1a1a;
  color: var(--spintime-text-main);
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.page-blog-deep-dive-spintime__faq-question:hover {
  background-color: #2a2a2a;
}

.page-blog-deep-dive-spintime__faq-title {
  margin: 0;
  font-size: 1.1rem;
  color: var(--spintime-text-main);
}

.page-blog-deep-dive-spintime__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--spintime-secondary);
}

.page-blog-deep-dive-spintime__faq-item.active .page-blog-deep-dive-spintime__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-deep-dive-spintime__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--spintime-text-main);
}

.page-blog-deep-dive-spintime__faq-item.active .page-blog-deep-dive-spintime__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px;
}

.page-blog-deep-dive-spintime__faq-answer p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-deep-dive-spintime__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-deep-dive-spintime__hero-description {
    font-size: 1.1rem;
  }
  .page-blog-deep-dive-spintime__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-blog-deep-dive-spintime {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-deep-dive-spintime__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-deep-dive-spintime__hero-content {
    padding: 15px;
  }

  .page-blog-deep-dive-spintime__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-deep-dive-spintime__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-blog-deep-dive-spintime__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
  }
  
  .page-blog-deep-dive-spintime__btn-primary,
  .page-blog-deep-dive-spintime__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-deep-dive-spintime__content-section {
    padding: 40px 15px;
  }

  .page-blog-deep-dive-spintime__container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog-deep-dive-spintime__paragraph {
    font-size: 0.95rem;
  }

  .page-blog-deep-dive-spintime__card,
  .page-blog-deep-dive-spintime__feature-item {
    padding: 20px;
  }

  .page-blog-deep-dive-spintime__card-title,
  .page-blog-deep-dive-spintime__feature-title {
    font-size: 1.3rem;
  }

  .page-blog-deep-dive-spintime__card-image {
    height: 200px;
  }

  .page-blog-deep-dive-spintime__game-categories,
  .page-blog-deep-dive-spintime__promo-grid,
  .page-blog-deep-dive-spintime__feature-grid,
  .page-blog-deep-dive-spintime__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-deep-dive-spintime__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-deep-dive-spintime__faq-title {
    font-size: 1rem;
  }

  .page-blog-deep-dive-spintime__faq-toggle {
    font-size: 1.5rem;
  }
  
  /* Mobile image and video responsive styles */
  .page-blog-deep-dive-spintime img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-deep-dive-spintime__section,
  .page-blog-deep-dive-spintime__card,
  .page-blog-deep-dive-spintime__container,
  .page-blog-deep-dive-spintime__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-deep-dive-spintime__hero-section {
    padding-top: 10px !important;
  }
}