/* style/blog-okbet-latest-promotions-analysis.css */

:root {
  --okbet-primary-color: #F2C14E;
  --okbet-secondary-color: #FFD36B;
  --okbet-card-bg: #111111;
  --okbet-background: #0A0A0A;
  --okbet-text-main: #FFF6D6;
  --okbet-border: #3A2A12;
  --okbet-glow: #FFD36B;
  --okbet-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-blog-okbet-latest-promotions-analysis {
  font-family: Arial, sans-serif;
  color: var(--okbet-text-main); /* Default text color for the page */
  background-color: var(--okbet-background); /* Page background */
  line-height: 1.6;
}

.page-blog-okbet-latest-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 60px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-okbet-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.page-blog-okbet-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-blog-okbet-latest-promotions-analysis__hero-content {
  position: absolute;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 8px;
}

.page-blog-okbet-latest-promotions-analysis__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: var(--okbet-secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-okbet-latest-promotions-analysis__subtitle {
  font-size: 1.2em;
  color: var(--okbet-text-main);
  margin-bottom: 30px;
}

.page-blog-okbet-latest-promotions-analysis__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-okbet-latest-promotions-analysis__btn-primary,
.page-blog-okbet-latest-promotions-analysis__btn-secondary,
.page-blog-okbet-latest-promotions-analysis__card-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

.page-blog-okbet-latest-promotions-analysis__btn-primary {
  background: var(--okbet-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-blog-okbet-latest-promotions-analysis__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-blog-okbet-latest-promotions-analysis__btn-secondary {
  background: transparent;
  color: var(--okbet-secondary-color);
  border: 2px solid var(--okbet-secondary-color);
}

.page-blog-okbet-latest-promotions-analysis__btn-secondary:hover {
  background: var(--okbet-secondary-color);
  color: var(--okbet-background);
}

.page-blog-okbet-latest-promotions-analysis__content-section {
  padding: 60px 0;
  background-color: var(--okbet-background);
}

.page-blog-okbet-latest-promotions-analysis__dark-bg {
  background-color: var(--okbet-card-bg);
}

.page-blog-okbet-latest-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-okbet-latest-promotions-analysis__section-title {
  font-size: 2.5em;
  color: var(--okbet-primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-okbet-latest-promotions-analysis__paragraph {
  font-size: 1.1em;
  color: var(--okbet-text-main);
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-okbet-latest-promotions-analysis__promo-cards-grid,
.page-blog-okbet-latest-promotions-analysis__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-okbet-latest-promotions-analysis__promo-card,
.page-blog-okbet-latest-promotions-analysis__category-card {
  background-color: var(--okbet-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--okbet-border);
}

.page-blog-okbet-latest-promotions-analysis__promo-card:hover,
.page-blog-okbet-latest-promotions-analysis__category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-okbet-latest-promotions-analysis__card-image,
.page-blog-okbet-latest-promotions-analysis__category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--okbet-border);
}

.page-blog-okbet-latest-promotions-analysis__card-title,
.page-blog-okbet-latest-promotions-analysis__category-title {
  font-size: 1.5em;
  color: var(--okbet-primary-color);
  margin: 20px 15px 10px;
  line-height: 1.3;
}

.page-blog-okbet-latest-promotions-analysis__card-text,
.page-blog-okbet-latest-promotions-analysis__category-text {
  font-size: 1em;
  color: var(--okbet-text-main);
  padding: 0 15px 20px;
}

.page-blog-okbet-latest-promotions-analysis__card-button {
  margin-bottom: 20px;
  background: var(--okbet-button-gradient);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-blog-okbet-latest-promotions-analysis__card-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(255, 211, 107, 0.4);
}

.page-blog-okbet-latest-promotions-analysis__list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
}

.page-blog-okbet-latest-promotions-analysis__list-item {
  background-color: var(--okbet-card-bg);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid var(--okbet-primary-color);
}

.page-blog-okbet-latest-promotions-analysis__list-title {
  font-size: 1.4em;
  color: var(--okbet-primary-color);
  margin-bottom: 10px;
}

.page-blog-okbet-latest-promotions-analysis__list-text {
  font-size: 1em;
  color: var(--okbet-text-main);
}

.page-blog-okbet-latest-promotions-analysis__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-blog-okbet-latest-promotions-analysis__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-blog-okbet-latest-promotions-analysis__feature-item {
  background-color: var(--okbet-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--okbet-border);
}

.page-blog-okbet-latest-promotions-analysis__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px var(--okbet-glow));
}

.page-blog-okbet-latest-promotions-analysis__feature-title {
  font-size: 1.5em;
  color: var(--okbet-secondary-color);
  margin-bottom: 10px;
}

.page-blog-okbet-latest-promotions-analysis__feature-text {
  font-size: 1em;
  color: var(--okbet-text-main);
}

.page-blog-okbet-latest-promotions-analysis__app-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  background-color: var(--okbet-card-bg);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--okbet-border);
}

.page-blog-okbet-latest-promotions-analysis__app-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-blog-okbet-latest-promotions-analysis__app-text-content {
  text-align: center;
}

.page-blog-okbet-latest-promotions-analysis__app-title {
  font-size: 2em;
  color: var(--okbet-primary-color);
  margin-bottom: 15px;
}

.page-blog-okbet-latest-promotions-analysis__app-description {
  font-size: 1.1em;
  color: var(--okbet-text-main);
  margin-bottom: 30px;
}

.page-blog-okbet-latest-promotions-analysis__responsible-gaming-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  background-color: var(--okbet-card-bg);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--okbet-border);
}

.page-blog-okbet-latest-promotions-analysis__info-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: 8px;
}

.page-blog-okbet-latest-promotions-analysis__faq-section {
  padding: 60px 0;
  background-color: var(--okbet-background);
}

.page-blog-okbet-latest-promotions-analysis__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-blog-okbet-latest-promotions-analysis__faq-item {
  background-color: var(--okbet-card-bg);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid var(--okbet-border);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-okbet-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: var(--okbet-card-bg);
  color: var(--okbet-primary-color);
  font-weight: bold;
  font-size: 1.2em;
  border-bottom: 1px solid var(--okbet-border);
}

.page-blog-okbet-latest-promotions-analysis__faq-question h3 {
  margin: 0;
  color: var(--okbet-primary-color);
  font-size: 1.2em;
}

.page-blog-okbet-latest-promotions-analysis__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--okbet-secondary-color);
}

.page-blog-okbet-latest-promotions-analysis__faq-item.active .page-blog-okbet-latest-promotions-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-okbet-latest-promotions-analysis__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--okbet-text-main);
  font-size: 1em;
}

.page-blog-okbet-latest-promotions-analysis__faq-item.active .page-blog-okbet-latest-promotions-analysis__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 20px 25px;
}

.page-blog-okbet-latest-promotions-analysis__faq-answer p {
  margin: 0;
  color: var(--okbet-text-main);
}

.page-blog-okbet-latest-promotions-analysis__cta-final-section {
  padding: 60px 0;
  background-color: var(--okbet-background);
  text-align: center;
}