/* style/blog-free-spins-vs-deposit-bonuses.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-color: #C30808;
  --login-button-color: #C30808;
  --background-color: #FFFFFF;
  --register-login-font-color: #FFFF00;
  --dark-background-text-color: #ffffff;
  --light-background-text-color: #333333;
  --body-background-color: #121212; /* From shared.css */
}

.page-blog-free-spins-vs-deposit-bonuses {
  color: var(--dark-background-text-color); /* Body background is dark (#121212), so text is light */
  background-color: var(--body-background-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-free-spins-vs-deposit-bonuses__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-free-spins-vs-deposit-bonuses__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.page-blog-free-spins-vs-deposit-bonuses__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog-free-spins-vs-deposit-bonuses__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
  color: var(--dark-background-text-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-free-spins-vs-deposit-bonuses__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  max-width: 100%;
}

.page-blog-free-spins-vs-deposit-bonuses__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 100%;
}

.page-blog-free-spins-vs-deposit-bonuses__btn-primary {
  background-color: var(--register-button-color); /* Custom color for register */
  color: var(--register-login-font-color); /* Custom font color for register/login */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
  display: inline-block;
  text-align: center;
}

.page-blog-free-spins-vs-deposit-bonuses__btn-primary:hover {
  background-color: #a30606;
}

.page-blog-free-spins-vs-deposit-bonuses__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--secondary-color); /* Light background for content */
  color: var(--light-background-text-color); /* Dark text on light background */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px; /* Overlap with hero for visual flow */
  position: relative;
  z-index: 3;
}

.page-blog-free-spins-vs-deposit-bonuses__article {
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-free-spins-vs-deposit-bonuses__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-blog-free-spins-vs-deposit-bonuses__sub-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-free-spins-vs-deposit-bonuses__paragraph {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1.05em;
}

.page-blog-free-spins-vs-deposit-bonuses__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-blog-free-spins-vs-deposit-bonuses__list-item {
  margin-bottom: 10px;
}

.page-blog-free-spins-vs-deposit-bonuses__image-wrapper {
  margin: 30px 0;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-free-spins-vs-deposit-bonuses__image-content {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure it behaves as a block element */
  margin: 0 auto;
}

.page-blog-free-spins-vs-deposit-bonuses__table-wrapper {
  overflow-x: auto;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-free-spins-vs-deposit-bonuses__comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px; /* Ensure table is readable on smaller screens */
}

.page-blog-free-spins-vs-deposit-bonuses__comparison-table th,
.page-blog-free-spins-vs-deposit-bonuses__comparison-table td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: left;
}

.page-blog-free-spins-vs-deposit-bonuses__comparison-table th {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-weight: bold;
}

.page-blog-free-spins-vs-deposit-bonuses__comparison-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.page-blog-free-spins-vs-deposit-bonuses__comparison-table tr:hover {
  background-color: #f1f1f1;
}

.page-blog-free-spins-vs-deposit-bonuses__btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 2px solid var(--primary-color);
  display: inline-block;
  margin-top: 20px;
  text-align: center;
}

.page-blog-free-spins-vs-deposit-bonuses__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-blog-free-spins-vs-deposit-bonuses__faq-list {
  margin-top: 30px;
}

.page-blog-free-spins-vs-deposit-bonuses__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--light-background-text-color);
}

.page-blog-free-spins-vs-deposit-bonuses__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--primary-color);
  user-select: none;
  list-style: none;
}

.page-blog-free-spins-vs-deposit-bonuses__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-free-spins-vs-deposit-bonuses__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-free-spins-vs-deposit-bonuses__faq-item[open] .page-blog-free-spins-vs-deposit-bonuses__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-free-spins-vs-deposit-bonuses__faq-answer {
  padding: 0 20px 15px;
  font-size: 1em;
  color: var(--light-background-text-color);
}

.page-blog-free-spins-vs-deposit-bonuses__faq-answer p {
  margin-bottom: 0;
}

.page-blog-free-spins-vs-deposit-bonuses__cta-bottom {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-free-spins-vs-deposit-bonuses__content-area {
    margin-top: -30px;
  }
}

@media (max-width: 768px) {
  .page-blog-free-spins-vs-deposit-bonuses {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-free-spins-vs-deposit-bonuses__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-free-spins-vs-deposit-bonuses__hero-content {
    padding: 20px;
  }

  .page-blog-free-spins-vs-deposit-bonuses__main-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-blog-free-spins-vs-deposit-bonuses__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-free-spins-vs-deposit-bonuses__btn-primary,
  .page-blog-free-spins-vs-deposit-bonuses__btn-secondary,
  .page-blog-free-spins-vs-deposit-bonuses a[class*="button"],
  .page-blog-free-spins-vs-deposit-bonuses 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-free-spins-vs-deposit-bonuses__cta-buttons,
  .page-blog-free-spins-vs-deposit-bonuses__button-group,
  .page-blog-free-spins-vs-deposit-bonuses__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-free-spins-vs-deposit-bonuses__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  .page-blog-free-spins-vs-deposit-bonuses__content-area {
    padding: 30px 15px;
    margin-top: -30px;
  }

  .page-blog-free-spins-vs-deposit-bonuses__section-title {
    font-size: 1.8em;
  }

  .page-blog-free-spins-vs-deposit-bonuses__sub-title {
    font-size: 1.4em;
  }

  .page-blog-free-spins-vs-deposit-bonuses__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-free-spins-vs-deposit-bonuses__image-wrapper,
  .page-blog-free-spins-vs-deposit-bonuses__table-wrapper,
  .page-blog-free-spins-vs-deposit-bonuses__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden !important;
  }

  .page-blog-free-spins-vs-deposit-bonuses__comparison-table {
    min-width: unset;
    width: 100%;
  }
}

/* Ensure images within content area are at least 200px wide for desktop */
.page-blog-free-spins-vs-deposit-bonuses__content-area img {
    min-width: 200px;
    min-height: 200px;
}

/* Contrast Fixes */
.page-blog-free-spins-vs-deposit-bonuses__dark-bg {
  color: var(--dark-background-text-color); /* Deep background requires light text */
}

.page-blog-free-spins-vs-deposit-bonuses__light-bg {
  color: var(--light-background-text-color); /* Light background requires dark text */
}

.page-blog-free-spins-vs-deposit-bonuses__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid #e0e0e0;
}

.page-blog-free-spins-vs-deposit-bonuses__faq-answer {
  color: var(--light-background-text-color);
}