/* style/blog-90ok-promotions-and-bonuses.css */

:root {
  --color-primary: #017439;
  --color-secondary: #FFFFFF;
  --color-register: #C30808;
  --color-login: #C30808;
  --color-background: #000000; /* Body background from shared.css */
  --color-text-light: #FFFFFF;
  --color-text-dark: #333333;
  --color-font-register-login: #FFFF00;
}

.page-blog-90ok-promotions-and-bonuses {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-text-light); /* Default text color for dark body background */
  background-color: var(--color-background);
}

.page-blog-90ok-promotions-and-bonuses__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-blog-90ok-promotions-and-bonuses__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-blog-90ok-promotions-and-bonuses__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog-90ok-promotions-and-bonuses__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
  margin-top: 100px; /* Adjust as needed to not overlap image */
}

.page-blog-90ok-promotions-and-bonuses__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-text-light);
  line-height: 1.2;
}

.page-blog-90ok-promotions-and-bonuses__hero-description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  margin-bottom: 30px;
  color: var(--color-text-light);
}

.page-blog-90ok-promotions-and-bonuses__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-90ok-promotions-and-bonuses__btn-primary,
.page-blog-90ok-promotions-and-bonuses__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-90ok-promotions-and-bonuses__btn-primary {
  background-color: var(--color-register); /* Custom color for register/login */
  color: var(--color-font-register-login); /* Custom font color for register/login */
  border: 2px solid var(--color-register);
}

.page-blog-90ok-promotions-and-bonuses__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-blog-90ok-promotions-and-bonuses__btn-secondary {
  background-color: transparent;
  color: var(--color-text-light);
  border: 2px solid var(--color-primary);
}

.page-blog-90ok-promotions-and-bonuses__btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.page-blog-90ok-promotions-and-bonuses__btn-large {
  padding: 15px 40px;
  font-size: 1.1em;
}

.page-blog-90ok-promotions-and-bonuses__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #1a1a1a; /* Slightly lighter dark background for content */
  color: var(--color-text-light);
  border-radius: 8px;
  margin-top: -40px; /* Pull content up slightly */
  position: relative;
  z-index: 2;
}

.page-blog-90ok-promotions-and-bonuses__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-90ok-promotions-and-bonuses__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--color-text-light);
}

.page-blog-90ok-promotions-and-bonuses__paragraph strong {
  color: var(--color-primary);
}

.page-blog-90ok-promotions-and-bonuses__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-90ok-promotions-and-bonuses__card {
  background-color: rgba(255, 255, 255, 0.08); /* Dark background for cards */
  border-radius: 10px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  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(--color-text-light);
  height: 100%; /* Ensure cards have equal height */
}

.page-blog-90ok-promotions-and-bonuses__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-90ok-promotions-and-bonuses__card-image {
  width: 100%;
  max-width: 100%;
  height: 200px; /* Fixed height for consistent card image display */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-90ok-promotions-and-bonuses__card-title {
  font-size: 1.6em;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.page-blog-90ok-promotions-and-bonuses__card-text {
  font-size: 1em;
  color: var(--color-text-light);
  margin-bottom: 25px;
  flex-grow: 1; /* Allow text to grow and push button to bottom */
}

.page-blog-90ok-promotions-and-bonuses__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-90ok-promotions-and-bonuses__step-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter dark background */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--color-text-light);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-blog-90ok-promotions-and-bonuses__step-title {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.page-blog-90ok-promotions-and-bonuses__step-text {
  font-size: 0.95em;
  color: var(--color-text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-90ok-promotions-and-bonuses__reason-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-90ok-promotions-and-bonuses__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid var(--color-primary);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.05em;
  color: var(--color-text-light);
}

.page-blog-90ok-promotions-and-bonuses__list-item strong {
  color: var(--color-primary);
}

.page-blog-90ok-promotions-and-bonuses__faq-container {
  margin-top: 40px;
}