@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Open+Sans&display=swap");
/* =============================================
   PALETTE DE COULEUR - DIGITAL SANCTUM
   Inspirée par l'analog horror / cybercore
============================================= */
@import url("https://fonts.googleapis.com/css?family=Share+Tech+Mono|UnifrakturCook&display=swap");
* {
  cursor: url("assets/images/crosscursor.gif"), auto !important;
}

.text-blue {
  color: #0066cc;
}

body {
  background-color: #0a0a0a;
  color: #e6f2ff;
  font-family: "Comic Sans MS", cursive;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
}

.home .floating-elements {
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 100%;
  z-index: 50;
}
.home .floating-element {
  position: absolute;
  z-index: 100;
  pointer-events: auto;
}
.home .static-gif {
  top: 20rem; /* 15% du haut de la page */
  left: 10rem; /* 8% de la gauche */
  width: 80px; /* Taille de ton choix */
}
.home .site-main {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 2rem;
}
.home .site-title {
  font-size: 3rem;
  text-align: center;
  margin: 2rem 0;
}
.home .intro-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home .intro-text {
  margin-top: 3rem;
  text-align: left;
  padding: 0 5rem;
  width: 40rem;
}
.home .intro-icons-link {
  margin: 7rem 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 8rem;
}
.home .link {
  display: inline-block;
  width: 7rem;
  height: 7rem;
}
.home .link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home .link:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
.home .first-two-columns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}
.home .left-section {
  width: 75%;
}
.home .poem-text {
  padding-left: 20%;
  font-family: "Comic Sans MS", cursive;
  line-height: 1.6;
  color: #e6f2ff;
  margin: 0 auto;
  white-space: pre-line;
  text-align: left;
}
.home .harbinger-section {
  text-align: left;
  display: flex;
  flex-direction: column;
  width: 25%;
}
.home .harbinger-title {
  position: relative;
  display: block;
}
.home .harbinger-title-overlay {
  position: absolute;
  width: 5rem;
  top: 5%;
  left: 0%;
  transform: translate(-50%, -50%) rotate(-12deg);
  pointer-events: auto;
  cursor: pointer;
  z-index: 10;
}
.home .harbinger-title-overlay:hover, .home .harbinger-title-overlay.animate-bounce {
  animation: bounce-scale 2s ease-out;
}
@keyframes bounce-scale {
  0% {
    transform: translate(-50%, -50%) rotate(-12deg) scale(1);
  }
  10% {
    transform: translate(-50%, -50%) rotate(-12deg) scale(1.3);
  }
  20% {
    transform: translate(-50%, -50%) rotate(-12deg) scale(0.9);
  }
  30% {
    transform: translate(-50%, -50%) rotate(-12deg) scale(1.2);
  }
  40% {
    transform: translate(-50%, -50%) rotate(-12deg) scale(0.95);
  }
  50% {
    transform: translate(-50%, -50%) rotate(-12deg) scale(1.1);
  }
  60% {
    transform: translate(-50%, -50%) rotate(-12deg) scale(0.98);
  }
  70% {
    transform: translate(-50%, -50%) rotate(-12deg) scale(1.05);
  }
  80% {
    transform: translate(-50%, -50%) rotate(-12deg) scale(0.99);
  }
  90% {
    transform: translate(-50%, -50%) rotate(-12deg) scale(1.02);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-12deg) scale(1);
  }
}
.home .harbinger-chatbot {
  width: 50%;
  height: 300px;
  background: linear-gradient(145deg, #2c2c2c, #1e1e1e);
  border: 12px solid #2c2c2c;
  border-radius: 32px;
  padding: 12px;
  box-shadow: inset 0 0 10px rgba(0, 204, 255, 0.1), 0 0 50px rgba(0, 204, 255, 0.1), 0 0 0 4px #101010, 0 0 0 8px #2a2a2a;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: "Orbitron", sans-serif;
  color: #e6f2ff;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.015) 1px, transparent 1px, transparent 4px);
}
.home .harbinger-chatbot-header {
  text-align: center;
  padding: 10px;
  background: linear-gradient(to bottom, #4a4a4a, #1e1e1e);
  border-bottom: 1px solid #b0c4de;
  text-shadow: 0 0 8px #00ccff;
  color: #f0f8ff;
  font-size: 16px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}
.home .harbinger-chatbot-message-list {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(3px);
}
.home .harbinger-chatbot-message-list::-webkit-scrollbar {
  width: 8px;
}
.home .harbinger-chatbot-message-list::-webkit-scrollbar-track {
  background: #111;
}
.home .harbinger-chatbot-message-list::-webkit-scrollbar-thumb {
  background: rgb(0, 102, 127.5);
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0, 204, 255, 0.25);
}
.home .harbinger-chatbot-message {
  margin: 6px 0;
  padding: 10px 14px;
  border-left: 3px solid #00ccff;
  border-radius: 12px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 20%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0.3) 100%);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.12), inset 0 -1px 2px rgba(0, 0, 0, 0.4), 0 0 4px rgba(0, 204, 255, 0.15);
  font-size: 13.5px;
  color: #e6f2ff;
}
.home .harbinger-chatbot-input {
  display: flex;
  background: linear-gradient(to right, #2e2e2e, #1c1c1c);
  border-top: 1px solid #b0c4de;
  padding: 6px;
  border-radius: 20px;
  margin-top: 6px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 0 3px rgba(0, 204, 255, 0.05);
}
.home .harbinger-chatbot-field {
  flex: 1;
  padding: 10px;
  border-radius: 16px;
  background-color: transparent;
  border: none;
  color: #e6f2ff;
  font-size: 13px;
}
.home .harbinger-chatbot-field::placeholder {
  color: #5f6f7f;
}
.home .harbinger-chatbot-field:focus {
  outline: none;
  background: rgba(0, 204, 255, 0.07);
  box-shadow: inset 0 0 4px #00ccff;
}
.home .harbinger-chatbot-send {
  padding: 10px 18px;
  border-radius: 16px;
  margin-left: 6px;
  background: radial-gradient(circle at center, #00ccff 0%, #000000 100%);
  color: black;
  border: 1px solid #b0c4de;
  cursor: pointer;
  font-weight: bold;
  font-size: 13px;
  box-shadow: 0 0 10px #00ccff, inset 0 0 4px rgba(255, 255, 255, 0.1);
}
.home .harbinger-chatbot-send:hover {
  background: radial-gradient(circle at center, rgb(51, 214.2, 255) 0%, #000000 100%);
  box-shadow: 0 0 14px #00ccff;
}
.home .harbinger-chatbot-send:active {
  background: radial-gradient(circle at center, #f0f8ff 0%, #000000 100%);
  box-shadow: 0 0 10px #f0f8ff;
  color: #1e1e1e;
}
.home .harbinger-link {
  margin: 2rem 4rem;
}

/* =============================================
   PALETTE DE COULEUR - CYBER DIVINE STYLE
============================================= */
* {
  cursor: url("assets/images/crosscursor.gif"), auto !important;
}

.text-blue {
  color: #00ccff;
}

body {
  background-color: #0a0a0a;
  color: #e6f2ff;
  font-family: "Comic Sans MS", cursive;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
}

.convertor .intro-text {
  font-size: 1.2rem;
  color: #a3b7c7;
  text-align: left;
  margin: 20px 0;
  line-height: 1.5;
  max-width: 800px;
}
.convertor .image-converter-section {
  padding: 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #b0c4de;
  box-shadow: 0 0 15px rgba(0, 204, 255, 0.15);
  border-radius: 10px;
  backdrop-filter: blur(3px);
}
.convertor .pixel-converter-container {
  background-color: #2c2c2c;
  border: 1px solid #b0c4de;
  border-radius: 10px;
  box-shadow: inset 0 0 10px rgba(0, 204, 255, 0.1), 0 0 20px rgba(255, 255, 255, 0.05);
  padding: 25px;
  margin-top: 20px;
}
.convertor .converter-drop-frame {
  border: 2px dashed #00ccff;
  border-radius: 6px;
  padding: 30px;
  text-align: center;
  margin-bottom: 20px;
  background-color: rgba(0, 204, 255, 0.05);
  transition: all 0.3s ease;
  color: #a3b7c7;
}
.convertor .converter-drop-frame:hover {
  border-color: #ff0033;
  background-color: rgba(255, 0, 51, 0.05);
}
.convertor .converter-drop-label {
  font-size: 18px;
  color: #5f6f7f;
  letter-spacing: 0.5px;
}
.convertor .converter-main-area {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.convertor .converter-controls-frame,
.convertor .converter-preview-frame {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid #b0c4de;
  border-radius: 10px;
  padding: 20px;
  box-shadow: inset 0 0 6px rgba(0, 204, 255, 0.1), 0 0 12px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px);
}
.convertor .converter-control-group {
  margin-bottom: 20px;
}
.convertor .converter-control-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #a3b7c7;
}
.convertor .converter-slider-group {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}
.convertor .converter-slider {
  flex: 1;
  height: 6px;
  background-color: #00ccff;
  border-radius: 5px;
  appearance: none;
}
.convertor .converter-slider::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  background: #f0f8ff;
  border: 2px solid #00ccff;
  border-radius: 50%;
  cursor: url("assets/images/crosscursor.gif"), pointer;
}
.convertor .converter-number-input {
  width: 60px;
  padding: 6px;
  border: 1px solid #3f3f3f;
  border-radius: 4px;
  text-align: center;
  background-color: #1e1e1e;
  color: #e6f2ff;
}
.convertor .converter-value-label {
  font-size: 14px;
  color: #5f6f7f;
}
.convertor .converter-select {
  width: 100%;
  padding: 8px;
  border: 1px solid #3f3f3f;
  border-radius: 4px;
  background-color: #1e1e1e;
  color: #e6f2ff;
  margin-bottom: 10px;
  font-size: 14px;
}
.convertor .converter-method-note {
  font-size: 12px;
  color: #00ccff;
  line-height: 1.4;
  margin-top: 5px;
}
.convertor .converter-button {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  background-color: #00ccff;
  color: black;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  font-family: "Comic Sans MS", cursive;
  cursor: url("assets/images/crosscursor.gif"), pointer;
  transition: background-color 0.2s ease;
}
.convertor .converter-button:hover {
  background-color: rgb(51, 214.2, 255);
}
.convertor .converter-button:disabled {
  background-color: #444;
  color: #888;
  cursor: not-allowed;
}
.convertor .disabled {
  cursor: not-allowed !important;
  opacity: 0.5;
  pointer-events: none;
}
.convertor .converter-info-label {
  font-size: 13px;
  color: #5f6f7f;
  text-align: center;
  margin-top: 15px;
}
.convertor .converter-canvas-container {
  flex: 1;
  overflow: hidden;
  border: 1px solid #3f3f3f;
  background-color: rgba(255, 255, 255, 0.05);
  max-height: 500px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.convertor .converter-canvas-container canvas {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  background-color: #111;
  box-shadow: inset 0 0 40px rgba(0, 204, 255, 0.05), 0 0 10px rgba(0, 0, 0, 0.3);
}
.convertor #convert-btn {
  display: none !important;
}
.convertor .converter-note {
  font-size: 12px;
  color: #5f6f7f;
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid #3f3f3f;
}
.convertor .nav-links {
  text-align: center;
  margin-top: 1rem;
}
.convertor .nav-link {
  color: #00ccff;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  border: 1px solid #00ccff;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.05));
  transition: all 0.3s ease;
}
.convertor .nav-link:hover {
  background: linear-gradient(145deg, rgba(0, 102, 204, 0.2), rgba(0, 102, 204, 0.1));
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}
.convertor #upload-message-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 10, 10, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.convertor #upload-message-overlay p {
  color: #ffffff;
  font-family: "Comic Sans MS", cursive;
  font-size: 2.5rem;
  text-align: center;
  max-width: 80vw;
  user-select: none;
  white-space: pre-wrap;
}
.convertor .hidden {
  display: none !important;
}
.convertor .disabled-group {
  opacity: 0.3;
  pointer-events: none;
}

/*# sourceMappingURL=style.css.map */
