
body.ui-style-8 {
  --primary-color: #0066cc;
  --bg-color: #f5f5f5;
  --card-bg: #fff;
}

.container {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.card {
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

h1, h2, h3 {
  font-weight: 600;
}

.section {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
  h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 18px;
  }
}
