/* Tailwind CSS build here */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Comic+Neue:wght@700&display=swap');

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Fredoka One', 'Comic Neue', cursive, sans-serif;
  background: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
  color: #2b2b2b;
}

h1, h2, h3 {
  color: #ff5722;
}

@keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.slow-spin {
    animation: spin-slow 2s linear infinite;
}

/* Miniatures uploads récentes */
.mini-upload-thumb img {
    max-width: 50px;
    max-height: 70px;
    object-fit: cover;
    display: block;
}

/* Badges hexagone */
.badge-ecusson {
  width: 90px;
  height: 110px;
  clip-path: polygon(50% 0%, 100% 0%, 100% 75%, 50% 100%, 0% 75%, 0% 0%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  padding: 6px;
  border-radius: 6px;
  color: white;
  font-family: sans-serif;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  margin: 0 auto;
  margin-bottom: 8px;
  transition: filter 0.2s, opacity 0.2s;
}
.badge-label {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 2px;
}
.badge-desc {
  font-size: 11px;
  color: #f3f3f3;
  margin-bottom: 2px;
}

/* Couleurs par style */
.style-explorer   { background: linear-gradient(#4CAF50, #388E3C); }
.style-waifu      { background: linear-gradient(#E91E63, #C2185B); }
.style-anime80s   { background: linear-gradient(#3F51B5, #1A237E); }
.style-xp         { background: linear-gradient(#FFEB3B, #FBC02D); color: #333; }
.style-daily      { background: linear-gradient(#009688, #00695C); }
.style-share      { background: linear-gradient(#2196F3, #1976D2); }
.style-referral   { background: linear-gradient(#9C27B0, #7B1FA2); }
.style-gen        { background: linear-gradient(#795548, #5D4037); }
.style-default    { background: #607D8B; }

.greenbox {
  background: linear-gradient(90deg, #a8e063 0%, #56ab2f 100%);
  color: #155724;
  font-weight: bold;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(86,171,47,0.08);
  display: inline-block;
}
.font-xxs {
  font-size: 0.65rem;
}

.content {
  flex: 1;
}

footer {
  /* Ton style de footer existant */
}


