/* Shared blog post styles — extracted from inline <style> blocks */

.blog-post {
  padding: 4rem 1rem;
}
.blog-post .container {
  max-width: 800px;
  margin: 0 auto;
}
.blog-post h2 {
  text-align: left;
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}
.blog-post p {
  margin-bottom: 1rem;
  line-height: 1.8;
}
.blog-post ul, .blog-post ol {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: disc;
}
.blog-post ol {
  list-style: decimal;
}
.blog-post li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.blog-meta {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 2rem;
}
.blog-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
  font-weight: bold;
}
.blog-back:hover {
  color: var(--primary-color);
}

/* FAQ items (used in all posts) */
.faq-blog-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-blog-item h3 {
  padding: 1.2rem 1.5rem;
  background: #f9f9f9;
  margin-bottom: 0;
  font-size: 1.1rem;
  cursor: default;
}
.faq-blog-item p {
  padding: 0 1.5rem 1.2rem;
  margin-bottom: 0;
}

/* Rating box (review, bonuses posts) */
.rating-box {
  background: linear-gradient(135deg, var(--primary-color), #e6a800);
  color: var(--text-dark);
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin: 1.5rem 0;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Pros/cons table (review post) */
.pros-cons-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: white;
  box-shadow: var(--shadow);
}
.pros-cons-table th, .pros-cons-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.pros-cons-table th {
  background-color: var(--primary-color);
  color: var(--text-dark);
  font-weight: bold;
}

/* Game highlight box (best games, jackpot posts) */
.game-highlight {
  background: white;
  border-left: 4px solid var(--primary-color);
  padding: 1rem 1.5rem;
  margin: 1rem 0 1.5rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  box-shadow: var(--shadow);
}
.game-highlight strong {
  color: var(--secondary-color);
}

/* Tip box (how-to-play post) */
.tip-box {
  background: linear-gradient(135deg, #fff8e1, #fff3cd);
  border-left: 4px solid var(--primary-color);
  padding: 1rem 1.5rem;
  margin: 1rem 0 1.5rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.tip-box strong {
  color: var(--secondary-color);
}

/* Mistake item (how-to-play post) */
.mistake-item {
  background: white;
  padding: 1.2rem 1.5rem;
  margin-bottom: 0.75rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--secondary-color);
}
.mistake-item strong {
  color: var(--secondary-color);
}

/* Responsible box (how-to-play, jackpot posts) */
.responsible-box {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-left: 4px solid #4caf50;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.responsible-box strong {
  color: #2e7d32;
}

/* Bonus highlight table (bonuses post) */
.bonus-highlight-box {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: white;
  box-shadow: var(--shadow);
}
.bonus-highlight-box th, .bonus-highlight-box td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.bonus-highlight-box th {
  background-color: var(--primary-color);
  color: var(--text-dark);
  font-weight: bold;
}

/* Comparison table (download app post) */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: white;
  box-shadow: var(--shadow);
}
.comparison-table th, .comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.comparison-table th {
  background-color: var(--primary-color);
  color: var(--text-dark);
  font-weight: bold;
}

/* Step box (download app post) */
.step-box {
  background: #f8f9fa;
  border-left: 4px solid var(--primary-color);
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.step-box strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

/* Requirements table (download app post) */
.req-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: white;
  box-shadow: var(--shadow);
}
.req-table th, .req-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.req-table th {
  background-color: var(--primary-color);
  color: var(--text-dark);
  font-weight: bold;
}
