
body.ui-style-5 {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

main {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

section {
  transition: transform 0.3s ease;
}

section:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  main {
    padding: 20px 15px !important;
  }

  article {
    padding: 20px !important;
  }

  h1 {
    font-size: 24px !important;
  }

  h2 {
    font-size: 18px !important;
  }
}
