.page-blog-understanding-casino-bonuses {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Dark body background #0a0a0a, so light text */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

/* Hero Section */
.page-blog-understanding-casino-bonuses__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0a0a0a; /* Match body background */
  text-align: center;
}

.page-blog-understanding-casino-bonuses__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 30px; /* Space between image and content */
}

.page-blog-understanding-casino-bonuses__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-understanding-casino-bonuses__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-understanding-casino-bonuses__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 700;
  color: #26A9E0; /* Brand color for title */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-blog-understanding-casino-bonuses__intro-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #f0f0f0; /* Slightly off-white for body text */
}

/* CTA Button - Primary */
.page-blog-understanding-casino-bonuses__cta-button.page-blog-understanding-casino-bonuses__btn-primary {
  display: inline-block;
  background-color: #EA7C07; /* Login color for primary CTA */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
}

.page-blog-understanding-casino-bonuses__cta-button.page-blog-understanding-casino-bonuses__btn-primary:hover {
  background-color: #d46f06;
}

/* Content Area */
.page-blog-understanding-casino-bonuses__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #0a0a0a; /* Dark background for content sections */
  color: #ffffff; /* Light text for dark background */
}

.page-blog-understanding-casino-bonuses__section-title {
  font-size: 2.2rem;
  color: #26A9E0;
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.page-blog-understanding-casino-bonuses__sub-title {
  font-size: 1.7rem;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 500;
}

.page-blog-understanding-casino-bonuses p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-blog-understanding-casino-bonuses a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-understanding-casino-bonuses a:hover {
  color: #3cb4f0;
  text-decoration: underline;
}

/* Card Grid */
.page-blog-understanding-casino-bonuses__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-understanding-casino-bonuses__card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark background */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.page-blog-understanding-casino-bonuses__card:hover {
  transform: translateY(-5px);
}

.page-blog-understanding-casino-bonuses__card-image {
  width: 100%; /* Occupy card width */
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
  min-width: 200px; /* Enforce min-size */
  min-height: 200px; /* Enforce min-size */
}

.page-blog-understanding-casino-bonuses__card-title {
  font-size: 1.4rem;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

/* List Styles */
.page-blog-understanding-casino-bonuses__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-blog-understanding-casino-bonuses__list-item {
  margin-bottom: 10px;
}

.page-blog-understanding-casino-bonuses__list-item b {
  color: #26A9E0;
}

/* CTA Section */
.page-blog-understanding-casino-bonuses__cta-section {
  background-color: #1a1a1a; /* Slightly lighter dark background */
  border-radius: 8px;
  padding: 40px;
  margin-top: 60px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-understanding-casino-bonuses__cta-title {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-blog-understanding-casino-bonuses__cta-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}