/* ===========================================================
   Design : carnet de quartier civique.
   Palette papier sombre + accent laiton, comme un registre
   de bonnes actions plutôt qu'une app sociale générique.
=========================================================== */

:root {
  --paper: #1a1814;
  --paper-raised: #221f19;
  --paper-card: #29251e;
  --ink: #ede7d9;
  --ink-dim: #a89e8a;
  --ink-faint: #6f6757;
  --brass: #d4a843;
  --brass-dim: #8a6f33;
  --positive: #7c9473;
  --positive-bg: #25291f;
  --negative: #b8604f;
  --negative-bg: #2b201c;
  --hairline: #3a352b;

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  height: 100%;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-y: contain;
}

body {
  background-image:
    radial-gradient(circle at 20% 0%, rgba(212,168,67,0.05), transparent 50%);
}

.hidden { display: none !important; }

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea {
  font-family: var(--font-body);
}

/* ---------- Marque tampon (signature visuelle) ---------- */
.stamp-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 2px solid var(--brass);
  border-radius: 50%;
  color: var(--brass);
  font-size: 28px;
  font-family: var(--font-display);
}
.stamp-mark.small {
  width: 28px;
  height: 28px;
  font-size: 16px;
  border-width: 1.5px;
}

/* ---------- Onboarding ---------- */
.screen.onboarding {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.onboarding-inner {
  max-width: 360px;
  width: 100%;
  text-align: center;
}
.onboarding-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0 8px;
}
.onboarding-sub {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 28px;
}
.pseudo-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  color: var(--ink);
  font-size: 16px;
  margin-bottom: 14px;
  outline: none;
}
.pseudo-input:focus {
  border-color: var(--brass);
}
.onboarding-error {
  color: var(--negative);
  font-size: 13px;
  margin-top: 10px;
}

.btn-primary {
  width: 100%;
  padding: 14px;
  background: var(--brass);
  color: #1a1814;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  transition: opacity 0.15s;
}
.btn-primary:active { opacity: 0.8; }

.btn-link {
  width: 100%;
  padding: 10px;
  background: none;
  color: var(--ink-dim);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-secondary {
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--brass-dim);
  color: var(--brass);
  font-weight: 600;
  font-size: 13px;
  border-radius: 8px;
}

.btn-back {
  color: var(--ink-dim);
  font-size: 14px;
  padding: 8px 0;
}

/* ---------- App layout ---------- */
.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 10;
}
.topbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-veda-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  color: var(--brass);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.topbar-veda-btn:active { opacity: 0.8; }

.topbar-user {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--paper-card);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--hairline);
  cursor: pointer;
}
.topbar-user:active { opacity: 0.8; }
.user-points {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brass);
  font-size: 14px;
}
.user-pseudo {
  font-size: 12px;
  color: var(--ink-dim);
}

.view {
  flex: 1;
  padding: 16px 16px 100px;
  overflow-y: auto;
}

.view-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 4px 0 16px;
}

.search-bar { margin-bottom: 14px; }
.search-bar input {
  width: 100%;
  padding: 12px 16px;
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  color: var(--ink);
  font-size: 14px;
  outline: none;
}
.search-bar input:focus { border-color: var(--brass-dim); }

.empty-state {
  text-align: center;
  color: var(--ink-faint);
  font-size: 14px;
  padding: 60px 20px;
}

/* ---------- Fil / cartes de post ---------- */
.feed-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.post-card {
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
}
.post-media {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
  background: #000;
}
.post-body { padding: 14px 16px; }
.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.post-author {
  font-weight: 600;
  font-size: 14px;
}
.post-location {
  font-size: 12px;
  color: var(--ink-faint);
}
.post-description {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 10px;
}
.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post-status {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.post-status.pending {
  background: rgba(212,168,67,0.12);
  color: var(--brass);
}
.post-status.validated {
  background: var(--positive-bg);
  color: var(--positive);
}
.post-status.rejected {
  background: var(--negative-bg);
  color: var(--negative);
}
.post-points {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.post-points.positive { color: var(--positive); }
.post-points.negative { color: var(--negative); }

/* ---------- Classement ---------- */
.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.leaderboard-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-radius: 12px;
}
.leaderboard-rank {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-faint);
  width: 26px;
}
.leaderboard-rank.top1 { color: var(--brass); }
.leaderboard-rank.top2 { color: #c4c0b3; }
.leaderboard-rank.top3 { color: #b08c5a; }
.leaderboard-pseudo {
  flex: 1;
  font-weight: 600;
  font-size: 14px;
}
.leaderboard-points {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brass);
  font-size: 15px;
}

/* ---------- Forum ---------- */
.forum-new-btn { margin-bottom: 14px; }
.forum-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.forum-topic-card {
  padding: 14px 16px;
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-radius: 12px;
}
.forum-topic-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}
.forum-topic-excerpt {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.forum-topic-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ink-faint);
}

.forum-topic-detail-header {
  margin-bottom: 16px;
}
.forum-topic-detail-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}
.forum-topic-detail-meta {
  font-size: 12px;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.forum-topic-detail-body {
  font-size: 14px;
  line-height: 1.6;
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 14px 16px;
}

.forum-replies {
  margin-top: 20px;
}
.forum-replies-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-dim);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.forum-reply {
  padding: 10px 14px;
  border-left: 2px solid var(--hairline);
  margin-bottom: 10px;
}
.forum-reply-author {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 2px;
}
.forum-reply-body {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.5;
}

.reply-form {
  margin-top: 16px;
  display: flex;
  gap: 8px;
}
.reply-form textarea {
  flex: 1;
  padding: 10px 12px;
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  color: var(--ink);
  font-size: 13px;
  resize: none;
  outline: none;
}
.reply-form button {
  background: var(--brass);
  color: #1a1814;
  font-weight: 600;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 13px;
}

/* ---------- FAB ---------- */
.fab {
  position: fixed;
  bottom: 86px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brass);
  color: #1a1814;
  font-size: 28px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  z-index: 20;
}

/* ---------- Bottom nav ---------- */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: var(--paper-raised);
  border-top: 1px solid var(--hairline);
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  z-index: 15;
}
.nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 0;
  color: var(--ink-faint);
  font-size: 11px;
}
.nav-btn.active { color: var(--brass); }
.nav-icon { font-size: 18px; }

/* ---------- Modale ---------- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: flex-end;
  z-index: 50;
}
.modal-card {
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--paper-raised);
  border-radius: 20px 20px 0 0;
  padding: 20px;
  border-top: 1px solid var(--hairline);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.modal-header h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0;
}
.modal-close {
  font-size: 26px;
  color: var(--ink-dim);
  line-height: 1;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-dim);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.modal-form input[type="text"],
.modal-form input[type="file"],
.modal-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  color: var(--ink);
  font-size: 14px;
  outline: none;
  resize: vertical;
}
.modal-form input[type="file"] {
  padding: 10px;
  font-size: 12px;
  color: var(--ink-dim);
}
.modal-form button[type="submit"] {
  margin-top: 18px;
}
.modal-note {
  font-size: 11px;
  color: var(--ink-faint);
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
}
.media-preview {
  margin-top: 10px;
  border-radius: 10px;
  overflow: hidden;
  max-height: 220px;
}
.media-preview img, .media-preview video {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block;
}

/* ---------- Auteur cliquable + suppression de post ---------- */
.post-author-btn {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.post-author-btn:active { color: var(--brass); }

.post-delete-btn {
  font-size: 12px;
  color: var(--negative);
  background: none;
  border: 1px solid var(--negative);
  border-radius: 8px;
  padding: 4px 10px;
}

/* ---------- Profil ---------- */
.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}
.profile-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid var(--brass);
  object-fit: cover;
  background: var(--paper-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--brass);
  margin-bottom: 14px;
}
.profile-pseudo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}
.profile-points {
  color: var(--brass);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
}
.profile-bio {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.5;
  max-width: 300px;
  margin-bottom: 16px;
}
.profile-stat {
  font-size: 12px;
  color: var(--ink-faint);
  margin-bottom: 16px;
}
.profile-actions {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 280px;
}
.profile-actions .btn-primary, .profile-actions .btn-secondary {
  flex: 1;
}

.profile-edit-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

/* ---------- Chat ---------- */
.chat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  cursor: pointer;
}
.chat-row-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper-raised);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--brass);
  font-size: 16px;
  flex-shrink: 0;
  object-fit: cover;
}
.chat-row-body { flex: 1; min-width: 0; }
.chat-row-name { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.chat-row-preview {
  font-size: 12px;
  color: var(--ink-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 90px;
}
.chat-bubble {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
}
.chat-bubble.mine {
  align-self: flex-end;
  background: var(--brass);
  color: #1a1814;
  border-bottom-right-radius: 4px;
}
.chat-bubble.theirs {
  align-self: flex-start;
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-bottom-left-radius: 4px;
}
.chat-bubble-author {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 3px;
  opacity: 0.7;
}

.chat-input-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 8px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: var(--paper-raised);
  border-top: 1px solid var(--hairline);
  z-index: 25;
}
.chat-input-bar input {
  flex: 1;
  padding: 12px 14px;
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  color: var(--ink);
  font-size: 14px;
  outline: none;
}
.chat-input-bar button {
  padding: 0 18px;
  background: var(--brass);
  color: #1a1814;
  font-weight: 600;
  border-radius: 20px;
  font-size: 13px;
}

/* ---------- Veda (assistant IA) ---------- */
.veda-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0 20px;
}
.veda-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper-card);
  border: 1.5px solid var(--brass);
  color: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
#veda-title, #veda-list-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  flex: 1;
}
.veda-personality-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  color: var(--ink-dim);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.veda-personality-btn:active { opacity: 0.8; }

.chat-file-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
.veda-file-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  margin: 0 0 8px;
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  position: fixed;
  bottom: 68px;
  left: 16px;
  right: 16px;
  z-index: 24;
}
.veda-file-preview img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}
.veda-file-preview-name {
  flex: 1;
  font-size: 12px;
  color: var(--ink-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.veda-file-preview-remove {
  background: none;
  border: none;
  color: var(--negative);
  font-size: 18px;
  cursor: pointer;
}
.chat-bubble-media {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 6px;
  display: block;
}
.chat-bubble.veda-thinking {
  align-self: flex-start;
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-bottom-left-radius: 4px;
  color: var(--ink-faint);
  font-style: italic;
}
.chat-bubble.veda-error {
  align-self: flex-start;
  background: var(--negative-bg);
  border: 1px solid var(--negative);
  color: var(--negative);
  border-bottom-left-radius: 4px;
  font-size: 13px;
}

/* ---------- Appels audio/vidéo ---------- */
.chat-convo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.chat-call-buttons {
  display: flex;
  gap: 8px;
}
.call-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.call-btn:active { opacity: 0.8; }

.call-overlay {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.call-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.call-avatar-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  animation: pulse-ring 2s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,67,0.3); }
  50% { box-shadow: 0 0 0 16px rgba(212,168,67,0); }
}
.call-avatar {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--paper-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--brass);
}
.call-caller-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
}
.call-status-text {
  color: var(--ink-dim);
  font-size: 14px;
  margin-bottom: 30px;
}
.call-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}
.call-action-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.call-action-btn.accept { background: var(--positive); color: #15170f; }
.call-action-btn.reject { background: var(--negative); color: #fff; }
.call-action-btn.secondary {
  width: 52px;
  height: 52px;
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  color: var(--ink);
  font-size: 18px;
}
.call-action-btn.secondary.active {
  background: var(--brass);
  color: #1a1814;
}

.call-active-video-zone {
  position: absolute;
  inset: 0;
  background: #000;
}
.call-remote-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.call-local-video {
  position: absolute;
  bottom: 110px;
  right: 16px;
  width: 100px;
  height: 140px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--brass);
  background: #111;
}
.call-active-info {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
}
.call-active-info .call-caller-name {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.call-active-info .call-status-text {
  color: rgba(255,255,255,0.85);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  margin-bottom: 0;
}
.call-overlay#call-active-overlay .call-actions {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  justify-content: center;
  z-index: 1;
}


.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--paper-card);
  border: 1px solid var(--brass-dim);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  z-index: 100;
  white-space: nowrap;
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

/* Réduction de mouvement */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
