/* style/blog-latest-online-betting-promotions.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-blog-latest-online-betting-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for the main content area */
  background-color: var(--background-color); /* Matches body background */
}

.page-blog-latest-online-betting-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding as body handles header offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
  background-color: var(--deep-green);
}

.page-blog-latest-online-betting-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-blog-latest-online-betting-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-latest-online-betting-promotions__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-latest-online-betting-promotions__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-blog-latest-online-betting-promotions__hero-description {
  font-size: 1.2em;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-latest-online-betting-promotions__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-latest-online-betting-promotions__btn-primary,
.page-blog-latest-online-betting-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-latest-online-betting-promotions__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-online-betting-promotions__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-latest-online-betting-promotions__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-latest-online-betting-promotions__btn-secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.page-blog-latest-online-betting-promotions__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-blog-latest-online-betting-promotions__btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-blog-latest-online-betting-promotions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background-color); /* Explicitly set for content area */
  color: var(--text-main); /* Ensure contrast */
}

.page-blog-latest-online-betting-promotions__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  margin-top: 50px;
  font-weight: 700;
}

.page-blog-latest-online-betting-promotions__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-blog-latest-online-betting-promotions__highlight-text {
  color: var(--gold-color);
  font-weight: bold;
}

.page-blog-latest-online-betting-promotions__inline-link {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-blog-latest-online-betting-promotions__inline-link:hover {
  color: var(--glow-color);
}

.page-blog-latest-online-betting-promotions__promo-grid,
.page-blog-latest-online-betting-promotions__steps-grid,
.page-blog-latest-online-betting-promotions__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-latest-online-betting-promotions__promo-card,
.page-blog-latest-online-betting-promotions__step-card,
.page-blog-latest-online-betting-promotions__feature-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border-color);
}

.page-blog-latest-online-betting-promotions__promo-card-image,
.page-blog-latest-online-betting-promotions__feature-icon {
  width: 100%; /* Ensure images take full width of card */
  max-width: 400px; /* Max width for smaller display images */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-latest-online-betting-promotions__promo-card-title,
.page-blog-latest-online-betting-promotions__step-title,
.page-blog-latest-online-betting-promotions__feature-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-latest-online-betting-promotions__promo-card-text,
.page-blog-latest-online-betting-promotions__step-text,
.page-blog-latest-online-betting-promotions__feature-text {
  font-size: 1em;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-latest-online-betting-promotions__step-number {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--gold-color);
  background-color: var(--deep-green);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 2px solid var(--glow-color);
}

.page-blog-latest-online-betting-promotions__checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-blog-latest-online-betting-promotions__checklist-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  color: var(--text-main);
  font-size: 1em;
}

.page-blog-latest-online-betting-promotions__checklist-item::before {
  content: '✔';
  color: var(--secondary-color);
  margin-right: 10px;
  font-weight: bold;
  font-size: 1.2em;
}

.page-blog-latest-online-betting-promotions__faq-list {
  margin-top: 40px;
}

.page-blog-latest-online-betting-promotions__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-blog-latest-online-betting-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--primary-color);
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-latest-online-betting-promotions__faq-question:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.page-blog-latest-online-betting-promotions__faq-question:hover .page-blog-latest-online-betting-promotions__faq-toggle {
  color: #ffffff;
}

.page-blog-latest-online-betting-promotions__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--secondary-color);
  margin-left: 15px;
  transition: transform 0.3s ease;
}