<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('./base/variables.css');

/* Styles de base */
.app-body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  background: var(--background-color);
  color: var(--text-color);
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  position: relative;
  overflow-x: hidden;
}

/* Barre supérieure */
.app-body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
  z-index: 1000;
}

/* Titres stylisés */
.app-title {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 800;
  letter-spacing: -1px;
  animation: fadeIn 0.5s ease-out;
}

/* Animations communes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Media queries communes */
@media (max-width: 600px) {
  .app-body {
    padding: 0.5rem;
  }

  .app-title {
    font-size: 1.8rem;
    margin: 1rem 0;
  }
}
</pre></body></html>