.rating-badge {
  display: inline-block;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  margin: 10px 0;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.section-wiki {
  margin-bottom: 40px;
  padding: 25px;
  background: rgba(248, 246, 240, 0.5);
  border-radius: 15px;
  border-left: 5px solid #8b4513;
  transition: all 0.3s ease;
}

.section-wiki:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 69, 19, 0.1);
}

.section-wiki h2 {
  color: #8b4513;
  margin-bottom: 20px;
  font-size: 1.3em;
  position: relative;
  padding-bottom: 10px;
}

.section-wiki h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(45deg, #8b4513, #d2b48c);
  border-radius: 2px;
}

.section-wiki h3 {
  color: #a0522d;
  margin: 20px 0 10px 0;
  font-size: 1.3em;
}

.highlight-box {
  background: linear-gradient(135deg, #f5f5dc 0%, #fff8dc 100%);
  padding: 20px;
  border-radius: 10px;
  margin: 15px 0;
  border: 2px solid #d2b48c;
  position: relative;
}

.highlight-box::before {
  content: '✨';
  position: absolute;
  top: -10px;
  left: 15px;
  background: #f5f5dc;
  padding: 0 10px;
  font-size: 1.2em;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.pros,
.cons {
  padding: 20px;
  border-radius: 10px;
}

.pros {
  background: linear-gradient(135deg, #e8f5e8 0%, #f0fff0 100%);
  border: 2px solid #90ee90;
}

.cons {
  background: linear-gradient(135deg, #ffe8e8 0%, #fff0f0 100%);
  border: 2px solid #ffb6c1;
}

.pros h4,
.cons h4 {
  margin-bottom: 10px;
  font-size: 1.2em;
}

.pros h4 {
  color: #228b22;
}

.cons h4 {
  color: #cd5c5c;
}

.rating-stars {
  color: #ffd700;
  font-size: 1.5em;
  margin: 10px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.info-item {
  background: rgba(255, 255, 255, 0.8);
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #8b4513;
}

.info-label {
  font-weight: bold;
  color: #8b4513;
  margin-bottom: 5px;
}

.cta-section {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #8b4513 0%, #d2b48c 100%);
  color: white;
  border-radius: 15px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b6b, #ff8e53);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  margin: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.6);
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9em;
  color: #666;
}

.breadcrumb a {
  color: #8b4513;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.schema-markup {
  display: none;
}
