/* style/blog-how-to-get-free-spins-ultimate-guide.css */
:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --card-bg: #17191F;
  --background-color: #0D0E12;
  --text-main-color: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange-color: #D96800;
  --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
}

.page-blog-how-to-get-free-spins-ultimate-guide {
  font-family: Arial, sans-serif;
  color: var(--text-main-color); /* Default text color for dark body background */
  background-color: var(--background-color); /* Ensure consistency with body background */
  line-height: 1.6;
}

.page-blog-how-to-get-free-spins-ultimate-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background-color: var(--background-color);
}

.page-blog-how-to-get-free-spins-ultimate-guide__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-blog-how-to-get-free-spins-ultimate-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Minimum size requirement */
}

.page-blog-how-to-get-free-spins-ultimate-guide__hero-content-block {
  max-width: 900px;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.page-blog-how-to-get-free-spins-ultimate-guide__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--secondary-color);
  max-width: 90%;
  margin: 0 auto 15px auto;
}

.page-blog-how-to-get-free-spins-ultimate-guide__hero-description {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: var(--text-main-color);
}

.page-blog-how-to-get-free-spins-ultimate-guide__cta-button {
  display: inline-block;
  background: var(--button-gradient);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.page-blog-how-to-get-free-spins-ultimate-guide__cta-button:hover {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--deep-orange-color) 100%);
}

.page-blog-how-to-get-free-spins-ultimate-guide__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
}

.page-blog-how-to-get-free-spins-ultimate-guide__section {
  padding: 60px 20px;
  background-color: var(--background-color);
}

.page-blog-how-to-get-free-spins-ultimate-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-how-to-get-free-spins-ultimate-guide__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-how-to-get-free-spins-ultimate-guide__paragraph {
  font-size: 1em;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-blog-how-to-get-free-spins-ultimate-guide__paragraph .highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-blog-how-to-get-free-spins-ultimate-guide__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-how-to-get-free-spins-ultimate-guide__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main-color);
  min-height: 400px; /* Ensure sufficient card height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-blog-how-to-get-free-spins-ultimate-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-get-free-spins-ultimate-guide__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-blog-how-to-get-free-spins-ultimate-guide__card-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-how-to-get-free-spins-ultimate-guide__card-text {
  font-size: 0.95em;
  color: var(--text-main-color);
  flex-grow: 1;
}

.page-blog-how-to-get-free-spins-ultimate-guide__ordered-list,
.page-blog-how-to-get-free-spins-ultimate-guide__unordered-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-blog-how-to-get-free-spins-ultimate-guide__list-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: var(--text-main-color);
}

.page-blog-how-to-get-free-spins-ultimate-guide__list-title {
  font-size: 1.2em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-how-to-get-free-spins-ultimate-guide__list-text {
  font-size: 0.95em;
  color: var(--text-main-color);
}

.page-blog-how-to-get-free-spins-ultimate-guide__call-to-action {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-get-free-spins-ultimate-guide__cta-text {
    font-size: 1.3em;
    color: var(--text-main-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-blog-how-to-get-free-spins-ultimate-guide__faq-list {
  margin-top: 30px;
}

.page-blog-how-to-get-free-spins-ultimate-guide__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color);
}

.page-blog-how-to-get-free-spins-ultimate-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-blog-how-to-get-free-spins-ultimate-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-blog-how-to-get-free-spins-ultimate-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-blog-how-to-get-free-spins-ultimate-guide__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 0.95em;
  color: var(--text-main-color);
}

/* Details element specific styling */
.page-blog-how-to-get-free-spins-ultimate-guide__faq-item summary {
    list-style: none;
}

.page-blog-how-to-get-free-spins-ultimate-guide__faq-item summary::-webkit-details-marker {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-get-free-spins-ultimate-guide__hero-content-block {
    max-width: 700px;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__section-title {
    font-size: 1.8em;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__main-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-get-free-spins-ultimate-guide__hero-section {
    padding-bottom: 30px;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__hero-content-block {
    max-width: 95%;
    padding: 15px;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__main-title {
    font-size: 2em; /* Adjusted for mobile readability */
    margin-bottom: 10px;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__cta-button {
    padding: 10px 20px;
    font-size: 0.95em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__cta-button--large {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__section {
    padding: 40px 15px;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__section-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__paragraph {
    font-size: 0.95em;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__card {
    padding: 20px;
    min-height: auto;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__card-title {
    font-size: 1.2em;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__list-item {
    padding: 15px;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__list-title {
    font-size: 1.1em;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__call-to-action {
      padding: 20px;
      margin-top: 30px;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__cta-text {
      font-size: 1.1em;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__faq-answer {
    padding: 0 15px 15px 15px;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__video-section {
    padding-top: 10px !important;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__video-container,
  .page-blog-how-to-get-free-spins-ultimate-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide video,
  .page-blog-how-to-get-free-spins-ultimate-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-how-to-get-free-spins-ultimate-guide__cta-buttons a {
    width: 100% !important;
  }
}