/* 🎨 Hottie Paste – styl v1.3 */

body {
  font-family: 'Inter', sans-serif;
  background: #0e0e10;
  color: #f2f2f2;
  text-align: center;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeIn 0.8s ease;
}

/* 🔥 Animace načtení */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

h1 {
  color: #ff3b3b;
  margin-bottom: 20px;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

.logo {
  height: 60px;
  margin-bottom: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
}

/* 📋 Formulář */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

textarea {
  width: 90%;
  height: 300px;
  background: #1b1b1f;
  color: #fff;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px;
  font-family: monospace;
  resize: vertical;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

textarea:focus {
  outline: none;
  border-color: #ff3b3b;
  box-shadow: 0 0 8px rgba(255, 59, 59, 0.4);
}

/* 💾 Tlačítko */
button {
  background: #ff3b3b;
  border: none;
  color: white;
  padding: 12px 40px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.25s ease;
  box-shadow: 0 3px 10px rgba(255, 59, 59, 0.25);
}

button:hover {
  background: #ff5252;
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(255, 59, 59, 0.45);
}

/* 📄 Výpis pastu */
pre {
  background: #1b1b1f;
  padding: 15px;
  border-radius: 8px;
  text-align: left;
  overflow-x: auto;
  width: 90%;
  margin: 0 auto;
}

/* ✅ Výsledek po uložení */
.result-box {
  background: #1b1b1f;
  border: 1px solid #333;
  padding: 20px;
  border-radius: 10px;
  display: inline-block;
  margin-top: 20px;
  animation: fadeIn 0.6s ease;
}

a {
  color: #ff3b3b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 40px;
  font-size: 0.9em;
  color: #777;
  opacity: 0.8;
}

/* ✨ Responsivita */
@media (max-width: 768px) {
  textarea {
    width: 95%;
    height: 250px;
  }

  button {
    width: 80%;
  }
}
